aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/models/oauth-client.js
blob: 15118591a72350e08edc47958d98f8afbba2fdb2 (plain) (tree)



























                                                     

 

                                                        


                                                                              









                                   
                          
                                            


                                     
                                            

 








                                                    
 
module.exports = function (sequelize, DataTypes) {
  const OAuthClient = sequelize.define('OAuthClient',
    {
      clientId: {
        type: DataTypes.STRING
      },
      clientSecret: {
        type: DataTypes.STRING
      },
      grants: {
        type: DataTypes.ARRAY(DataTypes.STRING)
      },
      redirectUris: {
        type: DataTypes.ARRAY(DataTypes.STRING)
      }
    },
    {
      classMethods: {
        associate,

        getByIdAndSecret,
        list,
        loadFirstClient
      }
    }
  )

  return OAuthClient
}

// TODO: validation
// OAuthClientSchema.path('clientSecret').required(true)

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

function associate (models) {
  this.hasMany(models.OAuthToken, {
    foreignKey: {
      name: 'oAuthClientId',
      allowNull: false
    },
    onDelete: 'cascade'
  })
}

function list (callback) {
  return this.findAll().asCallback(callback)
}

function loadFirstClient (callback) {
  return this.findOne().asCallback(callback)
}

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

  return this.findOne(query)
}