aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/middlewares/accounts.ts
blob: 9be80167c9f0c65cf4481d67331a2e0bc3aad4fb (plain) (tree)
1
2
3
4
5
6
7
8


                                                           
                                                    
                                                       
 

                                                                                       










                                                                                                    


                                                                 

 
                                                                                                      
















                                              















                                                                                                





                                                                              

                             
 
import { Response } from 'express'
import { AccountModel } from '../../models/account/account'
import * as Bluebird from 'bluebird'
import { MAccountDefault } from '../../types/models'
import { UserModel } from '@server/models/account/user'

function doesAccountIdExist (id: number | string, res: Response, sendNotFound = true) {
  const promise = AccountModel.load(parseInt(id + '', 10))

  return doesAccountExist(promise, res, sendNotFound)
}

function doesLocalAccountNameExist (name: string, res: Response, sendNotFound = true) {
  const promise = AccountModel.loadLocalByName(name)

  return doesAccountExist(promise, res, sendNotFound)
}

function doesAccountNameWithHostExist (nameWithDomain: string, res: Response, sendNotFound = true) {
  const promise = AccountModel.loadByNameWithHost(nameWithDomain)

  return doesAccountExist(promise, res, sendNotFound)
}

async function doesAccountExist (p: Bluebird<MAccountDefault>, res: Response, sendNotFound: boolean) {
  const account = await p

  if (!account) {
    if (sendNotFound === true) {
      res.status(404)
         .send({ error: 'Account not found' })
         .end()
    }

    return false
  }

  res.locals.account = account

  return true
}

async function doesUserFeedTokenCorrespond (id: number | string, token: string, res: Response) {
  const user = await UserModel.loadById(parseInt(id + '', 10))

  if (token !== user.feedToken) {
    res.status(401)
       .send({ error: 'User and token mismatch' })
       .end()

    return false
  }

  res.locals.user = user

  return true
}

// ---------------------------------------------------------------------------

export {
  doesAccountIdExist,
  doesLocalAccountNameExist,
  doesAccountNameWithHostExist,
  doesAccountExist,
  doesUserFeedTokenCorrespond
}