| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433 | Cards = new Mongo.Collection('cards');// XXX To improve pub/sub performances a card document should include a// de-normalized number of comments so we don't have to publish the whole list// of comments just to display the number of them in the board view.Cards.attachSchema(  new SimpleSchema({    title: {      /**       * the title of the card       */      type: String,      optional: true,      defaultValue: '',    },    archived: {      /**       * is the card archived       */      type: Boolean,      // eslint-disable-next-line consistent-return      autoValue() {        // eslint-disable-line consistent-return        if (this.isInsert && !this.isSet) {          return false;        }      },    },    parentId: {      /**       * ID of the parent card       */      type: String,      optional: true,      defaultValue: '',    },    listId: {      /**       * List ID where the card is       */      type: String,      optional: true,      defaultValue: '',    },    swimlaneId: {      /**       * Swimlane ID where the card is       */      type: String,    },    // The system could work without this `boardId` information (we could deduce    // the board identifier from the card), but it would make the system more    // difficult to manage and less efficient.    boardId: {      /**       * Board ID of the card       */      type: String,      optional: true,      defaultValue: '',    },    coverId: {      /**       * Cover ID of the card       */      type: String,      optional: true,      defaultValue: '',    },    color: {      type: String,      optional: true,      allowedValues: [        'white',        'green',        'yellow',        'orange',        'red',        'purple',        'blue',        'sky',        'lime',        'pink',        'black',        'silver',        'peachpuff',        'crimson',        'plum',        'darkgreen',        'slateblue',        'magenta',        'gold',        'navy',        'gray',        'saddlebrown',        'paleturquoise',        'mistyrose',        'indigo',      ],    },    createdAt: {      /**       * creation date       */      type: Date,      // eslint-disable-next-line consistent-return      autoValue() {        if (this.isInsert) {          return new Date();        } else if (this.isUpsert) {          return { $setOnInsert: new Date() };        } else {          this.unset();        }      },    },    modifiedAt: {      type: Date,      denyUpdate: false,      // eslint-disable-next-line consistent-return      autoValue() {        if (this.isInsert || this.isUpsert || this.isUpdate) {          return new Date();        } else {          this.unset();        }      },    },    customFields: {      /**       * list of custom fields       */      type: [Object],      optional: true,      defaultValue: [],    },    'customFields.$': {      type: new SimpleSchema({        _id: {          /**           * the ID of the related custom field           */          type: String,          optional: true,          defaultValue: '',        },        value: {          /**           * value attached to the custom field           */          type: Match.OneOf(String, Number, Boolean, Date),          optional: true,          defaultValue: '',        },      }),    },    dateLastActivity: {      /**       * Date of last activity       */      type: Date,      autoValue() {        return new Date();      },    },    description: {      /**       * description of the card       */      type: String,      optional: true,      defaultValue: '',    },    requestedBy: {      /**       * who requested the card (ID of the user)       */      type: String,      optional: true,      defaultValue: '',    },    assignedBy: {      /**       * who assigned the card (ID of the user)       */      type: String,      optional: true,      defaultValue: '',    },    labelIds: {      /**       * list of labels ID the card has       */      type: [String],      optional: true,      defaultValue: [],    },    members: {      /**       * list of members (user IDs)       */      type: [String],      optional: true,      defaultValue: [],    },    assignees: {      /**       * who is assignee of the card (user ID),       * maximum one ID of assignee in array.       */      type: [String],      optional: true,      defaultValue: [],    },    receivedAt: {      /**       * Date the card was received       */      type: Date,      optional: true,    },    startAt: {      /**       * Date the card was started to be worked on       */      type: Date,      optional: true,    },    dueAt: {      /**       * Date the card is due       */      type: Date,      optional: true,    },    endAt: {      /**       * Date the card ended       */      type: Date,      optional: true,    },    spentTime: {      /**       * How much time has been spent on this       */      type: Number,      decimal: true,      optional: true,      defaultValue: 0,    },    isOvertime: {      /**       * is the card over time?       */      type: Boolean,      defaultValue: false,      optional: true,    },    // XXX Should probably be called `authorId`. Is it even needed since we have    // the `members` field?    userId: {      /**       * user ID of the author of the card       */      type: String,      // eslint-disable-next-line consistent-return      autoValue() {        // eslint-disable-line consistent-return        if (this.isInsert && !this.isSet) {          return this.userId;        }      },    },    sort: {      /**       * Sort value       */      type: Number,      decimal: true,      defaultValue: '',    },    subtaskSort: {      /**       * subtask sort value       */      type: Number,      decimal: true,      defaultValue: -1,      optional: true,    },    type: {      /**       * type of the card       */      type: String,      defaultValue: 'cardType-card',    },    linkedId: {      /**       * ID of the linked card       */      type: String,      optional: true,      defaultValue: '',    },  }),);Cards.allow({  insert(userId, doc) {    return allowIsBoardMember(userId, Boards.findOne(doc.boardId));  },  update(userId, doc) {    return allowIsBoardMember(userId, Boards.findOne(doc.boardId));  },  remove(userId, doc) {    return allowIsBoardMember(userId, Boards.findOne(doc.boardId));  },  fetch: ['boardId'],});Cards.helpers({  copy(boardId, swimlaneId, listId) {    const oldBoard = Boards.findOne(this.boardId);    const oldBoardLabels = oldBoard.labels;    // Get old label names    const oldCardLabels = _.pluck(      _.filter(oldBoardLabels, label => {        return _.contains(this.labelIds, label._id);      }),      'name',    );    const newBoard = Boards.findOne(boardId);    const newBoardLabels = newBoard.labels;    const newCardLabels = _.pluck(      _.filter(newBoardLabels, label => {        return _.contains(oldCardLabels, label.name);      }),      '_id',    );    const oldId = this._id;    const oldCard = Cards.findOne(oldId);    // Copy Custom Fields    if (oldBoard._id !== boardId) {      CustomFields.find({        _id: {          $in: oldCard.customFields.map(cf => {            return cf._id;          }),        },      }).forEach(cf => {        if (!_.contains(cf.boardIds, boardId)) cf.addBoard(boardId);      });    }    delete this._id;    delete this.labelIds;    this.labelIds = newCardLabels;    this.boardId = boardId;    this.swimlaneId = swimlaneId;    this.listId = listId;    const _id = Cards.insert(this);    // Copy attachments    oldCard.attachments().forEach(att => {      att.cardId = _id;      delete att._id;      return Attachments.insert(att);    });    // copy checklists    Checklists.find({ cardId: oldId }).forEach(ch => {      ch.copy(_id);    });    // copy subtasks    Cards.find({ parentId: oldId }).forEach(subtask => {      subtask.parentId = _id;      subtask._id = null;      Cards.insert(subtask);    });    // copy card comments    CardComments.find({ cardId: oldId }).forEach(cmt => {      cmt.copy(_id);    });    return _id;  },  list() {    return Lists.findOne(this.listId);  },  board() {    return Boards.findOne(this.boardId);  },  labels() {    const boardLabels = this.board().labels;    const cardLabels = _.filter(boardLabels, label => {      return _.contains(this.labelIds, label._id);    });    return cardLabels;  },  hasLabel(labelId) {    return _.contains(this.labelIds, labelId);  },  user() {    return Users.findOne(this.userId);  },  isAssigned(memberId) {    return _.contains(this.getMembers(), memberId);  },  isAssignee(assigneeId) {    return _.contains(this.getAssignees(), assigneeId);  },  activities() {    if (this.isLinkedCard()) {      return Activities.find(        { cardId: this.linkedId },        { sort: { createdAt: -1 } },      );    } else if (this.isLinkedBoard()) {      return Activities.find(        { boardId: this.linkedId },        { sort: { createdAt: -1 } },      );    } else {      return Activities.find({ cardId: this._id }, { sort: { createdAt: -1 } });    }  },  comments() {    if (this.isLinkedCard()) {      return CardComments.find(        { cardId: this.linkedId },        { sort: { createdAt: -1 } },      );    } else {      return CardComments.find(        { cardId: this._id },        { sort: { createdAt: -1 } },      );    }  },  attachments() {    if (this.isLinkedCard()) {      return Attachments.find(        { cardId: this.linkedId },        { sort: { uploadedAt: -1 } },      );    } else {      return Attachments.find(        { cardId: this._id },        { sort: { uploadedAt: -1 } },      );    }  },  cover() {    const cover = Attachments.findOne(this.coverId);    // if we return a cover before it is fully stored, we will get errors when we try to display it    // todo XXX we could return a default "upload pending" image in the meantime?    return cover && cover.url() && cover;  },  checklists() {    if (this.isLinkedCard()) {      return Checklists.find({ cardId: this.linkedId }, { sort: { sort: 1 } });    } else {      return Checklists.find({ cardId: this._id }, { sort: { sort: 1 } });    }  },  checklistItemCount() {    const checklists = this.checklists().fetch();    return checklists      .map(checklist => {        return checklist.itemCount();      })      .reduce((prev, next) => {        return prev + next;      }, 0);  },  checklistFinishedCount() {    const checklists = this.checklists().fetch();    return checklists      .map(checklist => {        return checklist.finishedCount();      })      .reduce((prev, next) => {        return prev + next;      }, 0);  },  checklistFinished() {    return (      this.hasChecklist() &&      this.checklistItemCount() === this.checklistFinishedCount()    );  },  hasChecklist() {    return this.checklistItemCount() !== 0;  },  subtasks() {    return Cards.find(      {        parentId: this._id,        archived: false,      },      {        sort: {          sort: 1,        },      },    );  },  allSubtasks() {    return Cards.find(      {        parentId: this._id,        archived: false,      },      {        sort: {          sort: 1,        },      },    );  },  subtasksCount() {    return Cards.find({      parentId: this._id,      archived: false,    }).count();  },  subtasksFinishedCount() {    return Cards.find({      parentId: this._id,      archived: true,    }).count();  },  subtasksFinished() {    const finishCount = this.subtasksFinishedCount();    return finishCount > 0 && this.subtasksCount() === finishCount;  },  allowsSubtasks() {    return this.subtasksCount() !== 0;  },  customFieldIndex(customFieldId) {    return _.pluck(this.customFields, '_id').indexOf(customFieldId);  },  // customFields with definitions  customFieldsWD() {    // get all definitions    const definitions = CustomFields.find({      boardIds: { $in: [this.boardId] },    }).fetch();    // match right definition to each field    if (!this.customFields) return [];    return this.customFields.map(customField => {      const definition = definitions.find(definition => {        return definition._id === customField._id;      });      if (!definition) {        return {};      }      //search for "True Value" which is for DropDowns other then the Value (which is the id)      let trueValue = customField.value;      if (        definition.settings.dropdownItems &&        definition.settings.dropdownItems.length > 0      ) {        for (let i = 0; i < definition.settings.dropdownItems.length; i++) {          if (definition.settings.dropdownItems[i]._id === customField.value) {            trueValue = definition.settings.dropdownItems[i].name;          }        }      }      return {        _id: customField._id,        value: customField.value,        trueValue,        definition,      };    });  },  colorClass() {    if (this.color) return this.color;    return '';  },  absoluteUrl() {    const board = this.board();    return FlowRouter.url('card', {      boardId: board._id,      slug: board.slug,      cardId: this._id,    });  },  canBeRestored() {    const list = Lists.findOne({      _id: this.listId,    });    if (      !list.getWipLimit('soft') &&      list.getWipLimit('enabled') &&      list.getWipLimit('value') === list.cards().count()    ) {      return false;    }    return true;  },  parentCard() {    if (this.parentId === '') {      return null;    }    return Cards.findOne(this.parentId);  },  parentCardName() {    let result = '';    if (this.parentId !== '') {      const card = Cards.findOne(this.parentId);      if (card) {        result = card.title;      }    }    return result;  },  parentListId() {    const result = [];    let crtParentId = this.parentId;    while (crtParentId !== '') {      const crt = Cards.findOne(crtParentId);      if (crt === null || crt === undefined) {        // maybe it has been deleted        break;      }      if (crtParentId in result) {        // circular reference        break;      }      result.unshift(crtParentId);      crtParentId = crt.parentId;    }    return result;  },  parentList() {    const resultId = [];    const result = [];    let crtParentId = this.parentId;    while (crtParentId !== '') {      const crt = Cards.findOne(crtParentId);      if (crt === null || crt === undefined) {        // maybe it has been deleted        break;      }      if (crtParentId in resultId) {        // circular reference        break;      }      resultId.unshift(crtParentId);      result.unshift(crt);      crtParentId = crt.parentId;    }    return result;  },  parentString(sep) {    return this.parentList()      .map(function(elem) {        return elem.title;      })      .join(sep);  },  isTopLevel() {    return this.parentId === '';  },  isLinkedCard() {    return this.type === 'cardType-linkedCard';  },  isLinkedBoard() {    return this.type === 'cardType-linkedBoard';  },  isLinked() {    return this.isLinkedCard() || this.isLinkedBoard();  },  setDescription(description) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { description } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { description } });    } else {      return Cards.update({ _id: this._id }, { $set: { description } });    }  },  getDescription() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      if (card && card.description) return card.description;      else return null;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      if (board && board.description) return board.description;      else return null;    } else if (this.description) {      return this.description;    } else {      return null;    }  },  getMembers() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.members;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.activeMembers().map(member => {        return member.userId;      });    } else {      return this.members;    }  },  getAssignees() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.assignees;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.activeMembers().map(assignee => {        return assignee.userId;      });    } else {      return this.assignees;    }  },  assignMember(memberId) {    if (this.isLinkedCard()) {      return Cards.update(        { _id: this.linkedId },        { $addToSet: { members: memberId } },      );    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.addMember(memberId);    } else {      return Cards.update(        { _id: this._id },        { $addToSet: { members: memberId } },      );    }  },  assignAssignee(assigneeId) {    if (this.isLinkedCard()) {      return Cards.update(        { _id: this.linkedId },        { $addToSet: { assignees: assigneeId } },      );    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.addAssignee(assigneeId);    } else {      return Cards.update(        { _id: this._id },        { $addToSet: { assignees: assigneeId } },      );    }  },  unassignMember(memberId) {    if (this.isLinkedCard()) {      return Cards.update(        { _id: this.linkedId },        { $pull: { members: memberId } },      );    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.removeMember(memberId);    } else {      return Cards.update({ _id: this._id }, { $pull: { members: memberId } });    }  },  unassignAssignee(assigneeId) {    if (this.isLinkedCard()) {      return Cards.update(        { _id: this.linkedId },        { $pull: { assignees: assigneeId } },      );    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.removeAssignee(assigneeId);    } else {      return Cards.update(        { _id: this._id },        { $pull: { assignees: assigneeId } },      );    }  },  toggleMember(memberId) {    if (this.getMembers() && this.getMembers().indexOf(memberId) > -1) {      return this.unassignMember(memberId);    } else {      return this.assignMember(memberId);    }  },  toggleAssignee(assigneeId) {    if (this.getAssignees() && this.getAssignees().indexOf(assigneeId) > -1) {      return this.unassignAssignee(assigneeId);    } else {      return this.assignAssignee(assigneeId);    }  },  getReceived() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.receivedAt;    } else {      return this.receivedAt;    }  },  setReceived(receivedAt) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { receivedAt } });    } else {      return Cards.update({ _id: this._id }, { $set: { receivedAt } });    }  },  getStart() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.startAt;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.startAt;    } else {      return this.startAt;    }  },  setStart(startAt) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { startAt } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { startAt } });    } else {      return Cards.update({ _id: this._id }, { $set: { startAt } });    }  },  getDue() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.dueAt;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.dueAt;    } else {      return this.dueAt;    }  },  setDue(dueAt) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { dueAt } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { dueAt } });    } else {      return Cards.update({ _id: this._id }, { $set: { dueAt } });    }  },  getEnd() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.endAt;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.endAt;    } else {      return this.endAt;    }  },  setEnd(endAt) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { endAt } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { endAt } });    } else {      return Cards.update({ _id: this._id }, { $set: { endAt } });    }  },  getIsOvertime() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.isOvertime;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.isOvertime;    } else {      return this.isOvertime;    }  },  setIsOvertime(isOvertime) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { isOvertime } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { isOvertime } });    } else {      return Cards.update({ _id: this._id }, { $set: { isOvertime } });    }  },  getSpentTime() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.spentTime;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.spentTime;    } else {      return this.spentTime;    }  },  setSpentTime(spentTime) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { spentTime } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { spentTime } });    } else {      return Cards.update({ _id: this._id }, { $set: { spentTime } });    }  },  getId() {    if (this.isLinked()) {      return this.linkedId;    } else {      return this._id;    }  },  getTitle() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.title;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.title;    } else {      return this.title;    }  },  getBoardTitle() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      const board = Boards.findOne({ _id: card.boardId });      return board.title;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.title;    } else {      const board = Boards.findOne({ _id: this.boardId });      return board.title;    }  },  setTitle(title) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { title } });    } else if (this.isLinkedBoard()) {      return Boards.update({ _id: this.linkedId }, { $set: { title } });    } else {      return Cards.update({ _id: this._id }, { $set: { title } });    }  },  getArchived() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.archived;    } else if (this.isLinkedBoard()) {      const board = Boards.findOne({ _id: this.linkedId });      return board.archived;    } else {      return this.archived;    }  },  setRequestedBy(requestedBy) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { requestedBy } });    } else {      return Cards.update({ _id: this._id }, { $set: { requestedBy } });    }  },  getRequestedBy() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.requestedBy;    } else {      return this.requestedBy;    }  },  setAssignedBy(assignedBy) {    if (this.isLinkedCard()) {      return Cards.update({ _id: this.linkedId }, { $set: { assignedBy } });    } else {      return Cards.update({ _id: this._id }, { $set: { assignedBy } });    }  },  getAssignedBy() {    if (this.isLinkedCard()) {      const card = Cards.findOne({ _id: this.linkedId });      return card.assignedBy;    } else {      return this.assignedBy;    }  },  isTemplateCard() {    return this.type === 'template-card';  },});Cards.mutations({  applyToChildren(funct) {    Cards.find({      parentId: this._id,    }).forEach(card => {      funct(card);    });  },  archive() {    this.applyToChildren(card => {      return card.archive();    });    return {      $set: {        archived: true,      },    };  },  restore() {    this.applyToChildren(card => {      return card.restore();    });    return {      $set: {        archived: false,      },    };  },  move(boardId, swimlaneId, listId, sort) {    // Copy Custom Fields    if (this.boardId !== boardId) {      CustomFields.find({        _id: {          $in: this.customFields.map(cf => {            return cf._id;          }),        },      }).forEach(cf => {        if (!_.contains(cf.boardIds, boardId)) cf.addBoard(boardId);      });    }    // Get label names    const oldBoard = Boards.findOne(this.boardId);    const oldBoardLabels = oldBoard.labels;    const oldCardLabels = _.pluck(      _.filter(oldBoardLabels, label => {        return _.contains(this.labelIds, label._id);      }),      'name',    );    const newBoard = Boards.findOne(boardId);    const newBoardLabels = newBoard.labels;    const newCardLabelIds = _.pluck(      _.filter(newBoardLabels, label => {        return label.name && _.contains(oldCardLabels, label.name);      }),      '_id',    );    const mutatedFields = {      boardId,      swimlaneId,      listId,      sort,      labelIds: newCardLabelIds,    };    Cards.update(this._id, {      $set: mutatedFields,    });  },  addLabel(labelId) {    return {      $addToSet: {        labelIds: labelId,      },    };  },  removeLabel(labelId) {    return {      $pull: {        labelIds: labelId,      },    };  },  toggleLabel(labelId) {    if (this.labelIds && this.labelIds.indexOf(labelId) > -1) {      return this.removeLabel(labelId);    } else {      return this.addLabel(labelId);    }  },  setColor(newColor) {    if (newColor === 'white') {      newColor = null;    }    return {      $set: {        color: newColor,      },    };  },  assignMember(memberId) {    return {      $addToSet: {        members: memberId,      },    };  },  assignAssignee(assigneeId) {    // If there is not any assignee, allow one assignee, not more.    if (this.getAssignees().length === 0) {      return {        $addToSet: {          assignees: assigneeId,        },      };    } else {      return false;    }  },  unassignMember(memberId) {    return {      $pull: {        members: memberId,      },    };  },  unassignAssignee(assigneeId) {    return {      $pull: {        assignees: assigneeId,      },    };  },  toggleMember(memberId) {    if (this.members && this.members.indexOf(memberId) > -1) {      return this.unassignMember(memberId);    } else {      return this.assignMember(memberId);    }  },  toggleAssignee(assigneeId) {    if (this.assignees && this.assignees.indexOf(assigneeId) > -1) {      return this.unassignAssignee(assigneeId);    } else {      return this.assignAssignee(assigneeId);    }  },  assignCustomField(customFieldId) {    return {      $addToSet: {        customFields: {          _id: customFieldId,          value: null,        },      },    };  },  unassignCustomField(customFieldId) {    return {      $pull: {        customFields: {          _id: customFieldId,        },      },    };  },  toggleCustomField(customFieldId) {    if (this.customFields && this.customFieldIndex(customFieldId) > -1) {      return this.unassignCustomField(customFieldId);    } else {      return this.assignCustomField(customFieldId);    }  },  setCustomField(customFieldId, value) {    // todo    const index = this.customFieldIndex(customFieldId);    if (index > -1) {      const update = {        $set: {},      };      update.$set[`customFields.${index}.value`] = value;      return update;    }    // TODO    // Ignatz 18.05.2018: Return null to silence ESLint. No Idea if that is correct    return null;  },  setCover(coverId) {    return {      $set: {        coverId,      },    };  },  unsetCover() {    return {      $unset: {        coverId: '',      },    };  },  setReceived(receivedAt) {    return {      $set: {        receivedAt,      },    };  },  unsetReceived() {    return {      $unset: {        receivedAt: '',      },    };  },  setStart(startAt) {    return {      $set: {        startAt,      },    };  },  unsetStart() {    return {      $unset: {        startAt: '',      },    };  },  setDue(dueAt) {    return {      $set: {        dueAt,      },    };  },  unsetDue() {    return {      $unset: {        dueAt: '',      },    };  },  setEnd(endAt) {    return {      $set: {        endAt,      },    };  },  unsetEnd() {    return {      $unset: {        endAt: '',      },    };  },  setOvertime(isOvertime) {    return {      $set: {        isOvertime,      },    };  },  setSpentTime(spentTime) {    return {      $set: {        spentTime,      },    };  },  unsetSpentTime() {    return {      $unset: {        spentTime: '',        isOvertime: false,      },    };  },  setParentId(parentId) {    return {      $set: {        parentId,      },    };  },});//FUNCTIONS FOR creation of Activitiesfunction updateActivities(doc, fieldNames, modifier) {  if (_.contains(fieldNames, 'labelIds') && _.contains(fieldNames, 'boardId')) {    Activities.find({      activityType: 'addedLabel',      cardId: doc._id,    }).forEach(a => {      const lidx = doc.labelIds.indexOf(a.labelId);      if (lidx !== -1 && modifier.$set.labelIds.length > lidx) {        Activities.update(a._id, {          $set: {            labelId: modifier.$set.labelIds[doc.labelIds.indexOf(a.labelId)],            boardId: modifier.$set.boardId,          },        });      } else {        Activities.remove(a._id);      }    });  } else if (_.contains(fieldNames, 'boardId')) {    Activities.remove({      activityType: 'addedLabel',      cardId: doc._id,    });  }}function cardMove(  userId,  doc,  fieldNames,  oldListId,  oldSwimlaneId,  oldBoardId,) {  if (_.contains(fieldNames, 'boardId') && doc.boardId !== oldBoardId) {    Activities.insert({      userId,      activityType: 'moveCardBoard',      boardName: Boards.findOne(doc.boardId).title,      boardId: doc.boardId,      oldBoardId,      oldBoardName: Boards.findOne(oldBoardId).title,      cardId: doc._id,      swimlaneName: Swimlanes.findOne(doc.swimlaneId).title,      swimlaneId: doc.swimlaneId,      oldSwimlaneId,    });  } else if (    (_.contains(fieldNames, 'listId') && doc.listId !== oldListId) ||    (_.contains(fieldNames, 'swimlaneId') && doc.swimlaneId !== oldSwimlaneId)  ) {    Activities.insert({      userId,      oldListId,      activityType: 'moveCard',      listName: Lists.findOne(doc.listId).title,      listId: doc.listId,      boardId: doc.boardId,      cardId: doc._id,      cardTitle: doc.title,      swimlaneName: Swimlanes.findOne(doc.swimlaneId).title,      swimlaneId: doc.swimlaneId,      oldSwimlaneId,    });  }}function cardState(userId, doc, fieldNames) {  if (_.contains(fieldNames, 'archived')) {    if (doc.archived) {      Activities.insert({        userId,        activityType: 'archivedCard',        listName: Lists.findOne(doc.listId).title,        boardId: doc.boardId,        listId: doc.listId,        cardId: doc._id,        swimlaneId: doc.swimlaneId,      });    } else {      Activities.insert({        userId,        activityType: 'restoredCard',        boardId: doc.boardId,        listName: Lists.findOne(doc.listId).title,        listId: doc.listId,        cardId: doc._id,        swimlaneId: doc.swimlaneId,      });    }  }}function cardMembers(userId, doc, fieldNames, modifier) {  if (!_.contains(fieldNames, 'members')) return;  let memberId;  // Say hello to the new member  if (modifier.$addToSet && modifier.$addToSet.members) {    memberId = modifier.$addToSet.members;    const username = Users.findOne(memberId).username;    if (!_.contains(doc.members, memberId)) {      Activities.insert({        userId,        username,        activityType: 'joinMember',        boardId: doc.boardId,        cardId: doc._id,        memberId,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      });    }  }  // Say goodbye to the former member  if (modifier.$pull && modifier.$pull.members) {    memberId = modifier.$pull.members;    const username = Users.findOne(memberId).username;    // Check that the former member is member of the card    if (_.contains(doc.members, memberId)) {      Activities.insert({        userId,        username,        activityType: 'unjoinMember',        boardId: doc.boardId,        cardId: doc._id,        memberId,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      });    }  }}function cardAssignees(userId, doc, fieldNames, modifier) {  if (!_.contains(fieldNames, 'assignees')) return;  let assigneeId;  // Say hello to the new assignee  if (modifier.$addToSet && modifier.$addToSet.assignees) {    assigneeId = modifier.$addToSet.assignees;    const username = Users.findOne(assigneeId).username;    if (!_.contains(doc.assignees, assigneeId)) {      Activities.insert({        userId,        username,        activityType: 'joinAssignee',        boardId: doc.boardId,        cardId: doc._id,        assigneeId,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      });    }  }  // Say goodbye to the former assignee  if (modifier.$pull && modifier.$pull.assignees) {    assigneeId = modifier.$pull.assignees;    const username = Users.findOne(assigneeId).username;    // Check that the former assignee is assignee of the card    if (_.contains(doc.assignees, assigneeId)) {      Activities.insert({        userId,        username,        activityType: 'unjoinAssignee',        boardId: doc.boardId,        cardId: doc._id,        assigneeId,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      });    }  }}function cardLabels(userId, doc, fieldNames, modifier) {  if (!_.contains(fieldNames, 'labelIds')) return;  let labelId;  // Say hello to the new label  if (modifier.$addToSet && modifier.$addToSet.labelIds) {    labelId = modifier.$addToSet.labelIds;    if (!_.contains(doc.labelIds, labelId)) {      const act = {        userId,        labelId,        activityType: 'addedLabel',        boardId: doc.boardId,        cardId: doc._id,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      };      Activities.insert(act);    }  }  // Say goodbye to the label  if (modifier.$pull && modifier.$pull.labelIds) {    labelId = modifier.$pull.labelIds;    // Check that the former member is member of the card    if (_.contains(doc.labelIds, labelId)) {      Activities.insert({        userId,        labelId,        activityType: 'removedLabel',        boardId: doc.boardId,        cardId: doc._id,        listId: doc.listId,        swimlaneId: doc.swimlaneId,      });    }  }}function cardCustomFields(userId, doc, fieldNames, modifier) {  if (!_.contains(fieldNames, 'customFields')) return;  // Say hello to the new customField value  if (modifier.$set) {    _.each(modifier.$set, (value, key) => {      if (key.startsWith('customFields')) {        const dotNotation = key.split('.');        // only individual changes are registered        if (dotNotation.length > 1) {          const customFieldId = doc.customFields[dotNotation[1]]._id;          const act = {            userId,            customFieldId,            value,            activityType: 'setCustomField',            boardId: doc.boardId,            cardId: doc._id,          };          Activities.insert(act);        }      }    });  }  // Say goodbye to the former customField value  if (modifier.$unset) {    _.each(modifier.$unset, (value, key) => {      if (key.startsWith('customFields')) {        const dotNotation = key.split('.');        // only individual changes are registered        if (dotNotation.length > 1) {          const customFieldId = doc.customFields[dotNotation[1]]._id;          const act = {            userId,            customFieldId,            activityType: 'unsetCustomField',            boardId: doc.boardId,            cardId: doc._id,          };          Activities.insert(act);        }      }    });  }}function cardCreation(userId, doc) {  Activities.insert({    userId,    activityType: 'createCard',    boardId: doc.boardId,    listName: Lists.findOne(doc.listId).title,    listId: doc.listId,    cardId: doc._id,    cardTitle: doc.title,    swimlaneName: Swimlanes.findOne(doc.swimlaneId).title,    swimlaneId: doc.swimlaneId,  });}function cardRemover(userId, doc) {  ChecklistItems.remove({    cardId: doc._id,  });  Checklists.remove({    cardId: doc._id,  });  Cards.remove({    parentId: doc._id,  });  CardComments.remove({    cardId: doc._id,  });  Attachments.remove({    cardId: doc._id,  });}const findDueCards = days => {  const seekDue = ($from, $to, activityType) => {    Cards.find({      archived: false,      dueAt: { $gte: $from, $lt: $to },    }).forEach(card => {      const username = Users.findOne(card.userId).username;      const activity = {        userId: card.userId,        username,        activityType,        boardId: card.boardId,        cardId: card._id,        cardTitle: card.title,        listId: card.listId,        timeValue: card.dueAt,        swimlaneId: card.swimlaneId,      };      Activities.insert(activity);    });  };  const now = new Date(),    aday = 3600 * 24 * 1e3,    then = day => new Date(now.setHours(0, 0, 0, 0) + day * aday);  if (!days) return;  if (!days.map) days = [days];  days.map(day => {    let args = [];    if (day === 0) {      args = [then(0), then(1), 'duenow'];    } else if (day > 0) {      args = [then(1), then(day), 'almostdue'];    } else {      args = [then(day), now, 'pastdue'];    }    seekDue(...args);  });};const addCronJob = _.debounce(  Meteor.bindEnvironment(function findDueCardsDebounced() {    const envValue = process.env.NOTIFY_DUE_DAYS_BEFORE_AND_AFTER;    if (!envValue) {      return;    }    const notifydays = envValue      .split(',')      .map(value => {        const iValue = parseInt(value, 10);        if (!(iValue > 0 && iValue < 15)) {          // notifying due is disabled          return false;        } else {          return iValue;        }      })      .filter(Boolean);    const notifyitvl = process.env.NOTIFY_DUE_AT_HOUR_OF_DAY; //passed in the itvl has to be a number standing for the hour of current time    const defaultitvl = 8; // default every morning at 8am, if the passed env variable has parsing error use default    const itvl = parseInt(notifyitvl, 10) || defaultitvl;    const scheduler = (job => () => {      const now = new Date();      const hour = 3600 * 1e3;      if (now.getHours() === itvl) {        if (typeof job === 'function') {          job();        }      }      Meteor.setTimeout(scheduler, hour);    })(() => {      findDueCards(notifydays);    });    scheduler();  }),  500,);if (Meteor.isServer) {  // Cards are often fetched within a board, so we create an index to make these  // queries more efficient.  Meteor.startup(() => {    Cards._collection._ensureIndex({ modifiedAt: -1 });    Cards._collection._ensureIndex({ boardId: 1, createdAt: -1 });    // https://github.com/wekan/wekan/issues/1863    // Swimlane added a new field in the cards collection of mongodb named parentId.    // When loading a board, mongodb is searching for every cards, the id of the parent (in the swinglanes collection).    // With a huge database, this result in a very slow app and high CPU on the mongodb side.    // To correct it, add Index to parentId:    Cards._collection._ensureIndex({ parentId: 1 });    // let notifydays = parseInt(process.env.NOTIFY_DUE_DAYS_BEFORE_AND_AFTER) || 2; // default as 2 days b4 and after    // let notifyitvl = parseInt(process.env.NOTIFY_DUE_AT_HOUR_OF_DAY) || 3600 * 24 * 1e3; // default interval as one day    // Meteor.call("findDueCards",notifydays,notifyitvl);    Meteor.defer(() => {      addCronJob();    });  });  Cards.after.insert((userId, doc) => {    cardCreation(userId, doc);  });  // New activity for card (un)archivage  Cards.after.update((userId, doc, fieldNames) => {    cardState(userId, doc, fieldNames);  });  //New activity for card moves  Cards.after.update(function(userId, doc, fieldNames) {    const oldListId = this.previous.listId;    const oldSwimlaneId = this.previous.swimlaneId;    const oldBoardId = this.previous.boardId;    cardMove(userId, doc, fieldNames, oldListId, oldSwimlaneId, oldBoardId);  });  // Add a new activity if we add or remove a member to the card  Cards.before.update((userId, doc, fieldNames, modifier) => {    cardMembers(userId, doc, fieldNames, modifier);    updateActivities(doc, fieldNames, modifier);  });  // Add a new activity if we add or remove a assignee to the card  Cards.before.update((userId, doc, fieldNames, modifier) => {    cardAssignees(userId, doc, fieldNames, modifier);    updateActivities(doc, fieldNames, modifier);  });  // Add a new activity if we add or remove a label to the card  Cards.before.update((userId, doc, fieldNames, modifier) => {    cardLabels(userId, doc, fieldNames, modifier);  });  // Add a new activity if we edit a custom field  Cards.before.update((userId, doc, fieldNames, modifier) => {    cardCustomFields(userId, doc, fieldNames, modifier);  });  // Add a new activity if modify time related field like dueAt startAt etc  Cards.before.update((userId, doc, fieldNames, modifier) => {    const dla = 'dateLastActivity';    const fields = fieldNames.filter(name => name !== dla);    const timingaction = ['receivedAt', 'dueAt', 'startAt', 'endAt'];    const action = fields[0];    if (fields.length > 0 && _.contains(timingaction, action)) {      // add activities for user change these attributes      const value = modifier.$set[action];      const oldvalue = doc[action] || '';      const activityType = `a-${action}`;      const card = Cards.findOne(doc._id);      const list = card.list();      if (list) {        // change list modifiedAt, when user modified the key values in timingaction array, if it's endAt, put the modifiedAt of list back to one year ago for sorting purpose        const modifiedAt = new Date(          new Date(value).getTime() -            (action === 'endAt' ? 365 * 24 * 3600 * 1e3 : 0),        ); // set it as 1 year before        const boardId = list.boardId;        Lists.direct.update(          {            _id: list._id,          },          {            $set: {              modifiedAt,              boardId,            },          },        );      }      const username = Users.findOne(userId).username;      const activity = {        userId,        username,        activityType,        boardId: doc.boardId,        cardId: doc._id,        cardTitle: doc.title,        timeKey: action,        timeValue: value,        timeOldValue: oldvalue,        listId: card.listId,        swimlaneId: card.swimlaneId,      };      Activities.insert(activity);    }  });  // Remove all activities associated with a card if we remove the card  // Remove also card_comments / checklists / attachments  Cards.before.remove((userId, doc) => {    cardRemover(userId, doc);  });}//SWIMLANES REST APIif (Meteor.isServer) {  /**   * @operation get_swimlane_cards   * @summary get all cards attached to a swimlane   *   * @param {string} boardId the board ID   * @param {string} swimlaneId the swimlane ID   * @return_type [{_id: string,   *                title: string,   *                description: string,   *                listId: string}]   */  JsonRoutes.add(    'GET',    '/api/boards/:boardId/swimlanes/:swimlaneId/cards',    function(req, res) {      const paramBoardId = req.params.boardId;      const paramSwimlaneId = req.params.swimlaneId;      Authentication.checkBoardAccess(req.userId, paramBoardId);      JsonRoutes.sendResult(res, {        code: 200,        data: Cards.find({          boardId: paramBoardId,          swimlaneId: paramSwimlaneId,          archived: false,        }).map(function(doc) {          return {            _id: doc._id,            title: doc.title,            description: doc.description,            listId: doc.listId,          };        }),      });    },  );}//LISTS REST APIif (Meteor.isServer) {  /**   * @operation get_all_cards   * @summary Get all Cards attached to a List   *   * @param {string} boardId the board ID   * @param {string} listId the list ID   * @return_type [{_id: string,   *                title: string,   *                description: string}]   */  JsonRoutes.add('GET', '/api/boards/:boardId/lists/:listId/cards', function(    req,    res,  ) {    const paramBoardId = req.params.boardId;    const paramListId = req.params.listId;    Authentication.checkBoardAccess(req.userId, paramBoardId);    JsonRoutes.sendResult(res, {      code: 200,      data: Cards.find({        boardId: paramBoardId,        listId: paramListId,        archived: false,      }).map(function(doc) {        return {          _id: doc._id,          title: doc.title,          description: doc.description,        };      }),    });  });  /**   * @operation get_card   * @summary Get a Card   *   * @param {string} boardId the board ID   * @param {string} listId the list ID of the card   * @param {string} cardId the card ID   * @return_type Cards   */  JsonRoutes.add(    'GET',    '/api/boards/:boardId/lists/:listId/cards/:cardId',    function(req, res) {      const paramBoardId = req.params.boardId;      const paramListId = req.params.listId;      const paramCardId = req.params.cardId;      Authentication.checkBoardAccess(req.userId, paramBoardId);      JsonRoutes.sendResult(res, {        code: 200,        data: Cards.findOne({          _id: paramCardId,          listId: paramListId,          boardId: paramBoardId,          archived: false,        }),      });    },  );  /**   * @operation new_card   * @summary Create a new Card   *   * @param {string} boardId the board ID of the new card   * @param {string} listId the list ID of the new card   * @param {string} authorID the user ID of the person owning the card   * @param {string} parentId the parent ID of the new card   * @param {string} title the title of the new card   * @param {string} description the description of the new card   * @param {string} swimlaneId the swimlane ID of the new card   * @param {string} [members] the member IDs list of the new card   * @param {string} [assignees] the array of maximum one ID of assignee of the new card   * @return_type {_id: string}   */  JsonRoutes.add('POST', '/api/boards/:boardId/lists/:listId/cards', function(    req,    res,  ) {    // Check user is logged in    Authentication.checkLoggedIn(req.userId);    const paramBoardId = req.params.boardId;    // Check user has permission to add card to the board    const board = Boards.findOne({      _id: paramBoardId,    });    const addPermission = allowIsBoardMemberCommentOnly(req.userId, board);    Authentication.checkAdminOrCondition(req.userId, addPermission);    const paramListId = req.params.listId;    const paramParentId = req.params.parentId;    const currentCards = Cards.find(      {        listId: paramListId,        archived: false,      },      { sort: ['sort'] },    );    const check = Users.findOne({      _id: req.body.authorId,    });    const members = req.body.members || [req.body.authorId];    const assignees = req.body.assignees;    if (typeof check !== 'undefined') {      const id = Cards.direct.insert({        title: req.body.title,        boardId: paramBoardId,        listId: paramListId,        parentId: paramParentId,        description: req.body.description,        userId: req.body.authorId,        swimlaneId: req.body.swimlaneId,        sort: currentCards.count(),        members,        assignees,      });      JsonRoutes.sendResult(res, {        code: 200,        data: {          _id: id,        },      });      const card = Cards.findOne({        _id: id,      });      cardCreation(req.body.authorId, card);    } else {      JsonRoutes.sendResult(res, {        code: 401,      });    }  });  /*   * Note for the JSDoc:   * 'list' will be interpreted as the path parameter   * 'listID' will be interpreted as the body parameter   */  /**   * @operation edit_card   * @summary Edit Fields in a Card   *   * @description Edit a card   *   * The color has to be chosen between `white`, `green`, `yellow`, `orange`,   * `red`, `purple`, `blue`, `sky`, `lime`, `pink`, `black`, `silver`,   * `peachpuff`, `crimson`, `plum`, `darkgreen`, `slateblue`, `magenta`,   * `gold`, `navy`, `gray`, `saddlebrown`, `paleturquoise`, `mistyrose`,   * `indigo`:   *   * <img src="/card-colors.png" width="40%" alt="Wekan card colors" />   *   * Note: setting the color to white has the same effect than removing it.   *   * @param {string} boardId the board ID of the card   * @param {string} list the list ID of the card   * @param {string} cardId the ID of the card   * @param {string} [title] the new title of the card   * @param {string} [listId] the new list ID of the card (move operation)   * @param {string} [description] the new description of the card   * @param {string} [authorId] change the owner of the card   * @param {string} [parentId] change the parent of the card   * @param {string} [labelIds] the new list of label IDs attached to the card   * @param {string} [swimlaneId] the new swimlane ID of the card   * @param {string} [members] the new list of member IDs attached to the card   * @param {string} [assignees] the array of maximum one ID of assignee attached to the card   * @param {string} [requestedBy] the new requestedBy field of the card   * @param {string} [assignedBy] the new assignedBy field of the card   * @param {string} [receivedAt] the new receivedAt field of the card   * @param {string} [assignBy] the new assignBy field of the card   * @param {string} [startAt] the new startAt field of the card   * @param {string} [dueAt] the new dueAt field of the card   * @param {string} [endAt] the new endAt field of the card   * @param {string} [spentTime] the new spentTime field of the card   * @param {boolean} [isOverTime] the new isOverTime field of the card   * @param {string} [customFields] the new customFields value of the card   * @param {string} [color] the new color of the card   * @return_type {_id: string}   */  JsonRoutes.add(    'PUT',    '/api/boards/:boardId/lists/:listId/cards/:cardId',    function(req, res) {      Authentication.checkUserId(req.userId);      const paramBoardId = req.params.boardId;      const paramCardId = req.params.cardId;      const paramListId = req.params.listId;      if (req.body.hasOwnProperty('title')) {        const newTitle = req.body.title;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          {            $set: {              title: newTitle,            },          },        );      }      if (req.body.hasOwnProperty('listId')) {        const newParamListId = req.body.listId;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          {            $set: {              listId: newParamListId,            },          },        );        const card = Cards.findOne({          _id: paramCardId,        });        cardMove(          req.body.authorId,          card,          {            fieldName: 'listId',          },          paramListId,        );      }      if (req.body.hasOwnProperty('parentId')) {        const newParentId = req.body.parentId;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          {            $set: {              parentId: newParentId,            },          },        );      }      if (req.body.hasOwnProperty('description')) {        const newDescription = req.body.description;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          {            $set: {              description: newDescription,            },          },        );      }      if (req.body.hasOwnProperty('color')) {        const newColor = req.body.color;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { color: newColor } },        );      }      if (req.body.hasOwnProperty('labelIds')) {        let newlabelIds = req.body.labelIds;        if (_.isString(newlabelIds)) {          if (newlabelIds === '') {            newlabelIds = null;          } else {            newlabelIds = [newlabelIds];          }        }        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          {            $set: {              labelIds: newlabelIds,            },          },        );      }      if (req.body.hasOwnProperty('requestedBy')) {        const newrequestedBy = req.body.requestedBy;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { requestedBy: newrequestedBy } },        );      }      if (req.body.hasOwnProperty('assignedBy')) {        const newassignedBy = req.body.assignedBy;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { assignedBy: newassignedBy } },        );      }      if (req.body.hasOwnProperty('receivedAt')) {        const newreceivedAt = req.body.receivedAt;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { receivedAt: newreceivedAt } },        );      }      if (req.body.hasOwnProperty('startAt')) {        const newstartAt = req.body.startAt;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { startAt: newstartAt } },        );      }      if (req.body.hasOwnProperty('dueAt')) {        const newdueAt = req.body.dueAt;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { dueAt: newdueAt } },        );      }      if (req.body.hasOwnProperty('endAt')) {        const newendAt = req.body.endAt;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { endAt: newendAt } },        );      }      if (req.body.hasOwnProperty('spentTime')) {        const newspentTime = req.body.spentTime;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { spentTime: newspentTime } },        );      }      if (req.body.hasOwnProperty('isOverTime')) {        const newisOverTime = req.body.isOverTime;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { isOverTime: newisOverTime } },        );      }      if (req.body.hasOwnProperty('customFields')) {        const newcustomFields = req.body.customFields;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { customFields: newcustomFields } },        );      }      if (req.body.hasOwnProperty('members')) {        let newmembers = req.body.members;        if (_.isString(newmembers)) {          if (newmembers === '') {            newmembers = null;          } else {            newmembers = [newmembers];          }        }        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { members: newmembers } },        );      }      if (req.body.hasOwnProperty('assignees')) {        let newassignees = req.body.assignees;        if (_.isString(newassignees)) {          if (newassignees === '') {            newassignees = null;          } else {            newassignees = [newassignees];          }        }        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { assignees: newassignees } },        );      }      if (req.body.hasOwnProperty('swimlaneId')) {        const newParamSwimlaneId = req.body.swimlaneId;        Cards.direct.update(          {            _id: paramCardId,            listId: paramListId,            boardId: paramBoardId,            archived: false,          },          { $set: { swimlaneId: newParamSwimlaneId } },        );      }      JsonRoutes.sendResult(res, {        code: 200,        data: {          _id: paramCardId,        },      });    },  );  /**   * @operation delete_card   * @summary Delete a card from a board   *   * @description This operation **deletes** a card, and therefore the card   * is not put in the recycle bin.   *   * @param {string} boardId the board ID of the card   * @param {string} list the list ID of the card   * @param {string} cardId the ID of the card   * @return_type {_id: string}   */  JsonRoutes.add(    'DELETE',    '/api/boards/:boardId/lists/:listId/cards/:cardId',    function(req, res) {      Authentication.checkUserId(req.userId);      const paramBoardId = req.params.boardId;      const paramListId = req.params.listId;      const paramCardId = req.params.cardId;      const card = Cards.findOne({        _id: paramCardId,      });      Cards.direct.remove({        _id: paramCardId,        listId: paramListId,        boardId: paramBoardId,      });      cardRemover(req.body.authorId, card);      JsonRoutes.sendResult(res, {        code: 200,        data: {          _id: paramCardId,        },      });    },  );}export default Cards;
 |