| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405 | 
							- Boards = new Mongo.Collection('boards');
 
- /**
 
-  * This is a Board.
 
-  */
 
- Boards.attachSchema(
 
-   new SimpleSchema({
 
-     title: {
 
-       /**
 
-        * The title of the board
 
-        */
 
-       type: String,
 
-     },
 
-     slug: {
 
-       /**
 
-        * The title slugified.
 
-        */
 
-       type: String,
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         // XXX We need to improve slug management. Only the id should be necessary
 
-         // to identify a board in the code.
 
-         // XXX If the board title is updated, the slug should also be updated.
 
-         // In some cases (Chinese and Japanese for instance) the `getSlug` function
 
-         // return an empty string. This is causes bugs in our application so we set
 
-         // a default slug in this case.
 
-         if (this.isInsert && !this.isSet) {
 
-           let slug = 'board';
 
-           const title = this.field('title');
 
-           if (title.isSet) {
 
-             slug = getSlug(title.value) || slug;
 
-           }
 
-           return slug;
 
-         }
 
-       },
 
-     },
 
-     archived: {
 
-       /**
 
-        * Is the board archived?
 
-        */
 
-       type: Boolean,
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert && !this.isSet) {
 
-           return false;
 
-         }
 
-       },
 
-     },
 
-     createdAt: {
 
-       /**
 
-        * Creation time of the board
 
-        */
 
-       type: Date,
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert) {
 
-           return new Date();
 
-         } else {
 
-           this.unset();
 
-         }
 
-       },
 
-     },
 
-     // XXX Inconsistent field naming
 
-     modifiedAt: {
 
-       /**
 
-        * Last modification time of the board
 
-        */
 
-       type: Date,
 
-       optional: true,
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert || this.isUpsert || this.isUpdate) {
 
-           return new Date();
 
-         } else {
 
-           this.unset();
 
-         }
 
-       },
 
-     },
 
-     // De-normalized number of users that have starred this board
 
-     stars: {
 
-       /**
 
-        * How many stars the board has
 
-        */
 
-       type: Number,
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert) {
 
-           return 0;
 
-         }
 
-       },
 
-     },
 
-     // De-normalized label system
 
-     labels: {
 
-       /**
 
-        * List of labels attached to a board
 
-        */
 
-       type: [Object],
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert && !this.isSet) {
 
-           const colors = Boards.simpleSchema()._schema['labels.$.color']
 
-             .allowedValues;
 
-           const defaultLabelsColors = _.clone(colors).splice(0, 6);
 
-           return defaultLabelsColors.map(color => ({
 
-             color,
 
-             _id: Random.id(6),
 
-             name: '',
 
-           }));
 
-         }
 
-       },
 
-     },
 
-     'labels.$._id': {
 
-       /**
 
-        * Unique id of a label
 
-        */
 
-       // We don't specify that this field must be unique in the board because that
 
-       // will cause performance penalties and is not necessary since this field is
 
-       // always set on the server.
 
-       // XXX Actually if we create a new label, the `_id` is set on the client
 
-       // without being overwritten by the server, could it be a problem?
 
-       type: String,
 
-     },
 
-     'labels.$.name': {
 
-       /**
 
-        * Name of a label
 
-        */
 
-       type: String,
 
-       optional: true,
 
-     },
 
-     'labels.$.color': {
 
-       /**
 
-        * color of a label.
 
-        *
 
-        * Can be amongst `green`, `yellow`, `orange`, `red`, `purple`,
 
-        * `blue`, `sky`, `lime`, `pink`, `black`,
 
-        * `silver`, `peachpuff`, `crimson`, `plum`, `darkgreen`,
 
-        * `slateblue`, `magenta`, `gold`, `navy`, `gray`,
 
-        * `saddlebrown`, `paleturquoise`, `mistyrose`, `indigo`
 
-        */
 
-       type: String,
 
-       allowedValues: [
 
-         'green',
 
-         'yellow',
 
-         'orange',
 
-         'red',
 
-         'purple',
 
-         'blue',
 
-         'sky',
 
-         'lime',
 
-         'pink',
 
-         'black',
 
-         'silver',
 
-         'peachpuff',
 
-         'crimson',
 
-         'plum',
 
-         'darkgreen',
 
-         'slateblue',
 
-         'magenta',
 
-         'gold',
 
-         'navy',
 
-         'gray',
 
-         'saddlebrown',
 
-         'paleturquoise',
 
-         'mistyrose',
 
-         'indigo',
 
-       ],
 
-     },
 
-     // XXX We might want to maintain more informations under the member sub-
 
-     // documents like de-normalized meta-data (the date the member joined the
 
-     // board, the number of contributions, etc.).
 
-     members: {
 
-       /**
 
-        * List of members of a board
 
-        */
 
-       type: [Object],
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert && !this.isSet) {
 
-           return [
 
-             {
 
-               userId: this.userId,
 
-               isAdmin: true,
 
-               isActive: true,
 
-               isNoComments: false,
 
-               isCommentOnly: false,
 
-             },
 
-           ];
 
-         }
 
-       },
 
-     },
 
-     'members.$.userId': {
 
-       /**
 
-        * The uniq ID of the member
 
-        */
 
-       type: String,
 
-     },
 
-     'members.$.isAdmin': {
 
-       /**
 
-        * Is the member an admin of the board?
 
-        */
 
-       type: Boolean,
 
-     },
 
-     'members.$.isActive': {
 
-       /**
 
-        * Is the member active?
 
-        */
 
-       type: Boolean,
 
-     },
 
-     'members.$.isNoComments': {
 
-       /**
 
-        * Is the member not allowed to make comments
 
-        */
 
-       type: Boolean,
 
-       optional: true,
 
-     },
 
-     'members.$.isCommentOnly': {
 
-       /**
 
-        * Is the member only allowed to comment on the board
 
-        */
 
-       type: Boolean,
 
-       optional: true,
 
-     },
 
-     permission: {
 
-       /**
 
-        * visibility of the board
 
-        */
 
-       type: String,
 
-       allowedValues: ['public', 'private'],
 
-     },
 
-     color: {
 
-       /**
 
-        * The color of the board.
 
-        */
 
-       type: String,
 
-       allowedValues: [
 
-         'belize',
 
-         'nephritis',
 
-         'pomegranate',
 
-         'pumpkin',
 
-         'wisteria',
 
-         'moderatepink',
 
-         'strongcyan',
 
-         'limegreen',
 
-         'midnight',
 
-         'dark',
 
-         'relax',
 
-         'corteza',
 
-       ],
 
-       // eslint-disable-next-line consistent-return
 
-       autoValue() {
 
-         if (this.isInsert && !this.isSet) {
 
-           return Boards.simpleSchema()._schema.color.allowedValues[0];
 
-         }
 
-       },
 
-     },
 
-     description: {
 
-       /**
 
-        * The description of the board
 
-        */
 
-       type: String,
 
-       optional: true,
 
-     },
 
-     subtasksDefaultBoardId: {
 
-       /**
 
-        * The default board ID assigned to subtasks.
 
-        */
 
-       type: String,
 
-       optional: true,
 
-       defaultValue: null,
 
-     },
 
-     subtasksDefaultListId: {
 
-       /**
 
-        * The default List ID assigned to subtasks.
 
-        */
 
-       type: String,
 
-       optional: true,
 
-       defaultValue: null,
 
-     },
 
-     allowsSubtasks: {
 
-       /**
 
-        * Does the board allows subtasks?
 
-        */
 
-       type: Boolean,
 
-       defaultValue: true,
 
-     },
 
-     presentParentTask: {
 
-       /**
 
-        * Controls how to present the parent task:
 
-        *
 
-        * - `prefix-with-full-path`: add a prefix with the full path
 
-        * - `prefix-with-parent`: add a prefisx with the parent name
 
-        * - `subtext-with-full-path`: add a subtext with the full path
 
-        * - `subtext-with-parent`: add a subtext with the parent name
 
-        * - `no-parent`: does not show the parent at all
 
-        */
 
-       type: String,
 
-       allowedValues: [
 
-         'prefix-with-full-path',
 
-         'prefix-with-parent',
 
-         'subtext-with-full-path',
 
-         'subtext-with-parent',
 
-         'no-parent',
 
-       ],
 
-       optional: true,
 
-       defaultValue: 'no-parent',
 
-     },
 
-     startAt: {
 
-       /**
 
-        * Starting date of the board.
 
-        */
 
-       type: Date,
 
-       optional: true,
 
-     },
 
-     dueAt: {
 
-       /**
 
-        * Due date of the board.
 
-        */
 
-       type: Date,
 
-       optional: true,
 
-     },
 
-     endAt: {
 
-       /**
 
-        * End date of the board.
 
-        */
 
-       type: Date,
 
-       optional: true,
 
-     },
 
-     spentTime: {
 
-       /**
 
-        * Time spent in the board.
 
-        */
 
-       type: Number,
 
-       decimal: true,
 
-       optional: true,
 
-     },
 
-     isOvertime: {
 
-       /**
 
-        * Is the board overtimed?
 
-        */
 
-       type: Boolean,
 
-       defaultValue: false,
 
-       optional: true,
 
-     },
 
-     type: {
 
-       /**
 
-        * The type of board
 
-        */
 
-       type: String,
 
-       defaultValue: 'board',
 
-     },
 
-   }),
 
- );
 
- Boards.helpers({
 
-   copy() {
 
-     const oldId = this._id;
 
-     delete this._id;
 
-     const _id = Boards.insert(this);
 
-     // Copy all swimlanes in board
 
-     Swimlanes.find({
 
-       boardId: oldId,
 
-       archived: false,
 
-     }).forEach(swimlane => {
 
-       swimlane.type = 'swimlane';
 
-       swimlane.copy(_id);
 
-     });
 
-   },
 
-   /**
 
-    * Is supplied user authorized to view this board?
 
-    */
 
-   isVisibleBy(user) {
 
-     if (this.isPublic()) {
 
-       // public boards are visible to everyone
 
-       return true;
 
-     } else {
 
-       // otherwise you have to be logged-in and active member
 
-       return user && this.isActiveMember(user._id);
 
-     }
 
-   },
 
-   /**
 
-    * Is the user one of the active members of the board?
 
-    *
 
-    * @param userId
 
-    * @returns {boolean} the member that matches, or undefined/false
 
-    */
 
-   isActiveMember(userId) {
 
-     if (userId) {
 
-       return this.members.find(
 
-         member => member.userId === userId && member.isActive,
 
-       );
 
-     } else {
 
-       return false;
 
-     }
 
-   },
 
-   isPublic() {
 
-     return this.permission === 'public';
 
-   },
 
-   cards() {
 
-     return Cards.find(
 
-       { boardId: this._id, archived: false },
 
-       { sort: { title: 1 } },
 
-     );
 
-   },
 
-   lists() {
 
-     return Lists.find(
 
-       { boardId: this._id, archived: false },
 
-       { sort: { sort: 1 } },
 
-     );
 
-   },
 
-   nullSortLists() {
 
-     return Lists.find({
 
-       boardId: this._id,
 
-       archived: false,
 
-       sort: { $eq: null },
 
-     });
 
-   },
 
-   swimlanes() {
 
-     return Swimlanes.find(
 
-       { boardId: this._id, archived: false },
 
-       { sort: { sort: 1 } },
 
-     );
 
-   },
 
-   nextSwimlane(swimlane) {
 
-     return Swimlanes.findOne(
 
-       {
 
-         boardId: this._id,
 
-         archived: false,
 
-         sort: { $gte: swimlane.sort },
 
-         _id: { $ne: swimlane._id },
 
-       },
 
-       {
 
-         sort: { sort: 1 },
 
-       },
 
-     );
 
-   },
 
-   nullSortSwimlanes() {
 
-     return Swimlanes.find({
 
-       boardId: this._id,
 
-       archived: false,
 
-       sort: { $eq: null },
 
-     });
 
-   },
 
-   hasOvertimeCards() {
 
-     const card = Cards.findOne({
 
-       isOvertime: true,
 
-       boardId: this._id,
 
-       archived: false,
 
-     });
 
-     return card !== undefined;
 
-   },
 
-   hasSpentTimeCards() {
 
-     const card = Cards.findOne({
 
-       spentTime: { $gt: 0 },
 
-       boardId: this._id,
 
-       archived: false,
 
-     });
 
-     return card !== undefined;
 
-   },
 
-   activities() {
 
-     return Activities.find({ boardId: this._id }, { sort: { createdAt: -1 } });
 
-   },
 
-   activeMembers() {
 
-     return _.where(this.members, { isActive: true });
 
-   },
 
-   activeAdmins() {
 
-     return _.where(this.members, { isActive: true, isAdmin: true });
 
-   },
 
-   memberUsers() {
 
-     return Users.find({ _id: { $in: _.pluck(this.members, 'userId') } });
 
-   },
 
-   getLabel(name, color) {
 
-     return _.findWhere(this.labels, { name, color });
 
-   },
 
-   getLabelById(labelId) {
 
-     return _.findWhere(this.labels, { _id: labelId });
 
-   },
 
-   labelIndex(labelId) {
 
-     return _.pluck(this.labels, '_id').indexOf(labelId);
 
-   },
 
-   memberIndex(memberId) {
 
-     return _.pluck(this.members, 'userId').indexOf(memberId);
 
-   },
 
-   hasMember(memberId) {
 
-     return !!_.findWhere(this.members, { userId: memberId, isActive: true });
 
-   },
 
-   hasAdmin(memberId) {
 
-     return !!_.findWhere(this.members, {
 
-       userId: memberId,
 
-       isActive: true,
 
-       isAdmin: true,
 
-     });
 
-   },
 
-   hasNoComments(memberId) {
 
-     return !!_.findWhere(this.members, {
 
-       userId: memberId,
 
-       isActive: true,
 
-       isAdmin: false,
 
-       isNoComments: true,
 
-     });
 
-   },
 
-   hasCommentOnly(memberId) {
 
-     return !!_.findWhere(this.members, {
 
-       userId: memberId,
 
-       isActive: true,
 
-       isAdmin: false,
 
-       isCommentOnly: true,
 
-     });
 
-   },
 
-   absoluteUrl() {
 
-     return FlowRouter.url('board', { id: this._id, slug: this.slug });
 
-   },
 
-   colorClass() {
 
-     return `board-color-${this.color}`;
 
-   },
 
-   customFields() {
 
-     return CustomFields.find(
 
-       { boardIds: { $in: [this._id] } },
 
-       { sort: { name: 1 } },
 
-     );
 
-   },
 
-   // XXX currently mutations return no value so we have an issue when using addLabel in import
 
-   // XXX waiting on https://github.com/mquandalle/meteor-collection-mutations/issues/1 to remove...
 
-   pushLabel(name, color) {
 
-     const _id = Random.id(6);
 
-     Boards.direct.update(this._id, { $push: { labels: { _id, name, color } } });
 
-     return _id;
 
-   },
 
-   searchBoards(term) {
 
-     check(term, Match.OneOf(String, null, undefined));
 
-     const query = { boardId: this._id };
 
-     query.type = 'cardType-linkedBoard';
 
-     query.archived = false;
 
-     const projection = { limit: 10, sort: { createdAt: -1 } };
 
-     if (term) {
 
-       const regex = new RegExp(term, 'i');
 
-       query.$or = [{ title: regex }, { description: regex }];
 
-     }
 
-     return Cards.find(query, projection);
 
-   },
 
-   searchSwimlanes(term) {
 
-     check(term, Match.OneOf(String, null, undefined));
 
-     const query = { boardId: this._id };
 
-     if (this.isTemplatesBoard()) {
 
-       query.type = 'template-swimlane';
 
-       query.archived = false;
 
-     } else {
 
-       query.type = { $nin: ['template-swimlane'] };
 
-     }
 
-     const projection = { limit: 10, sort: { createdAt: -1 } };
 
-     if (term) {
 
-       const regex = new RegExp(term, 'i');
 
-       query.$or = [{ title: regex }, { description: regex }];
 
-     }
 
-     return Swimlanes.find(query, projection);
 
-   },
 
-   searchLists(term) {
 
-     check(term, Match.OneOf(String, null, undefined));
 
-     const query = { boardId: this._id };
 
-     if (this.isTemplatesBoard()) {
 
-       query.type = 'template-list';
 
-       query.archived = false;
 
-     } else {
 
-       query.type = { $nin: ['template-list'] };
 
-     }
 
-     const projection = { limit: 10, sort: { createdAt: -1 } };
 
-     if (term) {
 
-       const regex = new RegExp(term, 'i');
 
-       query.$or = [{ title: regex }, { description: regex }];
 
-     }
 
-     return Lists.find(query, projection);
 
-   },
 
-   searchCards(term, excludeLinked) {
 
-     check(term, Match.OneOf(String, null, undefined));
 
-     const query = { boardId: this._id };
 
-     if (excludeLinked) {
 
-       query.linkedId = null;
 
-     }
 
-     if (this.isTemplatesBoard()) {
 
-       query.type = 'template-card';
 
-       query.archived = false;
 
-     } else {
 
-       query.type = { $nin: ['template-card'] };
 
-     }
 
-     const projection = { limit: 10, sort: { createdAt: -1 } };
 
-     if (term) {
 
-       const regex = new RegExp(term, 'i');
 
-       query.$or = [{ title: regex }, { description: regex }];
 
-     }
 
-     return Cards.find(query, projection);
 
-   },
 
-   // A board alwasy has another board where it deposits subtasks of thasks
 
-   // that belong to itself.
 
-   getDefaultSubtasksBoardId() {
 
-     if (
 
-       this.subtasksDefaultBoardId === null ||
 
-       this.subtasksDefaultBoardId === undefined
 
-     ) {
 
-       this.subtasksDefaultBoardId = Boards.insert({
 
-         title: `^${this.title}^`,
 
-         permission: this.permission,
 
-         members: this.members,
 
-         color: this.color,
 
-         description: TAPi18n.__('default-subtasks-board', {
 
-           board: this.title,
 
-         }),
 
-       });
 
-       Swimlanes.insert({
 
-         title: TAPi18n.__('default'),
 
-         boardId: this.subtasksDefaultBoardId,
 
-       });
 
-       Boards.update(this._id, {
 
-         $set: {
 
-           subtasksDefaultBoardId: this.subtasksDefaultBoardId,
 
-         },
 
-       });
 
-     }
 
-     return this.subtasksDefaultBoardId;
 
-   },
 
-   getDefaultSubtasksBoard() {
 
-     return Boards.findOne(this.getDefaultSubtasksBoardId());
 
-   },
 
-   getDefaultSubtasksListId() {
 
-     if (
 
-       this.subtasksDefaultListId === null ||
 
-       this.subtasksDefaultListId === undefined
 
-     ) {
 
-       this.subtasksDefaultListId = Lists.insert({
 
-         title: TAPi18n.__('queue'),
 
-         boardId: this._id,
 
-       });
 
-       this.setSubtasksDefaultListId(this.subtasksDefaultListId);
 
-     }
 
-     return this.subtasksDefaultListId;
 
-   },
 
-   getDefaultSubtasksList() {
 
-     return Lists.findOne(this.getDefaultSubtasksListId());
 
-   },
 
-   getDefaultSwimline() {
 
-     let result = Swimlanes.findOne({ boardId: this._id });
 
-     if (result === undefined) {
 
-       Swimlanes.insert({
 
-         title: TAPi18n.__('default'),
 
-         boardId: this._id,
 
-       });
 
-       result = Swimlanes.findOne({ boardId: this._id });
 
-     }
 
-     return result;
 
-   },
 
-   cardsInInterval(start, end) {
 
-     return Cards.find({
 
-       boardId: this._id,
 
-       $or: [
 
-         {
 
-           startAt: {
 
-             $lte: start,
 
-           },
 
-           endAt: {
 
-             $gte: start,
 
-           },
 
-         },
 
-         {
 
-           startAt: {
 
-             $lte: end,
 
-           },
 
-           endAt: {
 
-             $gte: end,
 
-           },
 
-         },
 
-         {
 
-           startAt: {
 
-             $gte: start,
 
-           },
 
-           endAt: {
 
-             $lte: end,
 
-           },
 
-         },
 
-       ],
 
-     });
 
-   },
 
-   isTemplateBoard() {
 
-     return this.type === 'template-board';
 
-   },
 
-   isTemplatesBoard() {
 
-     return this.type === 'template-container';
 
-   },
 
- });
 
- Boards.mutations({
 
-   archive() {
 
-     return { $set: { archived: true } };
 
-   },
 
-   restore() {
 
-     return { $set: { archived: false } };
 
-   },
 
-   rename(title) {
 
-     return { $set: { title } };
 
-   },
 
-   setDescription(description) {
 
-     return { $set: { description } };
 
-   },
 
-   setColor(color) {
 
-     return { $set: { color } };
 
-   },
 
-   setVisibility(visibility) {
 
-     return { $set: { permission: visibility } };
 
-   },
 
-   addLabel(name, color) {
 
-     // If label with the same name and color already exists we don't want to
 
-     // create another one because they would be indistinguishable in the UI
 
-     // (they would still have different `_id` but that is not exposed to the
 
-     // user).
 
-     if (!this.getLabel(name, color)) {
 
-       const _id = Random.id(6);
 
-       return { $push: { labels: { _id, name, color } } };
 
-     }
 
-     return {};
 
-   },
 
-   editLabel(labelId, name, color) {
 
-     if (!this.getLabel(name, color)) {
 
-       const labelIndex = this.labelIndex(labelId);
 
-       return {
 
-         $set: {
 
-           [`labels.${labelIndex}.name`]: name,
 
-           [`labels.${labelIndex}.color`]: color,
 
-         },
 
-       };
 
-     }
 
-     return {};
 
-   },
 
-   removeLabel(labelId) {
 
-     return { $pull: { labels: { _id: labelId } } };
 
-   },
 
-   changeOwnership(fromId, toId) {
 
-     const memberIndex = this.memberIndex(fromId);
 
-     return {
 
-       $set: {
 
-         [`members.${memberIndex}.userId`]: toId,
 
-       },
 
-     };
 
-   },
 
-   addMember(memberId) {
 
-     const memberIndex = this.memberIndex(memberId);
 
-     if (memberIndex >= 0) {
 
-       return {
 
-         $set: {
 
-           [`members.${memberIndex}.isActive`]: true,
 
-         },
 
-       };
 
-     }
 
-     return {
 
-       $push: {
 
-         members: {
 
-           userId: memberId,
 
-           isAdmin: false,
 
-           isActive: true,
 
-           isNoComments: false,
 
-           isCommentOnly: false,
 
-         },
 
-       },
 
-     };
 
-   },
 
-   removeMember(memberId) {
 
-     const memberIndex = this.memberIndex(memberId);
 
-     // we do not allow the only one admin to be removed
 
-     const allowRemove =
 
-       !this.members[memberIndex].isAdmin || this.activeAdmins().length > 1;
 
-     if (!allowRemove) {
 
-       return {
 
-         $set: {
 
-           [`members.${memberIndex}.isActive`]: true,
 
-         },
 
-       };
 
-     }
 
-     return {
 
-       $set: {
 
-         [`members.${memberIndex}.isActive`]: false,
 
-         [`members.${memberIndex}.isAdmin`]: false,
 
-       },
 
-     };
 
-   },
 
-   setMemberPermission(
 
-     memberId,
 
-     isAdmin,
 
-     isNoComments,
 
-     isCommentOnly,
 
-     currentUserId = Meteor.userId(),
 
-   ) {
 
-     const memberIndex = this.memberIndex(memberId);
 
-     // do not allow change permission of self
 
-     if (memberId === currentUserId) {
 
-       isAdmin = this.members[memberIndex].isAdmin;
 
-     }
 
-     return {
 
-       $set: {
 
-         [`members.${memberIndex}.isAdmin`]: isAdmin,
 
-         [`members.${memberIndex}.isNoComments`]: isNoComments,
 
-         [`members.${memberIndex}.isCommentOnly`]: isCommentOnly,
 
-       },
 
-     };
 
-   },
 
-   setAllowsSubtasks(allowsSubtasks) {
 
-     return { $set: { allowsSubtasks } };
 
-   },
 
-   setSubtasksDefaultBoardId(subtasksDefaultBoardId) {
 
-     return { $set: { subtasksDefaultBoardId } };
 
-   },
 
-   setSubtasksDefaultListId(subtasksDefaultListId) {
 
-     return { $set: { subtasksDefaultListId } };
 
-   },
 
-   setPresentParentTask(presentParentTask) {
 
-     return { $set: { presentParentTask } };
 
-   },
 
- });
 
- function boardRemover(userId, doc) {
 
-   [Cards, Lists, Swimlanes, Integrations, Rules, Activities].forEach(
 
-     element => {
 
-       element.remove({ boardId: doc._id });
 
-     },
 
-   );
 
- }
 
- if (Meteor.isServer) {
 
-   Boards.allow({
 
-     insert: Meteor.userId,
 
-     update: allowIsBoardAdmin,
 
-     remove: allowIsBoardAdmin,
 
-     fetch: ['members'],
 
-   });
 
-   // The number of users that have starred this board is managed by trusted code
 
-   // and the user is not allowed to update it
 
-   Boards.deny({
 
-     update(userId, board, fieldNames) {
 
-       return _.contains(fieldNames, 'stars');
 
-     },
 
-     fetch: [],
 
-   });
 
-   // We can't remove a member if it is the last administrator
 
-   Boards.deny({
 
-     update(userId, doc, fieldNames, modifier) {
 
-       if (!_.contains(fieldNames, 'members')) return false;
 
-       // We only care in case of a $pull operation, ie remove a member
 
-       if (!_.isObject(modifier.$pull && modifier.$pull.members)) return false;
 
-       // If there is more than one admin, it's ok to remove anyone
 
-       const nbAdmins = _.where(doc.members, { isActive: true, isAdmin: true })
 
-         .length;
 
-       if (nbAdmins > 1) return false;
 
-       // If all the previous conditions were verified, we can't remove
 
-       // a user if it's an admin
 
-       const removedMemberId = modifier.$pull.members.userId;
 
-       return Boolean(
 
-         _.findWhere(doc.members, {
 
-           userId: removedMemberId,
 
-           isAdmin: true,
 
-         }),
 
-       );
 
-     },
 
-     fetch: ['members'],
 
-   });
 
-   Meteor.methods({
 
-     quitBoard(boardId) {
 
-       check(boardId, String);
 
-       const board = Boards.findOne(boardId);
 
-       if (board) {
 
-         const userId = Meteor.userId();
 
-         const index = board.memberIndex(userId);
 
-         if (index >= 0) {
 
-           board.removeMember(userId);
 
-           return true;
 
-         } else throw new Meteor.Error('error-board-notAMember');
 
-       } else throw new Meteor.Error('error-board-doesNotExist');
 
-     },
 
-   });
 
-   Meteor.methods({
 
-     archiveBoard(boardId) {
 
-       check(boardId, String);
 
-       const board = Boards.findOne(boardId);
 
-       if (board) {
 
-         const userId = Meteor.userId();
 
-         const index = board.memberIndex(userId);
 
-         if (index >= 0) {
 
-           board.archive();
 
-           return true;
 
-         } else throw new Meteor.Error('error-board-notAMember');
 
-       } else throw new Meteor.Error('error-board-doesNotExist');
 
-     },
 
-   });
 
- }
 
- if (Meteor.isServer) {
 
-   // Let MongoDB ensure that a member is not included twice in the same board
 
-   Meteor.startup(() => {
 
-     Boards._collection._ensureIndex({ modifiedAt: -1 });
 
-     Boards._collection._ensureIndex(
 
-       {
 
-         _id: 1,
 
-         'members.userId': 1,
 
-       },
 
-       { unique: true },
 
-     );
 
-     Boards._collection._ensureIndex({ 'members.userId': 1 });
 
-   });
 
-   // Genesis: the first activity of the newly created board
 
-   Boards.after.insert((userId, doc) => {
 
-     Activities.insert({
 
-       userId,
 
-       type: 'board',
 
-       activityTypeId: doc._id,
 
-       activityType: 'createBoard',
 
-       boardId: doc._id,
 
-     });
 
-   });
 
-   // If the user remove one label from a board, we cant to remove reference of
 
-   // this label in any card of this board.
 
-   Boards.after.update((userId, doc, fieldNames, modifier) => {
 
-     if (
 
-       !_.contains(fieldNames, 'labels') ||
 
-       !modifier.$pull ||
 
-       !modifier.$pull.labels ||
 
-       !modifier.$pull.labels._id
 
-     ) {
 
-       return;
 
-     }
 
-     const removedLabelId = modifier.$pull.labels._id;
 
-     Cards.update(
 
-       { boardId: doc._id },
 
-       {
 
-         $pull: {
 
-           labelIds: removedLabelId,
 
-         },
 
-       },
 
-       { multi: true },
 
-     );
 
-   });
 
-   const foreachRemovedMember = (doc, modifier, callback) => {
 
-     Object.keys(modifier).forEach(set => {
 
-       if (modifier[set] !== false) {
 
-         return;
 
-       }
 
-       const parts = set.split('.');
 
-       if (
 
-         parts.length === 3 &&
 
-         parts[0] === 'members' &&
 
-         parts[2] === 'isActive'
 
-       ) {
 
-         callback(doc.members[parts[1]].userId);
 
-       }
 
-     });
 
-   };
 
-   // Remove a member from all objects of the board before leaving the board
 
-   Boards.before.update((userId, doc, fieldNames, modifier) => {
 
-     if (!_.contains(fieldNames, 'members')) {
 
-       return;
 
-     }
 
-     if (modifier.$set) {
 
-       const boardId = doc._id;
 
-       foreachRemovedMember(doc, modifier.$set, memberId => {
 
-         Cards.update(
 
-           { boardId },
 
-           {
 
-             $pull: {
 
-               members: memberId,
 
-               watchers: memberId,
 
-             },
 
-           },
 
-           { multi: true },
 
-         );
 
-         Lists.update(
 
-           { boardId },
 
-           {
 
-             $pull: {
 
-               watchers: memberId,
 
-             },
 
-           },
 
-           { multi: true },
 
-         );
 
-         const board = Boards._transform(doc);
 
-         board.setWatcher(memberId, false);
 
-         // Remove board from users starred list
 
-         if (!board.isPublic()) {
 
-           Users.update(memberId, {
 
-             $pull: {
 
-               'profile.starredBoards': boardId,
 
-             },
 
-           });
 
-         }
 
-       });
 
-     }
 
-   });
 
-   Boards.before.remove((userId, doc) => {
 
-     boardRemover(userId, doc);
 
-     // Add removeBoard activity to keep it
 
-     Activities.insert({
 
-       userId,
 
-       type: 'board',
 
-       activityTypeId: doc._id,
 
-       activityType: 'removeBoard',
 
-       boardId: doc._id,
 
-     });
 
-   });
 
-   // Add a new activity if we add or remove a member to the board
 
-   Boards.after.update((userId, doc, fieldNames, modifier) => {
 
-     if (!_.contains(fieldNames, 'members')) {
 
-       return;
 
-     }
 
-     // Say hello to the new member
 
-     if (modifier.$push && modifier.$push.members) {
 
-       const memberId = modifier.$push.members.userId;
 
-       Activities.insert({
 
-         userId,
 
-         memberId,
 
-         type: 'member',
 
-         activityType: 'addBoardMember',
 
-         boardId: doc._id,
 
-       });
 
-     }
 
-     // Say goodbye to the former member
 
-     if (modifier.$set) {
 
-       foreachRemovedMember(doc, modifier.$set, memberId => {
 
-         Activities.insert({
 
-           userId,
 
-           memberId,
 
-           type: 'member',
 
-           activityType: 'removeBoardMember',
 
-           boardId: doc._id,
 
-         });
 
-       });
 
-     }
 
-   });
 
- }
 
- //BOARDS REST API
 
- if (Meteor.isServer) {
 
-   /**
 
-    * @operation get_boards_from_user
 
-    * @summary Get all boards attached to a user
 
-    *
 
-    * @param {string} userId the ID of the user to retrieve the data
 
-    * @return_type [{_id: string,
 
-                     title: string}]
 
-                     */
 
-   JsonRoutes.add('GET', '/api/users/:userId/boards', function(req, res) {
 
-     try {
 
-       Authentication.checkLoggedIn(req.userId);
 
-       const paramUserId = req.params.userId;
 
-       // A normal user should be able to see their own boards,
 
-       // admins can access boards of any user
 
-       Authentication.checkAdminOrCondition(
 
-         req.userId,
 
-         req.userId === paramUserId,
 
-       );
 
-       const data = Boards.find(
 
-         {
 
-           archived: false,
 
-           'members.userId': paramUserId,
 
-         },
 
-         {
 
-           sort: ['title'],
 
-         },
 
-       ).map(function(board) {
 
-         return {
 
-           _id: board._id,
 
-           title: board.title,
 
-         };
 
-       });
 
-       JsonRoutes.sendResult(res, { code: 200, data });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation get_public_boards
 
-    * @summary Get all public boards
 
-    *
 
-    * @return_type [{_id: string,
 
-                     title: string}]
 
-                     */
 
-   JsonRoutes.add('GET', '/api/boards', function(req, res) {
 
-     try {
 
-       Authentication.checkUserId(req.userId);
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: Boards.find({ permission: 'public' }).map(function(doc) {
 
-           return {
 
-             _id: doc._id,
 
-             title: doc.title,
 
-           };
 
-         }),
 
-       });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation get_board
 
-    * @summary Get the board with that particular ID
 
-    *
 
-    * @param {string} boardId the ID of the board to retrieve the data
 
-    * @return_type Boards
 
-    */
 
-   JsonRoutes.add('GET', '/api/boards/:boardId', function(req, res) {
 
-     try {
 
-       const id = req.params.boardId;
 
-       Authentication.checkBoardAccess(req.userId, id);
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: Boards.findOne({ _id: id }),
 
-       });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation new_board
 
-    * @summary Create a board
 
-    *
 
-    * @description This allows to create a board.
 
-    *
 
-    * The color has to be chosen between `belize`, `nephritis`, `pomegranate`,
 
-    * `pumpkin`, `wisteria`, `moderatepink`, `strongcyan`,
 
-    * `limegreen`, `midnight`, `dark`, `relax`, `corteza`:
 
-    *
 
-    * <img src="https://wekan.github.io/board-colors.png" width="40%" alt="Wekan logo" />
 
-    *
 
-    * @param {string} title the new title of the board
 
-    * @param {string} owner "ABCDE12345" <= User ID in Wekan.
 
-    *                 (Not username or email)
 
-    * @param {boolean} [isAdmin] is the owner an admin of the board (default true)
 
-    * @param {boolean} [isActive] is the board active (default true)
 
-    * @param {boolean} [isNoComments] disable comments (default false)
 
-    * @param {boolean} [isCommentOnly] only enable comments (default false)
 
-    * @param {string} [permission] "private" board <== Set to "public" if you
 
-    *                 want public Wekan board
 
-    * @param {string} [color] the color of the board
 
-    *
 
-    * @return_type {_id: string,
 
-                    defaultSwimlaneId: string}
 
-                    */
 
-   JsonRoutes.add('POST', '/api/boards', function(req, res) {
 
-     try {
 
-       Authentication.checkUserId(req.userId);
 
-       const id = Boards.insert({
 
-         title: req.body.title,
 
-         members: [
 
-           {
 
-             userId: req.body.owner,
 
-             isAdmin: req.body.isAdmin || true,
 
-             isActive: req.body.isActive || true,
 
-             isNoComments: req.body.isNoComments || false,
 
-             isCommentOnly: req.body.isCommentOnly || false,
 
-           },
 
-         ],
 
-         permission: req.body.permission || 'private',
 
-         color: req.body.color || 'belize',
 
-       });
 
-       const swimlaneId = Swimlanes.insert({
 
-         title: TAPi18n.__('default'),
 
-         boardId: id,
 
-       });
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: {
 
-           _id: id,
 
-           defaultSwimlaneId: swimlaneId,
 
-         },
 
-       });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation delete_board
 
-    * @summary Delete a board
 
-    *
 
-    * @param {string} boardId the ID of the board
 
-    */
 
-   JsonRoutes.add('DELETE', '/api/boards/:boardId', function(req, res) {
 
-     try {
 
-       Authentication.checkUserId(req.userId);
 
-       const id = req.params.boardId;
 
-       Boards.remove({ _id: id });
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: {
 
-           _id: id,
 
-         },
 
-       });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation add_board_label
 
-    * @summary Add a label to a board
 
-    *
 
-    * @description If the board doesn't have the name/color label, this function
 
-    * adds the label to the board.
 
-    *
 
-    * @param {string} boardId the board
 
-    * @param {string} color the color of the new label
 
-    * @param {string} name the name of the new label
 
-    *
 
-    * @return_type string
 
-    */
 
-   JsonRoutes.add('PUT', '/api/boards/:boardId/labels', function(req, res) {
 
-     Authentication.checkUserId(req.userId);
 
-     const id = req.params.boardId;
 
-     try {
 
-       if (req.body.hasOwnProperty('label')) {
 
-         const board = Boards.findOne({ _id: id });
 
-         const color = req.body.label.color;
 
-         const name = req.body.label.name;
 
-         const labelId = Random.id(6);
 
-         if (!board.getLabel(name, color)) {
 
-           Boards.direct.update(
 
-             { _id: id },
 
-             { $push: { labels: { _id: labelId, name, color } } },
 
-           );
 
-           JsonRoutes.sendResult(res, {
 
-             code: 200,
 
-             data: labelId,
 
-           });
 
-         } else {
 
-           JsonRoutes.sendResult(res, {
 
-             code: 200,
 
-           });
 
-         }
 
-       }
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
-   /**
 
-    * @operation set_board_member_permission
 
-    * @tag Users
 
-    * @summary Change the permission of a member of a board
 
-    *
 
-    * @param {string} boardId the ID of the board that we are changing
 
-    * @param {string} memberId the ID of the user to change permissions
 
-    * @param {boolean} isAdmin admin capability
 
-    * @param {boolean} isNoComments NoComments capability
 
-    * @param {boolean} isCommentOnly CommentsOnly capability
 
-    */
 
-   JsonRoutes.add('POST', '/api/boards/:boardId/members/:memberId', function(
 
-     req,
 
-     res,
 
-   ) {
 
-     try {
 
-       const boardId = req.params.boardId;
 
-       const memberId = req.params.memberId;
 
-       const { isAdmin, isNoComments, isCommentOnly } = req.body;
 
-       Authentication.checkBoardAccess(req.userId, boardId);
 
-       const board = Boards.findOne({ _id: boardId });
 
-       function isTrue(data) {
 
-         try {
 
-           return data.toLowerCase() === 'true';
 
-         } catch (error) {
 
-           return data;
 
-         }
 
-       }
 
-       const query = board.setMemberPermission(
 
-         memberId,
 
-         isTrue(isAdmin),
 
-         isTrue(isNoComments),
 
-         isTrue(isCommentOnly),
 
-         req.userId,
 
-       );
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: query,
 
-       });
 
-     } catch (error) {
 
-       JsonRoutes.sendResult(res, {
 
-         code: 200,
 
-         data: error,
 
-       });
 
-     }
 
-   });
 
- }
 
- export default Boards;
 
 
  |