aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Dashboard/ExportController.ts
blob: 7155eab751e64e89c967f59f51b0d36fba44f176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';

// eslint-disable-next-line @typescript-eslint/no-explicit-any
function deepParseToJSON(obj: any): Record<string, unknown> {
  if (typeof obj !== 'object' || obj === null) {
    try {
      // Try to parse the object as JSON
      return JSON.parse(obj) as Record<string, unknown>;
    } catch {
      // If parsing fails, return the original value
      return obj;
    }
  }

  // If obj is an object, recursively parse its keys
  if (Array.isArray(obj)) {
    // If obj is an array, recursively parse each element
    return obj.map(item => deepParseToJSON(item)) as unknown as Record<
      string,
      unknown
    >;
  } else {
    // If obj is an object, recursively parse its keys
    const parsedObj: Record<string, unknown> = {};
    for (const key in obj) {
      if (obj.hasOwnProperty(key)) {
        parsedObj[key] = deepParseToJSON(obj[key]);
      }
    }
    return parsedObj;
  }
}

export default class ExportController {
  /**
   * Display the export page
   */
  public async show({ auth, response }: HttpContextContract) {
    const user = auth.user!;
    const services = await user.related('services').query();
    const workspaces = await user.related('workspaces').query();

    const exportData = {
      username: user.username,
      lastname: user.lastname,
      mail: user.email,
      services: deepParseToJSON(JSON.parse(JSON.stringify(services))),
      workspaces: deepParseToJSON(JSON.parse(JSON.stringify(workspaces))),
    };

    return response
      .header('Content-Type', 'application/force-download')
      .header('Content-disposition', 'attachment; filename=export.ferdium-data')
      .send(exportData);
  }
}