File size: 2,407 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
var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var CustomSectionSchema = new Schema(
  {
    field: { type: String, required: true, unique: true },
    name: { type: String, required: true, unique: true },
    icon: String,
  },
  { timestamps: true },
);

/*
 *** Statics ***
 */

// Get all Sections
CustomSectionSchema.statics.getAll = () => {
  return new Promise((resolve, reject) => {
    var query = CustomSection.find();
    query.select('-_id field name icon');
    query
      .exec()
      .then(rows => {
        resolve(rows);
      })
      .catch(err => {
        reject(err);
      });
  });
};

// Get all Sections by Language
CustomSectionSchema.statics.getAllByLanguage = locale => {
  return new Promise((resolve, reject) => {
    var query = CustomSection.find({ locale: locale });
    query.select('-_id field name icon');
    query
      .exec()
      .then(rows => {
        resolve(rows);
      })
      .catch(err => {
        reject(err);
      });
  });
};

// Create Section
CustomSectionSchema.statics.create = section => {
  return new Promise((resolve, reject) => {
    var query = new CustomSection(section);
    query
      .save()
      .then(row => {
        resolve(row);
      })
      .catch(err => {
        if (err.code === 11000)
          reject({
            fn: 'BadParameters',
            message: 'Custom Section already exists',
          });
        else reject(err);
      });
  });
};

// Update Sections
CustomSectionSchema.statics.updateAll = sections => {
  return new Promise((resolve, reject) => {
    CustomSection.deleteMany()
      .then(row => {
        CustomSection.insertMany(sections);
      })
      .then(row => {
        resolve('Sections updated successfully');
      })
      .catch(err => {
        reject(err);
      });
  });
};

// Delete Section
CustomSectionSchema.statics.delete = (field, locale) => {
  return new Promise((resolve, reject) => {
    CustomSection.deleteOne({ field: field, locale: locale })
      .then(res => {
        if (res.deletedCount === 1) resolve('Custom Section deleted');
        else reject({ fn: 'NotFound', message: 'Custom Section not found' });
      })
      .catch(err => {
        reject(err);
      });
  });
};

/*
 *** Methods ***
 */

var CustomSection = mongoose.model('CustomSection', CustomSectionSchema);
CustomSection.syncIndexes();
module.exports = CustomSection;