aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/UserController.ts
blob: ef7cfdd373a8919934facc75a3b8aa512d0dc4d4 (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';
import { schema, rules } from '@ioc:Adonis/Core/Validator';
import User from 'App/Models/User';
import { connectWithFranz, isRegistrationEnabled } from '../../../config/app';
import crypto from 'node:crypto';
import { v4 as uuid } from 'uuid';
import Workspace from 'App/Models/Workspace';
import Service from 'App/Models/Service';
import fetch from 'node-fetch';

// TODO: This file needs to be refactored and cleaned up to include types
import { handleVerifyAndReHash } from '../../../helpers/PasswordHash';

const newPostSchema = schema.create({
  firstname: schema.string(),
  lastname: schema.string(),
  email: schema.string([
    rules.email(),
    rules.unique({ table: 'users', column: 'email' }),
  ]),
  password: schema.string([rules.minLength(8)]),
});

const franzImportSchema = schema.create({
  email: schema.string([
    rules.email(),
    rules.unique({ table: 'users', column: 'email' }),
  ]),
  password: schema.string([rules.minLength(8)]),
});

// // TODO: This whole controller needs to be changed such that it can support importing from both Franz and Ferdi
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const franzRequest = (route: any, method: any, auth: any) =>
  new Promise((resolve, reject) => {
    const base = 'https://api.franzinfra.com/v1/';
    const user =
      'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Franz/5.3.0-beta.1 Chrome/69.0.3497.128 Electron/4.2.4 Safari/537.36';

    try {
      fetch(base + route, {
        method,
        headers: {
          Authorization: `Bearer ${auth}`,
          'User-Agent': user,
        },
      })
        .then(data => data.json())
        .then(json => resolve(json));
    } catch {
      reject();
    }
  });

export default class UsersController {
  // Register a new user
  public async signup({ request, response, auth }: HttpContextContract) {
    if (isRegistrationEnabled === 'false') {
      return response.status(401).send({
        message: 'Registration is disabled on this server',
        status: 401,
      });
    }

    // Validate user input
    let data;
    try {
      data = await request.validate({ schema: newPostSchema });
    } catch (error) {
      return response.status(401).send({
        message: 'Invalid POST arguments',
        messages: error.messages,
        status: 401,
      });
    }

    // Create user in DB
    let user;
    try {
      user = await User.create({
        email: data.email,
        password: data.password,
        username: data.firstname,
        lastname: data.lastname,
      });
    } catch {
      return response.status(401).send({
        message: 'E-Mail address already in use',
        status: 401,
      });
    }

    // Generate new auth token
    const token = await auth.use('jwt').login(user, { payload: {} });

    return response.send({
      message: 'Successfully created account',
      token: token.accessToken,
    });
  }

  // Login using an existing user
  public async login({ request, response, auth }: HttpContextContract) {
    if (!request.header('Authorization')) {
      return response.status(401).send({
        message: 'Please provide authorization',
        status: 401,
      });
    }

    // Get auth data from auth token
    const authHeader = atob(
      request.header('Authorization')!.replace('Basic ', ''),
    ).split(':');

    // Check if user with email exists
    const user = await User.query().where('email', authHeader[0]).first();
    if (!user?.email) {
      return response.status(401).send({
        message: 'User credentials not valid',
        code: 'invalid-credentials',
        status: 401,
      });
    }

    // Verify password
    let isMatchedPassword = false;
    try {
      isMatchedPassword = await handleVerifyAndReHash(user, authHeader[1]);
    } catch (error) {
      return response.internalServerError({ message: error.message });
    }

    if (!isMatchedPassword) {
      return response.status(401).send({
        message: 'User credentials not valid',
        code: 'invalid-credentials',
        status: 401,
      });
    }

    // Generate token
    const token = await auth.use('jwt').login(user, { payload: {} });

    return response.send({
      message: 'Successfully logged in',
      token: token.accessToken,
    });
  }

  // Return information about the current user
  public async me({ request, response, auth }: HttpContextContract) {
    // @ts-expect-error Property 'user' does not exist on type 'HttpContextContract'.
    const user = auth.user ?? request.user;

    if (!user) {
      return response.send('Missing or invalid api token');
    }

    const settings =
      typeof user.settings === 'string'
        ? JSON.parse(user.settings)
        : user.settings;

    return response.send({
      accountType: 'individual',
      beta: false,
      donor: {},
      email: user.email,
      emailValidated: true,
      features: {},
      firstname: user.username,
      id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8',
      isPremium: true,
      isSubscriptionOwner: true,
      lastname: user.lastname,
      locale: 'en-US',
      ...settings,
    });
  }

  public async updateMe({ request, response, auth }: HttpContextContract) {
    // @ts-expect-error Property 'user' does not exist on type 'HttpContextContract'.
    const user = auth.user ?? request.user;

    if (!user) {
      return response.send('Missing or invalid api token');
    }

    let settings = user.settings || {};
    if (typeof settings === 'string') {
      settings = JSON.parse(settings);
    }

    const newSettings = {
      ...settings,
      ...request.all(),
    };

    user.settings = JSON.stringify(newSettings);
    await user.save();

    return response.send({
      data: {
        accountType: 'individual',
        beta: false,
        donor: {},
        email: user.email,
        emailValidated: true,
        features: {},
        firstname: user.username,
        id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8',
        isPremium: true,
        isSubscriptionOwner: true,
        lastname: user.lastname,
        locale: 'en-US',
        ...newSettings,
      },
      status: ['data-updated'],
    });
  }

  public async newToken({ request, response, auth }: HttpContextContract) {
    // @ts-expect-error Property 'user' does not exist on type 'HttpContextContract'.
    const user = auth.user ?? request.user;

    if (!user) {
      return response.send('Missing or invalid api token');
    }

    const token = await auth.use('jwt').generate(user, { payload: {} });

    return response.send({
      token: token.accessToken,
    });
  }

  public async import({ request, response, view }: HttpContextContract) {
    if (isRegistrationEnabled === 'false') {
      return response.status(401).send({
        message: 'Registration is disabled on this server',
        status: 401,
      });
    }

    if (connectWithFranz === 'false') {
      return response.send(
        'We could not import your Franz account data.\n\nIf you are the server owner, please set CONNECT_WITH_FRANZ to true to enable account imports.',
      );
    }

    // Validate user input
    let data;
    try {
      data = await request.validate({ schema: franzImportSchema });
    } catch (error) {
      return view.render('others.message', {
        heading: 'Error while importing',
        text: error.messages,
      });
    }

    const { email, password } = data;

    const hashedPassword = crypto
      .createHash('sha256')
      .update(password)
      .digest('base64');

    const base = 'https://api.franzinfra.com/v1/';
    const userAgent =
      'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Franz/5.3.0-beta.1 Chrome/69.0.3497.128 Electron/4.2.4 Safari/537.36';

    // Try to get an authentication token
    let token;
    try {
      const basicToken = btoa(`${email}:${hashedPassword}`);
      const loginBody = {
        isZendeskLogin: false,
      };

      const rawResponse = await fetch(`${base}auth/login`, {
        method: 'POST',
        body: JSON.stringify(loginBody),
        headers: {
          Authorization: `Basic ${basicToken}`,
          'User-Agent': userAgent,
          'Content-Type': 'application/json',
          accept: '*/*',
          'x-franz-source': 'Web',
        },
      });
      const content = await rawResponse.json();

      if (!content.message || content.message !== 'Successfully logged in') {
        const errorMessage =
          'Could not login into Franz with your supplied credentials. Please check and try again';
        return response.status(401).send(errorMessage);
      }

      token = content.token;
    } catch (error) {
      return response.status(401).send({
        message: 'Cannot login to Franz',
        error: error,
      });
    }

    // Get user information
    // eslint-disable-next-line @typescript-eslint/no-explicit-any
    let userInf: any = false;
    try {
      userInf = await franzRequest('me', 'GET', token);
    } catch (error) {
      const errorMessage = `Could not get your user info from Franz. Please check your credentials or try again later.\nError: ${error}`;
      return response.status(401).send(errorMessage);
    }
    if (!userInf) {
      const errorMessage =
        'Could not get your user info from Franz. Please check your credentials or try again later';
      return response.status(401).send(errorMessage);
    }

    // Create user in DB
    let user;
    try {
      user = await User.create({
        email: userInf.email,
        password: hashedPassword,
        username: userInf.firstname,
        lastname: userInf.lastname,
      });
    } catch (error) {
      const errorMessage = `Could not create your user in our system.\nError: ${error}`;
      return response.status(401).send(errorMessage);
    }

    const serviceIdTranslation = {};

    // Import services
    try {
      const services = await franzRequest('me/services', 'GET', token);

      // @ts-expect-error
      for (const service of services) {
        // Get new, unused uuid
        let serviceId;
        do {
          serviceId = uuid();
        } while (
          // eslint-disable-next-line no-await-in-loop, unicorn/no-await-expression-member
          (await Service.query().where('serviceId', serviceId)).length > 0
        );

        // eslint-disable-next-line no-await-in-loop
        await Service.create({
          userId: user.id,
          serviceId,
          name: service.name,
          recipeId: service.recipeId,
          settings: JSON.stringify(service),
        });

        // @ts-expect-error
        serviceIdTranslation[service.id] = serviceId;
      }
    } catch (error) {
      const errorMessage = `Could not import your services into our system.\nError: ${error}`;
      return response.status(401).send(errorMessage);
    }

    // Import workspaces
    try {
      const workspaces = await franzRequest('workspace', 'GET', token);

      // @ts-expect-error
      for (const workspace of workspaces) {
        let workspaceId;
        do {
          workspaceId = uuid();
        } while (
          // eslint-disable-next-line unicorn/no-await-expression-member, no-await-in-loop
          (await Workspace.query().where('workspaceId', workspaceId)).length > 0
        );

        const services = workspace.services.map(
          // @ts-expect-error
          service => serviceIdTranslation[service],
        );

        // eslint-disable-next-line no-await-in-loop
        await Workspace.create({
          userId: user.id,
          workspaceId,
          name: workspace.name,
          order: workspace.order,
          services: JSON.stringify(services),
          data: JSON.stringify({}),
        });
      }
    } catch (error) {
      const errorMessage = `Could not import your workspaces into our system.\nError: ${error}`;
      return response.status(401).send(errorMessage);
    }

    return response.send(
      'Your account has been imported. You can now use your Franz/Ferdi account in Ferdium.',
    );
  }
}