PeerTube/server/models/pod.js

139 lines
2.6 KiB
JavaScript
Raw Normal View History

'use strict'
const map = require('lodash/map')
2016-03-16 21:29:27 +00:00
const constants = require('../initializers/constants')
// ---------------------------------------------------------------------------
2016-12-11 20:50:51 +00:00
module.exports = function (sequelize, DataTypes) {
const Pod = sequelize.define('Pod',
{
host: {
type: DataTypes.STRING
},
publicKey: {
type: DataTypes.STRING(5000)
},
score: {
type: DataTypes.INTEGER,
defaultValue: constants.FRIEND_SCORE.BASE
}
},
{
classMethods: {
associate,
countAll,
incrementScores,
list,
listAllIds,
listBadPods,
load,
loadByHost,
removeAll
},
instanceMethods: {
toFormatedJSON
}
}
)
return Pod
}
2016-12-11 20:50:51 +00:00
// TODO: max score -> constants.FRIENDS_SCORE.MAX
// TODO: validation
// PodSchema.path('host').validate(validator.isURL)
// PodSchema.path('publicKey').required(true)
// PodSchema.path('score').validate(function (value) { return !isNaN(value) })
// ------------------------------ METHODS ------------------------------
function toFormatedJSON () {
const json = {
2016-12-11 20:50:51 +00:00
id: this.id,
host: this.host,
score: this.score,
2016-12-11 20:50:51 +00:00
createdAt: this.createdAt
}
return json
}
// ------------------------------ Statics ------------------------------
2016-12-11 20:50:51 +00:00
function associate (models) {
this.belongsToMany(models.Request, {
foreignKey: 'podId',
through: models.RequestToPod,
2016-12-24 15:59:17 +00:00
onDelete: 'cascade'
2016-12-11 20:50:51 +00:00
})
}
function countAll (callback) {
2016-12-11 20:50:51 +00:00
return this.count().asCallback(callback)
}
function incrementScores (ids, value, callback) {
if (!callback) callback = function () {}
2016-12-11 20:50:51 +00:00
const update = {
score: this.sequelize.literal('score +' + value)
}
const query = {
where: {
id: {
$in: ids
}
}
}
return this.update(update, query).asCallback(callback)
}
function list (callback) {
2016-12-11 20:50:51 +00:00
return this.findAll().asCallback(callback)
}
2015-06-09 15:41:40 +00:00
function listAllIds (callback) {
2016-12-11 20:50:51 +00:00
const query = {
attributes: [ 'id' ]
}
return this.findAll(query).asCallback(function (err, pods) {
if (err) return callback(err)
2016-12-11 20:50:51 +00:00
return callback(null, map(pods, 'id'))
})
}
function listBadPods (callback) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
score: { $lte: 0 }
}
}
return this.findAll(query).asCallback(callback)
}
2015-06-09 15:41:40 +00:00
function load (id, callback) {
2016-12-11 20:50:51 +00:00
return this.findById(id).asCallback(callback)
}
2016-01-31 10:23:52 +00:00
function loadByHost (host, callback) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
host: host
}
}
return this.findOne(query).asCallback(callback)
}
2016-01-31 10:23:52 +00:00
function removeAll (callback) {
2016-12-11 20:50:51 +00:00
return this.destroy().asCallback(callback)
}