aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/UserController.js
blob: ced27bbf1562aede14a6e4768869217223bd3ed6 (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
'use strict'

const User = use('App/Models/User');
const Service = use('App/Models/Service');
const Workspace = use('App/Models/Workspace');
const {
  validateAll
} = use('Validator');
const Env = use('Env')

const atob = require('atob');
const btoa = require('btoa');
const fetch = require('node-fetch');
const uuid = require('uuid/v4');
const crypto = require('crypto');

const franzRequest = async (route, method, auth) => {
  return new Promise(async (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) Ferdi/5.3.0-beta.1 Chrome/69.0.3497.128 Electron/4.2.4 Safari/537.36';

    try {
      const rawResponse = await fetch(base + route, {
        method,
        headers: {
          'Authorization': 'Bearer ' + auth,
          'User-Agent': user
        },
      });
      const content = await rawResponse.json();

      resolve(content);
    } catch (e) {
      reject();
    }
  })
}

class UserController {

  // Register a new user
  async signup({
    request,
    response,
    auth,
    session
  }) {
    // Validate user input
    const validation = await validateAll(request.all(), {
      firstname: 'required',
      email: 'required|email|unique:users,email',
      password: 'required'
    });
    if (validation.fails()) {
      return response.status(401).send({
        "message": "Invalid POST arguments",
        "messages": validation.messages(),
        "status": 401
      })
    }

    const data = request.only(['firstname', 'email', 'password']);

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

    // Generate new auth token
    const token = await auth.generate(user)

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

  // Login using an existing user
  async login({
    request,
    response,
    auth
  }) {
    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
    let user = (await User.query().where('email', authHeader[0]).first());
    if (!user || !user.email) {
      return response.status(401).send({
        "message": "User credentials not valid (Invalid mail)",
        "code": "invalid-credentials",
        "status": 401
      });
    }

    // Try to login
    let token;
    try {
      token = await auth.attempt(user.email, authHeader[1])
    } catch (e) {
      return response.status(401).send({
        "message": "User credentials not valid",
        "code": "invalid-credentials",
        "status": 401
      });
    }

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

  // Return information about the current user
  async me({
    request,
    response,
    auth,
    session
  }) {
    try {
      await auth.getUser()
    } catch (error) {
      response.send('Missing or invalid api token')
    }

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



  async import({
    request,
    response
  }) {
    // Validate user input
    const validation = await validateAll(request.all(), {
      email: 'required|email|unique:users,email',
      password: 'required'
    });
    if (validation.fails()) {
      let errorMessage = "There was an error while trying to import your account:\n";
      for (const message of validation.messages()) {
        if (message.validation == 'required') {
          errorMessage += '- Please make sure to supply your ' + message.field + '\n'
        } else if (message.validation == 'unique') {
          errorMessage += '- There is already a user with this email.\n'
        } else {
          errorMessage += message.message + '\n';
        }
      }
      return response.status(401).send(errorMessage)
    }

    const {
      email,
      password
    } = request.all()

    const hashedPassword = crypto.createHash('sha256').update(password).digest('base64');
    
    if(Env.get('CONNECT_WITH_FRANZ') == 'false') {
      await User.create({
        email,
        password: hashedPassword,
        username: 'Franz'
      });

      return response.send('Your account has been created but due to this server\'s configuration, 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.')
    }

    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) Ferdi/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 rawResponse = await fetch(base + 'auth/login', {
        method: 'POST',
        headers: {
          'Authorization': 'Basic ' + basicToken,
          'User-Agent': userAgent
        },
      });
      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 (e) {
      return response.status(401).send({
        "message": "Cannot login to Franz",
        "error": e
      })
    }

    // Get user information
    let userInf = false;
    try {
      userInf = await franzRequest('me', 'GET', token)
      console.log('A', userInf)
    } catch (e) {
      const errorMessage = 'Could not get your user info from Franz. Please check your credentials or try again later.\nError: ' + e;
      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.\nError: ' + e;
      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
      });
    } catch (e) {
      const errorMessage = 'Could not create your user in our system.\nError: ' + e;
      return response.status(401).send(errorMessage)
    }

    let serviceIdTranslation = {};

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

      for (const service of services) {
        // Get new, unused uuid
        let serviceId;
        do {
          serviceId = uuid();
        } while ((await Service.query().where('serviceId', serviceId).fetch()).rows.length > 0)

        await Service.create({
          userId: user.id,
          serviceId,
          name: service.name,
          recipeId: service.recipeId,
          settings: JSON.stringify(service)
        });

        serviceIdTranslation[service.id] = serviceId;
      }
    } catch (e) {
      const errorMessage = 'Could not import your services into our system.\nError: ' + e;
      return response.status(401).send(errorMessage)
    }

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

      for (const workspace of workspaces) {
        let workspaceId;
        do {
          workspaceId = uuid();
        } while ((await Workspace.query().where('workspaceId', workspaceId).fetch()).rows.length > 0)

        const services = workspace.services.map(service => serviceIdTranslation[service])

        await Workspace.create({
          userId: auth.user.id,
          workspaceId,
          name: workspace.name,
          order: workspace.order,
          services: JSON.stringify(services),
          data: JSON.stringify({})
        });
      }
    } catch (e) {
      const errorMessage = 'Could not import your workspaces into our system.\nError: ' + e;
      return response.status(401).send(errorMessage)
    }

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

module.exports = UserController