aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/models/oauth-client.ts
blob: 2cefb5cb9ab6a058e14c3a64005538347f0844ab (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                            

                 

                               

                     

                               








                                               








                                                 
       


     








                                              
                    

 

                                                                              








                                                 

 

                                                   

 
                                                      






                                
                                   
 
import * as Sequelize from 'sequelize'

import { addMethodsToModel } from './utils'
import {
  OAuthClientClass,
  OAuthClientInstance,
  OAuthClientAttributes,

  OAuthClientMethods
} from './oauth-client-interface'

let OAuthClient: Sequelize.Model<OAuthClientInstance, OAuthClientAttributes>
let countTotal: OAuthClientMethods.CountTotal
let loadFirstClient: OAuthClientMethods.LoadFirstClient
let getByIdAndSecret: OAuthClientMethods.GetByIdAndSecret

export default function (sequelize, DataTypes) {
  OAuthClient = sequelize.define('OAuthClient',
    {
      clientId: {
        type: DataTypes.STRING,
        allowNull: false
      },
      clientSecret: {
        type: DataTypes.STRING,
        allowNull: false
      },
      grants: {
        type: DataTypes.ARRAY(DataTypes.STRING)
      },
      redirectUris: {
        type: DataTypes.ARRAY(DataTypes.STRING)
      }
    },
    {
      indexes: [
        {
          fields: [ 'clientId' ],
          unique: true
        },
        {
          fields: [ 'clientId', 'clientSecret' ],
          unique: true
        }
      ]
    }
  )

  const classMethods = [
    associate,

    countTotal,
    getByIdAndSecret,
    loadFirstClient
  ]
  addMethodsToModel(OAuthClient, classMethods)

  return OAuthClient
}

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

function associate (models) {
  OAuthClient.hasMany(models.OAuthToken, {
    foreignKey: 'oAuthClientId',
    onDelete: 'cascade'
  })
}

countTotal = function (callback) {
  return OAuthClient.count().asCallback(callback)
}

loadFirstClient = function (callback) {
  return OAuthClient.findOne().asCallback(callback)
}

getByIdAndSecret = function (clientId, clientSecret) {
  const query = {
    where: {
      clientId: clientId,
      clientSecret: clientSecret
    }
  }

  return OAuthClient.findOne(query)
}