aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Controllers/Http/WorkspaceController.js
blob: 9ba2b174e9a7dcae05139fc46b9a0e3e671be21f (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
const Workspace = use('App/Models/Workspace');
const { validateAll } = use('Validator');

const { v4: uuid } = require('uuid');

class WorkspaceController {
  // Create a new workspace for user
  async create({ request, response }) {
    // Validate user input
    const validation = await validateAll(request.all(), {
      name: 'required',
    });
    if (validation.fails()) {
      return response.status(401).send({
        message: 'Invalid POST arguments',
        messages: validation.messages(),
        status: 401,
      });
    }

    const data = request.all();

    // Get new, unused uuid
    let workspaceId;
    do {
      workspaceId = uuid();
    } while (
      // eslint-disable-next-line no-await-in-loop, unicorn/no-await-expression-member
      (await Workspace.query().where('workspaceId', workspaceId).fetch()).rows
        .length > 0
    );

    const allWorkspaces = await Workspace.all();
    const order = allWorkspaces.rows.length;
    const { name } = data;
    delete data.name;

    await Workspace.create({
      workspaceId,
      name,
      order,
      services: JSON.stringify([]),
      data: JSON.stringify(data),
    });

    return response.send({
      userId: 1,
      name,
      id: workspaceId,
      order,
      workspaces: [],
    });
  }

  async edit({ request, response, params }) {
    // Validate user input
    const validation = await validateAll(request.all(), {
      name: 'required',
      services: 'required|array',
    });
    if (validation.fails()) {
      return response.status(401).send({
        message: 'Invalid POST arguments',
        messages: validation.messages(),
        status: 401,
      });
    }

    const data = request.all();
    const { id } = params;

    // Update data in database
    await Workspace.query()
      .where('workspaceId', id)
      .update({
        name: data.name,
        services: JSON.stringify(data.services),
      });

    // Get updated row
    const workspaceQuery = await Workspace.query()
      .where('workspaceId', id)
      .fetch();
    const workspace = workspaceQuery.rows[0];

    return response.send({
      id: workspace.workspaceId,
      name: data.name,
      order: workspace.order,
      services: data.services,
      userId: 1,
    });
  }

  async delete({
    // eslint-disable-next-line no-unused-vars
    request,
    response,
    params,
  }) {
    // Validate user input
    const validation = await validateAll(params, {
      id: 'required',
    });
    if (validation.fails()) {
      return response.status(401).send({
        message: 'Invalid arguments',
        messages: validation.messages(),
        status: 401,
      });
    }

    const { id } = params;

    // Update data in database
    await Workspace.query().where('workspaceId', id).delete();

    return response.send({
      message: 'Successfully deleted workspace',
    });
  }

  // List all workspaces a user has created
  async list({ response }) {
    const allWorkspaces = await Workspace.all();
    const workspaces = allWorkspaces.rows;
    // Convert to array with all data Franz wants
    let workspacesArray = [];
    if (workspaces) {
      workspacesArray = workspaces.map(workspace => ({
        id: workspace.workspaceId,
        name: workspace.name,
        order: workspace.order,
        services:
          typeof workspace.services === 'string'
            ? JSON.parse(workspace.services)
            : workspace.services,
        userId: 1,
      }));
    }

    return response.send(workspacesArray);
  }
}

module.exports = WorkspaceController;