PeerTube/server/models/oauth-client.ts

61 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-12-11 21:50:51 +01:00
module.exports = function (sequelize, DataTypes) {
const OAuthClient = sequelize.define('OAuthClient',
{
clientId: {
2016-12-28 15:49:23 +01:00
type: DataTypes.STRING,
allowNull: false
2016-12-11 21:50:51 +01:00
},
clientSecret: {
2016-12-28 15:49:23 +01:00
type: DataTypes.STRING,
allowNull: false
2016-12-11 21:50:51 +01:00
},
grants: {
type: DataTypes.ARRAY(DataTypes.STRING)
},
redirectUris: {
type: DataTypes.ARRAY(DataTypes.STRING)
}
},
{
2016-12-29 09:33:28 +01:00
indexes: [
{
fields: [ 'clientId' ],
unique: true
},
{
fields: [ 'clientId', 'clientSecret' ],
unique: true
}
],
2016-12-11 21:50:51 +01:00
classMethods: {
countTotal,
2016-12-11 21:50:51 +01:00
getByIdAndSecret,
loadFirstClient
}
}
)
return OAuthClient
}
// ---------------------------------------------------------------------------
function countTotal (callback) {
return this.count().asCallback(callback)
}
function loadFirstClient (callback) {
2016-12-11 21:50:51 +01:00
return this.findOne().asCallback(callback)
}
2016-12-11 21:50:51 +01:00
function getByIdAndSecret (clientId, clientSecret) {
const query = {
where: {
clientId: clientId,
clientSecret: clientSecret
}
}
return this.findOne(query)
}