PeerTube/server/models/pod.ts

285 lines
6.4 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { each, waterfall } from 'async'
import { map } from 'lodash'
2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-05-15 20:22:03 +00:00
import { FRIEND_SCORE, PODS_SCORE } from '../initializers'
import { logger, isHostValid } from '../helpers'
2017-05-22 18:58:25 +00:00
import { addMethodsToModel } from './utils'
import {
PodClass,
PodInstance,
PodAttributes,
PodMethods
} from './pod-interface'
let Pod: Sequelize.Model<PodInstance, PodAttributes>
let toFormatedJSON: PodMethods.ToFormatedJSON
let countAll: PodMethods.CountAll
let incrementScores: PodMethods.IncrementScores
let list: PodMethods.List
let listAllIds: PodMethods.ListAllIds
let listRandomPodIdsWithRequest: PodMethods.ListRandomPodIdsWithRequest
let listBadPods: PodMethods.ListBadPods
let load: PodMethods.Load
let loadByHost: PodMethods.LoadByHost
let removeAll: PodMethods.RemoveAll
let updatePodsScore: PodMethods.UpdatePodsScore
export default function (sequelize, DataTypes) {
Pod = sequelize.define('Pod',
2016-12-11 20:50:51 +00:00
{
host: {
2016-12-28 14:49:23 +00:00
type: DataTypes.STRING,
allowNull: false,
validate: {
isHost: function (value) {
2017-05-15 20:22:03 +00:00
const res = isHostValid(value)
2016-12-28 14:49:23 +00:00
if (res === false) throw new Error('Host not valid.')
}
}
2016-12-11 20:50:51 +00:00
},
publicKey: {
2016-12-28 14:49:23 +00:00
type: DataTypes.STRING(5000),
allowNull: false
2016-12-11 20:50:51 +00:00
},
score: {
type: DataTypes.INTEGER,
2017-05-15 20:22:03 +00:00
defaultValue: FRIEND_SCORE.BASE,
2016-12-28 14:49:23 +00:00
allowNull: false,
validate: {
isInt: true,
2017-05-15 20:22:03 +00:00
max: FRIEND_SCORE.MAX
2016-12-28 14:49:23 +00:00
}
2017-02-16 18:19:56 +00:00
},
email: {
type: DataTypes.STRING(400),
2017-02-18 08:29:59 +00:00
allowNull: false,
validate: {
isEmail: true
}
2016-12-11 20:50:51 +00:00
}
},
{
2016-12-29 08:33:28 +00:00
indexes: [
{
2017-02-16 18:24:34 +00:00
fields: [ 'host' ],
unique: true
2016-12-29 08:33:28 +00:00
},
{
fields: [ 'score' ]
}
2017-05-22 18:58:25 +00:00
]
2016-12-11 20:50:51 +00:00
}
)
2017-05-22 18:58:25 +00:00
const classMethods = [
associate,
countAll,
incrementScores,
list,
listAllIds,
listRandomPodIdsWithRequest,
listBadPods,
load,
loadByHost,
updatePodsScore,
removeAll
]
const instanceMethods = [ toFormatedJSON ]
addMethodsToModel(Pod, classMethods, instanceMethods)
2016-12-11 20:50:51 +00:00
return Pod
}
// ------------------------------ METHODS ------------------------------
2017-05-22 18:58:25 +00:00
toFormatedJSON = function () {
const json = {
2016-12-11 20:50:51 +00:00
id: this.id,
host: this.host,
2017-02-16 18:19:56 +00:00
email: this.email,
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) {
2017-05-22 18:58:25 +00:00
Pod.belongsToMany(models.Request, {
2016-12-11 20:50:51 +00:00
foreignKey: 'podId',
through: models.RequestToPod,
2016-12-24 15:59:17 +00:00
onDelete: 'cascade'
2016-12-11 20:50:51 +00:00
})
}
2017-05-22 18:58:25 +00:00
countAll = function (callback) {
return Pod.count().asCallback(callback)
}
2017-05-22 18:58:25 +00:00
incrementScores = function (ids, value, callback) {
2017-05-15 20:22:03 +00:00
if (!callback) callback = function () { /* empty */ }
2016-12-11 20:50:51 +00:00
const update = {
2017-05-22 18:58:25 +00:00
score: Sequelize.literal('score +' + value)
2016-12-11 20:50:51 +00:00
}
2016-12-28 14:49:23 +00:00
const options = {
2016-12-11 20:50:51 +00:00
where: {
id: {
$in: ids
}
2016-12-28 14:49:23 +00:00
},
// In this case score is a literal and not an integer so we do not validate it
validate: false
2016-12-11 20:50:51 +00:00
}
2017-05-22 18:58:25 +00:00
return Pod.update(update, options).asCallback(callback)
}
2017-05-22 18:58:25 +00:00
list = function (callback) {
return Pod.findAll().asCallback(callback)
}
2015-06-09 15:41:40 +00:00
2017-05-22 18:58:25 +00:00
listAllIds = function (transaction, callback) {
if (!callback) {
callback = transaction
transaction = null
}
2017-05-15 20:22:03 +00:00
const query: any = {
2016-12-11 20:50:51 +00:00
attributes: [ 'id' ]
}
if (transaction) query.transaction = transaction
2017-05-22 18:58:25 +00:00
return Pod.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'))
})
}
2017-05-22 18:58:25 +00:00
listRandomPodIdsWithRequest = function (limit, tableWithPods, tableWithPodsJoins, callback) {
2017-02-26 17:57:33 +00:00
if (!callback) {
callback = tableWithPodsJoins
tableWithPodsJoins = ''
}
2017-05-22 18:58:25 +00:00
Pod.count().asCallback(function (err, count) {
2017-01-10 21:24:42 +00:00
if (err) return callback(err)
// Optimization...
if (count === 0) return callback(null, [])
let start = Math.floor(Math.random() * count) - limit
if (start < 0) start = 0
const query = {
attributes: [ 'id' ],
order: [
[ 'id', 'ASC' ]
],
offset: start,
limit: limit,
where: {
id: {
$in: [
2017-05-22 18:58:25 +00:00
Sequelize.literal(`SELECT DISTINCT "${tableWithPods}"."podId" FROM "${tableWithPods}" ${tableWithPodsJoins}`)
2017-01-10 21:24:42 +00:00
]
}
}
}
2017-05-22 18:58:25 +00:00
return Pod.findAll(query).asCallback(function (err, pods) {
2017-01-10 21:24:42 +00:00
if (err) return callback(err)
return callback(null, map(pods, 'id'))
})
})
}
2017-05-22 18:58:25 +00:00
listBadPods = function (callback) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
score: { $lte: 0 }
}
}
2017-05-22 18:58:25 +00:00
return Pod.findAll(query).asCallback(callback)
}
2015-06-09 15:41:40 +00:00
2017-05-22 18:58:25 +00:00
load = function (id, callback) {
return Pod.findById(id).asCallback(callback)
}
2016-01-31 10:23:52 +00:00
2017-05-22 18:58:25 +00:00
loadByHost = function (host, callback) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
host: host
}
}
2017-05-22 18:58:25 +00:00
return Pod.findOne(query).asCallback(callback)
}
2016-01-31 10:23:52 +00:00
2017-05-22 18:58:25 +00:00
removeAll = function (callback) {
return Pod.destroy().asCallback(callback)
}
2017-05-22 18:58:25 +00:00
updatePodsScore = function (goodPods, badPods) {
logger.info('Updating %d good pods and %d bad pods scores.', goodPods.length, badPods.length)
if (goodPods.length !== 0) {
2017-05-22 18:58:25 +00:00
incrementScores(goodPods, PODS_SCORE.BONUS, function (err) {
if (err) logger.error('Cannot increment scores of good pods.', { error: err })
})
}
if (badPods.length !== 0) {
2017-05-22 18:58:25 +00:00
incrementScores(badPods, PODS_SCORE.MALUS, function (err) {
if (err) logger.error('Cannot decrement scores of bad pods.', { error: err })
2017-05-22 18:58:25 +00:00
removeBadPods()
})
}
}
// ---------------------------------------------------------------------------
// Remove pods with a score of 0 (too many requests where they were unreachable)
function removeBadPods () {
waterfall([
function findBadPods (callback) {
2017-05-22 18:58:25 +00:00
listBadPods(function (err, pods) {
if (err) {
logger.error('Cannot find bad pods.', { error: err })
return callback(err)
}
return callback(null, pods)
})
},
function removeTheseBadPods (pods, callback) {
2017-05-15 20:22:03 +00:00
each(pods, function (pod: any, callbackEach) {
pod.destroy().asCallback(callbackEach)
}, function (err) {
return callback(err, pods.length)
})
}
], function (err, numberOfPodsRemoved) {
if (err) {
logger.error('Cannot remove bad pods.', { error: err })
} else if (numberOfPodsRemoved) {
logger.info('Removed %d pods.', numberOfPodsRemoved)
} else {
logger.info('No need to remove bad pods.')
}
})
}