Spaces:
Runtime error
Runtime error
File size: 5,571 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
var mongoose = require('mongoose'); //.set('debug', true);
var Schema = mongoose.Schema;
var _ = require('lodash');
var Utils = require('../lib/utils.js');
// https://stackoverflow.com/questions/25822289/what-is-the-best-way-to-store-color-hex-values-in-mongodb-mongoose
const colorValidator = v => /^#([0-9a-f]{3}){1,2}$/i.test(v);
const SettingSchema = new Schema(
{
report: {
enabled: { type: Boolean, default: true },
public: {
cvssColors: {
noneColor: {
type: String,
default: '#4a86e8',
validate: [colorValidator, 'Invalid color'],
},
lowColor: {
type: String,
default: '#008000',
validate: [colorValidator, 'Invalid color'],
},
mediumColor: {
type: String,
default: '#f9a009',
validate: [colorValidator, 'Invalid color'],
},
highColor: {
type: String,
default: '#fe0000',
validate: [colorValidator, 'Invalid color'],
},
criticalColor: {
type: String,
default: '#212121',
validate: [colorValidator, 'Invalid color'],
},
},
captions: {
type: [{ type: String, unique: true }],
default: ['Figure'],
},
highlightWarning: { type: Boolean, default: false },
highlightWarningColor: {
type: String,
default: '#ffff25',
validate: [colorValidator, 'Invalid color'],
},
requiredFields: {
company: { type: Boolean, default: false },
client: { type: Boolean, default: false },
dateStart: { type: Boolean, default: false },
dateEnd: { type: Boolean, default: false },
dateReport: { type: Boolean, default: false },
scope: { type: Boolean, default: false },
findingType: { type: Boolean, default: false },
findingDescription: { type: Boolean, default: false },
findingObservation: { type: Boolean, default: false },
findingReferences: { type: Boolean, default: false },
findingProofs: { type: Boolean, default: false },
findingAffected: { type: Boolean, default: false },
findingRemediationDifficulty: { type: Boolean, default: false },
findingPriority: { type: Boolean, default: false },
findingRemediation: { type: Boolean, default: false },
},
},
private: {
imageBorder: { type: Boolean, default: false },
imageBorderColor: {
type: String,
default: '#000000',
validate: [colorValidator, 'Invalid color'],
},
},
},
reviews: {
enabled: { type: Boolean, default: false },
public: {
mandatoryReview: { type: Boolean, default: false },
minReviewers: {
type: Number,
default: 1,
min: 1,
max: 100,
validate: [Number.isInteger, 'Invalid integer'],
},
},
private: {
removeApprovalsUponUpdate: { type: Boolean, default: false },
},
},
},
{ strict: true },
);
// Get all settings
SettingSchema.statics.getAll = () => {
return new Promise((resolve, reject) => {
const query = Settings.findOne({});
query.select('-_id -__v');
query
.exec()
.then(settings => {
resolve(settings);
})
.catch(err => reject(err));
});
};
// Get public settings
SettingSchema.statics.getPublic = () => {
return new Promise((resolve, reject) => {
const query = Settings.findOne({});
query.select(
'-_id report.enabled report.public reviews.enabled reviews.public',
);
query
.exec()
.then(settings => resolve(settings))
.catch(err => reject(err));
});
};
// Update Settings
SettingSchema.statics.update = settings => {
return new Promise((resolve, reject) => {
const query = Settings.findOneAndUpdate({}, settings, {
new: true,
runValidators: true,
});
query
.exec()
.then(settings => resolve(settings))
.catch(err => reject(err));
});
};
// Restore settings to default
SettingSchema.statics.restoreDefaults = () => {
return new Promise((resolve, reject) => {
const query = Settings.deleteMany({});
query
.exec()
.then(_ => {
const query = new Settings({});
query
.save()
.then(_ => resolve('Restored default settings.'))
.catch(err => reject(err));
})
.catch(err => reject(err));
});
};
const Settings = mongoose.model('Settings', SettingSchema);
// Populate/update settings when server starts
Settings.findOne()
.then(liveSettings => {
if (!liveSettings) {
console.log('Initializing Settings');
Settings.create({}).catch(err => {
throw 'Error creating the settings in the database : ' + err;
});
} else {
var needUpdate = false;
var liveSettingsPaths = Utils.getObjectPaths(liveSettings.toObject());
liveSettingsPaths.forEach(path => {
if (!SettingSchema.path(path) && !path.startsWith('_')) {
needUpdate = true;
_.set(liveSettings, path, undefined);
}
});
if (needUpdate) {
console.log('Removing unused fields from Settings');
liveSettings.save();
}
}
})
.catch(err => {
throw 'Error checking for initial settings in the database : ' + err;
});
module.exports = Settings;
|