2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const mongoose = require('mongoose')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const constants = require('../initializers/constants')
|
|
|
|
const logger = require('../helpers/logger')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const podsSchema = mongoose.Schema({
|
2016-02-07 05:23:23 -05:00
|
|
|
url: String,
|
|
|
|
publicKey: String,
|
|
|
|
score: { type: Number, max: constants.FRIEND_BASE_SCORE }
|
|
|
|
})
|
2016-03-16 17:29:27 -04:00
|
|
|
const PodsDB = mongoose.model('pods', podsSchema)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const Pods = {
|
2016-02-07 05:23:23 -05:00
|
|
|
add: add,
|
|
|
|
count: count,
|
|
|
|
findByUrl: findByUrl,
|
|
|
|
findBadPods: findBadPods,
|
|
|
|
incrementScores: incrementScores,
|
|
|
|
list: list,
|
|
|
|
remove: remove,
|
|
|
|
removeAll: removeAll,
|
|
|
|
removeAllByIds: removeAllByIds
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: check if the pod is not already a friend
|
|
|
|
function add (data, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
2016-03-16 17:29:27 -04:00
|
|
|
const params = {
|
2016-02-07 05:23:23 -05:00
|
|
|
url: data.url,
|
|
|
|
publicKey: data.publicKey,
|
|
|
|
score: constants.FRIEND_BASE_SCORE
|
2015-06-09 11:41:40 -04:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
PodsDB.create(params, callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function count (callback) {
|
|
|
|
return PodsDB.count(callback)
|
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function findBadPods (callback) {
|
|
|
|
PodsDB.find({ score: 0 }, callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function findByUrl (url, callback) {
|
|
|
|
PodsDB.findOne({ url: url }, callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function incrementScores (ids, value, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
PodsDB.update({ _id: { $in: ids } }, { $inc: { score: value } }, { multi: true }, callback)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function list (callback) {
|
2016-05-11 15:19:34 -04:00
|
|
|
PodsDB.find(function (err, podsList) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot get the list of the pods.')
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-01-23 12:31:58 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
return callback(null, podsList)
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function remove (url, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
PodsDB.remove({ url: url }, callback)
|
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function removeAll (callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
PodsDB.remove(callback)
|
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function removeAllByIds (ids, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
PodsDB.remove({ _id: { $in: ids } }, callback)
|
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
module.exports = Pods
|