You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
const plugins = require('./plugins');
|
|
const db = require('./database');
|
|
const meta = require('./meta');
|
|
|
|
const social = module.exports;
|
|
|
|
social.postSharing = null;
|
|
|
|
social.getPostSharing = async function () {
|
|
if (social.postSharing) {
|
|
return _.cloneDeep(social.postSharing);
|
|
}
|
|
|
|
let networks = [
|
|
{
|
|
id: 'facebook',
|
|
name: 'Facebook',
|
|
class: 'fa-facebook',
|
|
},
|
|
{
|
|
id: 'twitter',
|
|
name: 'Twitter',
|
|
class: 'fa-twitter',
|
|
},
|
|
];
|
|
networks = await plugins.hooks.fire('filter:social.posts', networks);
|
|
networks.forEach((network) => {
|
|
network.activated = parseInt(meta.config[`post-sharing-${network.id}`], 10) === 1;
|
|
});
|
|
|
|
social.postSharing = networks;
|
|
return _.cloneDeep(networks);
|
|
};
|
|
|
|
social.getActivePostSharing = async function () {
|
|
const networks = await social.getPostSharing();
|
|
return networks.filter(network => network && network.activated);
|
|
};
|
|
|
|
social.setActivePostSharingNetworks = async function (networkIDs) {
|
|
// keeping for 1.0.0 upgrade script that uses this function
|
|
social.postSharing = null;
|
|
if (!networkIDs.length) {
|
|
return;
|
|
}
|
|
const data = {};
|
|
networkIDs.forEach((id) => {
|
|
data[`post-sharing-${id}`] = 1;
|
|
});
|
|
await db.setObject('config', data);
|
|
};
|
|
|
|
require('./promisify')(social);
|