users.js 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  1. //var nodemailer = require('nodemailer');
  2. import { SyncedCron } from 'meteor/percolate:synced-cron';
  3. import ImpersonatedUsers from './impersonatedUsers';
  4. // Sandstorm context is detected using the METEOR_SETTINGS environment variable
  5. // in the package definition.
  6. const isSandstorm =
  7. Meteor.settings && Meteor.settings.public && Meteor.settings.public.sandstorm;
  8. Users = Meteor.users;
  9. const allowedSortValues = [
  10. '-modifiedAt',
  11. 'modifiedAt',
  12. '-title',
  13. 'title',
  14. '-sort',
  15. 'sort',
  16. ];
  17. const defaultSortBy = allowedSortValues[0];
  18. /**
  19. * A User in wekan
  20. */
  21. Users.attachSchema(
  22. new SimpleSchema({
  23. username: {
  24. /**
  25. * the username of the user
  26. */
  27. type: String,
  28. optional: true,
  29. // eslint-disable-next-line consistent-return
  30. autoValue() {
  31. if (this.isInsert && !this.isSet) {
  32. const name = this.field('profile.fullname');
  33. if (name.isSet) {
  34. return name.value.toLowerCase().replace(/\s/g, '');
  35. }
  36. }
  37. },
  38. },
  39. orgs: {
  40. /**
  41. * the list of organizations that a user belongs to
  42. */
  43. type: [Object],
  44. optional: true,
  45. },
  46. 'orgs.$.orgId':{
  47. /**
  48. * The uniq ID of the organization
  49. */
  50. type: String,
  51. },
  52. 'orgs.$.orgDisplayName':{
  53. /**
  54. * The display name of the organization
  55. */
  56. type: String,
  57. },
  58. teams: {
  59. /**
  60. * the list of teams that a user belongs to
  61. */
  62. type: [Object],
  63. optional: true,
  64. },
  65. 'teams.$.teamId':{
  66. /**
  67. * The uniq ID of the team
  68. */
  69. type: String,
  70. },
  71. 'teams.$.teamDisplayName':{
  72. /**
  73. * The display name of the team
  74. */
  75. type: String,
  76. },
  77. emails: {
  78. /**
  79. * the list of emails attached to a user
  80. */
  81. type: [Object],
  82. optional: true,
  83. },
  84. 'emails.$.address': {
  85. /**
  86. * The email address
  87. */
  88. type: String,
  89. regEx: SimpleSchema.RegEx.Email,
  90. },
  91. 'emails.$.verified': {
  92. /**
  93. * Has the email been verified
  94. */
  95. type: Boolean,
  96. },
  97. createdAt: {
  98. /**
  99. * creation date of the user
  100. */
  101. type: Date,
  102. // eslint-disable-next-line consistent-return
  103. autoValue() {
  104. if (this.isInsert) {
  105. return new Date();
  106. } else if (this.isUpsert) {
  107. return {
  108. $setOnInsert: new Date(),
  109. };
  110. } else {
  111. this.unset();
  112. }
  113. },
  114. },
  115. modifiedAt: {
  116. type: Date,
  117. denyUpdate: false,
  118. // eslint-disable-next-line consistent-return
  119. autoValue() {
  120. if (this.isInsert || this.isUpsert || this.isUpdate) {
  121. return new Date();
  122. } else {
  123. this.unset();
  124. }
  125. },
  126. },
  127. profile: {
  128. /**
  129. * profile settings
  130. */
  131. type: Object,
  132. optional: true,
  133. // eslint-disable-next-line consistent-return
  134. autoValue() {
  135. if (this.isInsert && !this.isSet) {
  136. return {
  137. boardView: 'board-view-swimlanes',
  138. };
  139. }
  140. },
  141. },
  142. 'profile.avatarUrl': {
  143. /**
  144. * URL of the avatar of the user
  145. */
  146. type: String,
  147. optional: true,
  148. },
  149. 'profile.emailBuffer': {
  150. /**
  151. * list of email buffers of the user
  152. */
  153. type: [String],
  154. optional: true,
  155. },
  156. 'profile.fullname': {
  157. /**
  158. * full name of the user
  159. */
  160. type: String,
  161. optional: true,
  162. },
  163. 'profile.showDesktopDragHandles': {
  164. /**
  165. * does the user want to show desktop drag handles?
  166. */
  167. type: Boolean,
  168. optional: true,
  169. },
  170. 'profile.hideCheckedItems': {
  171. /**
  172. * does the user want to hide checked checklist items?
  173. */
  174. type: Boolean,
  175. optional: true,
  176. },
  177. 'profile.cardMaximized': {
  178. /**
  179. * has user clicked maximize card?
  180. */
  181. type: Boolean,
  182. optional: true,
  183. },
  184. 'profile.customFieldsGrid': {
  185. /**
  186. * has user at card Custom Fields have Grid (false) or one per row (true) layout?
  187. */
  188. type: Boolean,
  189. optional: true,
  190. },
  191. 'profile.hiddenSystemMessages': {
  192. /**
  193. * does the user want to hide system messages?
  194. */
  195. type: Boolean,
  196. optional: true,
  197. },
  198. 'profile.hiddenMinicardLabelText': {
  199. /**
  200. * does the user want to hide minicard label texts?
  201. */
  202. type: Boolean,
  203. optional: true,
  204. },
  205. 'profile.initials': {
  206. /**
  207. * initials of the user
  208. */
  209. type: String,
  210. optional: true,
  211. },
  212. 'profile.invitedBoards': {
  213. /**
  214. * board IDs the user has been invited to
  215. */
  216. type: [String],
  217. optional: true,
  218. },
  219. 'profile.language': {
  220. /**
  221. * language of the user
  222. */
  223. type: String,
  224. optional: true,
  225. },
  226. 'profile.notifications': {
  227. /**
  228. * enabled notifications for the user
  229. */
  230. type: [Object],
  231. optional: true,
  232. },
  233. 'profile.notifications.$.activity': {
  234. /**
  235. * The id of the activity this notification references
  236. */
  237. type: String,
  238. },
  239. 'profile.notifications.$.read': {
  240. /**
  241. * the date on which this notification was read
  242. */
  243. type: Date,
  244. optional: true,
  245. },
  246. 'profile.showCardsCountAt': {
  247. /**
  248. * showCardCountAt field of the user
  249. */
  250. type: Number,
  251. optional: true,
  252. },
  253. 'profile.startDayOfWeek': {
  254. /**
  255. * startDayOfWeek field of the user
  256. */
  257. type: Number,
  258. optional: true,
  259. },
  260. 'profile.starredBoards': {
  261. /**
  262. * list of starred board IDs
  263. */
  264. type: [String],
  265. optional: true,
  266. },
  267. 'profile.icode': {
  268. /**
  269. * icode
  270. */
  271. type: String,
  272. optional: true,
  273. },
  274. 'profile.boardView': {
  275. /**
  276. * boardView field of the user
  277. */
  278. type: String,
  279. optional: true,
  280. allowedValues: [
  281. 'board-view-swimlanes',
  282. 'board-view-lists',
  283. 'board-view-cal',
  284. ],
  285. },
  286. 'profile.listSortBy': {
  287. /**
  288. * default sort list for user
  289. */
  290. type: String,
  291. optional: true,
  292. defaultValue: defaultSortBy,
  293. allowedValues: allowedSortValues,
  294. },
  295. 'profile.templatesBoardId': {
  296. /**
  297. * Reference to the templates board
  298. */
  299. type: String,
  300. defaultValue: '',
  301. },
  302. 'profile.cardTemplatesSwimlaneId': {
  303. /**
  304. * Reference to the card templates swimlane Id
  305. */
  306. type: String,
  307. defaultValue: '',
  308. },
  309. 'profile.listTemplatesSwimlaneId': {
  310. /**
  311. * Reference to the list templates swimlane Id
  312. */
  313. type: String,
  314. defaultValue: '',
  315. },
  316. 'profile.boardTemplatesSwimlaneId': {
  317. /**
  318. * Reference to the board templates swimlane Id
  319. */
  320. type: String,
  321. defaultValue: '',
  322. },
  323. services: {
  324. /**
  325. * services field of the user
  326. */
  327. type: Object,
  328. optional: true,
  329. blackbox: true,
  330. },
  331. heartbeat: {
  332. /**
  333. * last time the user has been seen
  334. */
  335. type: Date,
  336. optional: true,
  337. },
  338. isAdmin: {
  339. /**
  340. * is the user an admin of the board?
  341. */
  342. type: Boolean,
  343. optional: true,
  344. },
  345. createdThroughApi: {
  346. /**
  347. * was the user created through the API?
  348. */
  349. type: Boolean,
  350. optional: true,
  351. },
  352. loginDisabled: {
  353. /**
  354. * loginDisabled field of the user
  355. */
  356. type: Boolean,
  357. optional: true,
  358. },
  359. authenticationMethod: {
  360. /**
  361. * authentication method of the user
  362. */
  363. type: String,
  364. optional: false,
  365. defaultValue: 'password',
  366. },
  367. sessionData: {
  368. /**
  369. * profile settings
  370. */
  371. type: Object,
  372. optional: true,
  373. // eslint-disable-next-line consistent-return
  374. autoValue() {
  375. if (this.isInsert && !this.isSet) {
  376. return {};
  377. }
  378. },
  379. },
  380. 'sessionData.totalHits': {
  381. /**
  382. * Total hits from last searchquery['members.userId'] = Meteor.userId();
  383. * last hit that was returned
  384. */
  385. type: Number,
  386. optional: true,
  387. },
  388. importUsernames: {
  389. /**
  390. * username for imported
  391. */
  392. type: [String],
  393. optional: true,
  394. },
  395. }),
  396. );
  397. Users.allow({
  398. update(userId, doc) {
  399. const user = Users.findOne({
  400. _id: userId,
  401. });
  402. if ((user && user.isAdmin) || (Meteor.user() && Meteor.user().isAdmin))
  403. return true;
  404. if (!user) {
  405. return false;
  406. }
  407. return doc._id === userId;
  408. },
  409. remove(userId, doc) {
  410. const adminsNumber = Users.find({
  411. isAdmin: true,
  412. }).count();
  413. const { isAdmin } = Users.findOne(
  414. {
  415. _id: userId,
  416. },
  417. {
  418. fields: {
  419. isAdmin: 1,
  420. },
  421. },
  422. );
  423. // Prevents remove of the only one administrator
  424. if (adminsNumber === 1 && isAdmin && userId === doc._id) {
  425. return false;
  426. }
  427. // If it's the user or an admin
  428. return userId === doc._id || isAdmin;
  429. },
  430. fetch: [],
  431. });
  432. // Search a user in the complete server database by its name, username or emails adress. This
  433. // is used for instance to add a new user to a board.
  434. const searchInFields = ['username', 'profile.fullname', 'emails.address'];
  435. Users.initEasySearch(searchInFields, {
  436. use: 'mongo-db',
  437. returnFields: [...searchInFields, 'profile.avatarUrl'],
  438. });
  439. Users.safeFields = {
  440. _id: 1,
  441. username: 1,
  442. 'profile.fullname': 1,
  443. 'profile.avatarUrl': 1,
  444. 'profile.initials': 1,
  445. orgs: 1,
  446. teams: 1,
  447. authenticationMethod: 1,
  448. };
  449. if (Meteor.isClient) {
  450. Users.helpers({
  451. isBoardMember() {
  452. const board = Utils.getCurrentBoard();
  453. return board && board.hasMember(this._id);
  454. },
  455. isNotNoComments() {
  456. const board = Utils.getCurrentBoard();
  457. return (
  458. board && board.hasMember(this._id) && !board.hasNoComments(this._id)
  459. );
  460. },
  461. isNoComments() {
  462. const board = Utils.getCurrentBoard();
  463. return board && board.hasNoComments(this._id);
  464. },
  465. isNotCommentOnly() {
  466. const board = Utils.getCurrentBoard();
  467. return (
  468. board && board.hasMember(this._id) && !board.hasCommentOnly(this._id)
  469. );
  470. },
  471. isCommentOnly() {
  472. const board = Utils.getCurrentBoard();
  473. return board && board.hasCommentOnly(this._id);
  474. },
  475. isNotWorker() {
  476. const board = Utils.getCurrentBoard();
  477. return board && board.hasMember(this._id) && !board.hasWorker(this._id);
  478. },
  479. isWorker() {
  480. const board = Utils.getCurrentBoard();
  481. return board && board.hasWorker(this._id);
  482. },
  483. isBoardAdmin(boardId) {
  484. let board;
  485. if (boardId) {
  486. board = Boards.findOne(boardId);
  487. } else {
  488. board = Utils.getCurrentBoard();
  489. }
  490. return board && board.hasAdmin(this._id);
  491. },
  492. });
  493. }
  494. Users.parseImportUsernames = (usernamesString) => {
  495. return usernamesString.trim().split(new RegExp('\\s*[,;]\\s*'));
  496. };
  497. Users.helpers({
  498. importUsernamesString() {
  499. if (this.importUsernames) {
  500. return this.importUsernames.join(', ');
  501. }
  502. return '';
  503. },
  504. teamIds() {
  505. if (this.teams) {
  506. // TODO: Should the Team collection be queried to determine if the team isActive?
  507. return this.teams.map(team => { return team.teamId });
  508. }
  509. return [];
  510. },
  511. orgIds() {
  512. if (this.orgs) {
  513. // TODO: Should the Org collection be queried to determine if the organization isActive?
  514. return this.orgs.map(org => { return org.orgId });
  515. }
  516. return [];
  517. },
  518. orgsUserBelongs() {
  519. if (this.orgs) {
  520. return this.orgs.map(function(org){return org.orgDisplayName}).sort().join(',');
  521. }
  522. return '';
  523. },
  524. orgIdsUserBelongs() {
  525. if (this.orgs) {
  526. return this.orgs.map(function(org){return org.orgId}).join(',');
  527. }
  528. return '';
  529. },
  530. teamsUserBelongs() {
  531. if (this.teams) {
  532. return this.teams.map(function(team){ return team.teamDisplayName}).sort().join(',');
  533. }
  534. return '';
  535. },
  536. teamIdsUserBelongs() {
  537. if (this.teams) {
  538. return this.teams.map(function(team){ return team.teamId}).join(',');
  539. }
  540. return '';
  541. },
  542. boards() {
  543. return Boards.userBoards(this._id, null, {}, { sort: { sort: 1 } })
  544. },
  545. starredBoards() {
  546. const { starredBoards = [] } = this.profile || {};
  547. return Boards.userBoards(
  548. this._id,
  549. false,
  550. { _id: { $in: starredBoards } },
  551. { sort: { sort: 1 } }
  552. );
  553. },
  554. hasStarred(boardId) {
  555. const { starredBoards = [] } = this.profile || {};
  556. return _.contains(starredBoards, boardId);
  557. },
  558. invitedBoards() {
  559. const { invitedBoards = [] } = this.profile || {};
  560. return Boards.userBoards(
  561. this._id,
  562. false,
  563. { _id: { $in: invitedBoards } },
  564. { sort: { sort: 1 } }
  565. );
  566. },
  567. isInvitedTo(boardId) {
  568. const { invitedBoards = [] } = this.profile || {};
  569. return _.contains(invitedBoards, boardId);
  570. },
  571. _getListSortBy() {
  572. const profile = this.profile || {};
  573. const sortBy = profile.listSortBy || defaultSortBy;
  574. const keyPattern = /^(-{0,1})(.*$)/;
  575. const ret = [];
  576. if (keyPattern.exec(sortBy)) {
  577. ret[0] = RegExp.$2;
  578. ret[1] = RegExp.$1 ? -1 : 1;
  579. }
  580. return ret;
  581. },
  582. hasSortBy() {
  583. // if use doesn't have dragHandle, then we can let user to choose sort list by different order
  584. return !this.hasShowDesktopDragHandles();
  585. },
  586. getListSortBy() {
  587. return this._getListSortBy()[0];
  588. },
  589. getListSortTypes() {
  590. return allowedSortValues;
  591. },
  592. getListSortByDirection() {
  593. return this._getListSortBy()[1];
  594. },
  595. hasTag(tag) {
  596. const { tags = [] } = this.profile || {};
  597. return _.contains(tags, tag);
  598. },
  599. hasNotification(activityId) {
  600. const { notifications = [] } = this.profile || {};
  601. return _.contains(notifications, activityId);
  602. },
  603. notifications() {
  604. const { notifications = [] } = this.profile || {};
  605. for (const index in notifications) {
  606. if (!notifications.hasOwnProperty(index)) continue;
  607. const notification = notifications[index];
  608. // this preserves their db sort order for editing
  609. notification.dbIndex = index;
  610. notification.activity = Activities.findOne(notification.activity);
  611. }
  612. // this sorts them newest to oldest to match Trello's behavior
  613. notifications.reverse();
  614. return notifications;
  615. },
  616. hasShowDesktopDragHandles() {
  617. const profile = this.profile || {};
  618. return profile.showDesktopDragHandles || false;
  619. },
  620. hasHideCheckedItems() {
  621. const profile = this.profile || {};
  622. return profile.hideCheckedItems || false;
  623. },
  624. hasHiddenSystemMessages() {
  625. const profile = this.profile || {};
  626. return profile.hiddenSystemMessages || false;
  627. },
  628. hasCustomFieldsGrid() {
  629. const profile = this.profile || {};
  630. return profile.customFieldsGrid || false;
  631. },
  632. hasCardMaximized() {
  633. const profile = this.profile || {};
  634. return profile.cardMaximized || false;
  635. },
  636. hasHiddenMinicardLabelText() {
  637. const profile = this.profile || {};
  638. return profile.hiddenMinicardLabelText || false;
  639. },
  640. getEmailBuffer() {
  641. const { emailBuffer = [] } = this.profile || {};
  642. return emailBuffer;
  643. },
  644. getInitials() {
  645. const profile = this.profile || {};
  646. if (profile.initials) return profile.initials;
  647. else if (profile.fullname) {
  648. return profile.fullname
  649. .split(/\s+/)
  650. .reduce((memo, word) => {
  651. return memo + word[0];
  652. }, '')
  653. .toUpperCase();
  654. } else {
  655. return this.username[0].toUpperCase();
  656. }
  657. },
  658. getLimitToShowCardsCount() {
  659. const profile = this.profile || {};
  660. return profile.showCardsCountAt;
  661. },
  662. getName() {
  663. const profile = this.profile || {};
  664. return profile.fullname || this.username;
  665. },
  666. getLanguage() {
  667. const profile = this.profile || {};
  668. return profile.language || 'en';
  669. },
  670. getStartDayOfWeek() {
  671. const profile = this.profile || {};
  672. if (typeof profile.startDayOfWeek === 'undefined') {
  673. // default is 'Monday' (1)
  674. return 1;
  675. }
  676. return profile.startDayOfWeek;
  677. },
  678. getTemplatesBoardId() {
  679. return (this.profile || {}).templatesBoardId;
  680. },
  681. getTemplatesBoardSlug() {
  682. return (Boards.findOne((this.profile || {}).templatesBoardId) || {}).slug;
  683. },
  684. remove() {
  685. User.remove({
  686. _id: this._id,
  687. });
  688. },
  689. });
  690. Users.mutations({
  691. toggleBoardStar(boardId) {
  692. const queryKind = this.hasStarred(boardId) ? '$pull' : '$addToSet';
  693. return {
  694. [queryKind]: {
  695. 'profile.starredBoards': boardId,
  696. },
  697. };
  698. },
  699. addInvite(boardId) {
  700. return {
  701. $addToSet: {
  702. 'profile.invitedBoards': boardId,
  703. },
  704. };
  705. },
  706. removeInvite(boardId) {
  707. return {
  708. $pull: {
  709. 'profile.invitedBoards': boardId,
  710. },
  711. };
  712. },
  713. addTag(tag) {
  714. return {
  715. $addToSet: {
  716. 'profile.tags': tag,
  717. },
  718. };
  719. },
  720. removeTag(tag) {
  721. return {
  722. $pull: {
  723. 'profile.tags': tag,
  724. },
  725. };
  726. },
  727. toggleTag(tag) {
  728. if (this.hasTag(tag)) this.removeTag(tag);
  729. else this.addTag(tag);
  730. },
  731. setListSortBy(value) {
  732. return {
  733. $set: {
  734. 'profile.listSortBy': value,
  735. },
  736. };
  737. },
  738. setName(value) {
  739. return {
  740. $set: {
  741. 'profile.fullname': value,
  742. },
  743. };
  744. },
  745. toggleDesktopHandles(value = false) {
  746. return {
  747. $set: {
  748. 'profile.showDesktopDragHandles': !value,
  749. },
  750. };
  751. },
  752. toggleHideCheckedItems() {
  753. const value = this.hasHideCheckedItems();
  754. return {
  755. $set: {
  756. 'profile.hideCheckedItems': !value,
  757. },
  758. };
  759. },
  760. toggleSystem(value = false) {
  761. return {
  762. $set: {
  763. 'profile.hiddenSystemMessages': !value,
  764. },
  765. };
  766. },
  767. toggleFieldsGrid(value = false) {
  768. return {
  769. $set: {
  770. 'profile.customFieldsGrid': !value,
  771. },
  772. };
  773. },
  774. toggleCardMaximized(value = false) {
  775. return {
  776. $set: {
  777. 'profile.cardMaximized': !value,
  778. },
  779. };
  780. },
  781. toggleLabelText(value = false) {
  782. return {
  783. $set: {
  784. 'profile.hiddenMinicardLabelText': !value,
  785. },
  786. };
  787. },
  788. addNotification(activityId) {
  789. return {
  790. $addToSet: {
  791. 'profile.notifications': {
  792. activity: activityId,
  793. },
  794. },
  795. };
  796. },
  797. removeNotification(activityId) {
  798. return {
  799. $pull: {
  800. 'profile.notifications': {
  801. activity: activityId,
  802. },
  803. },
  804. };
  805. },
  806. addEmailBuffer(text) {
  807. return {
  808. $addToSet: {
  809. 'profile.emailBuffer': text,
  810. },
  811. };
  812. },
  813. clearEmailBuffer() {
  814. return {
  815. $set: {
  816. 'profile.emailBuffer': [],
  817. },
  818. };
  819. },
  820. setAvatarUrl(avatarUrl) {
  821. return {
  822. $set: {
  823. 'profile.avatarUrl': avatarUrl,
  824. },
  825. };
  826. },
  827. setShowCardsCountAt(limit) {
  828. return {
  829. $set: {
  830. 'profile.showCardsCountAt': limit,
  831. },
  832. };
  833. },
  834. setStartDayOfWeek(startDay) {
  835. return {
  836. $set: {
  837. 'profile.startDayOfWeek': startDay,
  838. },
  839. };
  840. },
  841. setBoardView(view) {
  842. return {
  843. $set: {
  844. 'profile.boardView': view,
  845. },
  846. };
  847. },
  848. });
  849. Meteor.methods({
  850. setListSortBy(value) {
  851. check(value, String);
  852. Meteor.user().setListSortBy(value);
  853. },
  854. toggleDesktopDragHandles() {
  855. const user = Meteor.user();
  856. user.toggleDesktopHandles(user.hasShowDesktopDragHandles());
  857. },
  858. toggleHideCheckedItems() {
  859. const user = Meteor.user();
  860. user.toggleHideCheckedItems();
  861. },
  862. toggleSystemMessages() {
  863. const user = Meteor.user();
  864. user.toggleSystem(user.hasHiddenSystemMessages());
  865. },
  866. toggleCustomFieldsGrid() {
  867. const user = Meteor.user();
  868. user.toggleFieldsGrid(user.hasCustomFieldsGrid());
  869. },
  870. toggleCardMaximized() {
  871. const user = Meteor.user();
  872. user.toggleCardMaximized(user.hasCardMaximized());
  873. },
  874. toggleMinicardLabelText() {
  875. const user = Meteor.user();
  876. user.toggleLabelText(user.hasHiddenMinicardLabelText());
  877. },
  878. changeLimitToShowCardsCount(limit) {
  879. check(limit, Number);
  880. Meteor.user().setShowCardsCountAt(limit);
  881. },
  882. changeStartDayOfWeek(startDay) {
  883. check(startDay, Number);
  884. Meteor.user().setStartDayOfWeek(startDay);
  885. },
  886. });
  887. if (Meteor.isServer) {
  888. Meteor.methods({
  889. setAllUsersHideSystemMessages() {
  890. if (Meteor.user() && Meteor.user().isAdmin) {
  891. // If setting is missing, add it
  892. Users.update(
  893. {
  894. 'profile.hiddenSystemMessages': {
  895. $exists: false,
  896. },
  897. },
  898. {
  899. $set: {
  900. 'profile.hiddenSystemMessages': true,
  901. },
  902. },
  903. {
  904. multi: true,
  905. },
  906. );
  907. // If setting is false, set it to true
  908. Users.update(
  909. {
  910. 'profile.hiddenSystemMessages': false,
  911. },
  912. {
  913. $set: {
  914. 'profile.hiddenSystemMessages': true,
  915. },
  916. },
  917. {
  918. multi: true,
  919. },
  920. );
  921. return true;
  922. } else {
  923. return false;
  924. }
  925. },
  926. setCreateUser(
  927. fullname,
  928. username,
  929. initials,
  930. password,
  931. isAdmin,
  932. isActive,
  933. email,
  934. importUsernames,
  935. userOrgsArray,
  936. userTeamsArray,
  937. ) {
  938. check(fullname, String);
  939. check(username, String);
  940. check(initials, String);
  941. check(password, String);
  942. check(isAdmin, String);
  943. check(isActive, String);
  944. check(email, String);
  945. check(importUsernames, Array);
  946. check(userOrgsArray, Array);
  947. check(userTeamsArray, Array);
  948. if (Meteor.user() && Meteor.user().isAdmin) {
  949. const nUsersWithUsername = Users.find({
  950. username,
  951. }).count();
  952. const nUsersWithEmail = Users.find({
  953. email,
  954. }).count();
  955. if (nUsersWithUsername > 0) {
  956. throw new Meteor.Error('username-already-taken');
  957. } else if (nUsersWithEmail > 0) {
  958. throw new Meteor.Error('email-already-taken');
  959. } else {
  960. Accounts.createUser({
  961. username,
  962. password,
  963. isAdmin,
  964. isActive,
  965. email: email.toLowerCase(),
  966. from: 'admin',
  967. });
  968. const user =
  969. Users.findOne(username) ||
  970. Users.findOne({
  971. username,
  972. });
  973. if (user) {
  974. Users.update(user._id, {
  975. $set: {
  976. 'profile.fullname': fullname,
  977. importUsernames,
  978. 'profile.initials': initials,
  979. orgs: userOrgsArray,
  980. teams: userTeamsArray,
  981. },
  982. });
  983. }
  984. }
  985. }
  986. },
  987. setUsername(username, userId) {
  988. check(username, String);
  989. check(userId, String);
  990. if (Meteor.user() && Meteor.user().isAdmin) {
  991. const nUsersWithUsername = Users.find({
  992. username,
  993. }).count();
  994. if (nUsersWithUsername > 0) {
  995. throw new Meteor.Error('username-already-taken');
  996. } else {
  997. Users.update(userId, {
  998. $set: {
  999. username,
  1000. },
  1001. });
  1002. }
  1003. }
  1004. },
  1005. setEmail(email, userId) {
  1006. check(email, String);
  1007. check(username, String);
  1008. if (Meteor.user() && Meteor.user().isAdmin) {
  1009. if (Array.isArray(email)) {
  1010. email = email.shift();
  1011. }
  1012. const existingUser = Users.findOne(
  1013. {
  1014. 'emails.address': email,
  1015. },
  1016. {
  1017. fields: {
  1018. _id: 1,
  1019. },
  1020. },
  1021. );
  1022. if (existingUser) {
  1023. throw new Meteor.Error('email-already-taken');
  1024. } else {
  1025. Users.update(userId, {
  1026. $set: {
  1027. emails: [
  1028. {
  1029. address: email,
  1030. verified: false,
  1031. },
  1032. ],
  1033. },
  1034. });
  1035. }
  1036. }
  1037. },
  1038. setUsernameAndEmail(username, email, userId) {
  1039. check(username, String);
  1040. check(email, String);
  1041. check(userId, String);
  1042. if (Meteor.user() && Meteor.user().isAdmin) {
  1043. if (Array.isArray(email)) {
  1044. email = email.shift();
  1045. }
  1046. Meteor.call('setUsername', username, userId);
  1047. Meteor.call('setEmail', email, userId);
  1048. }
  1049. },
  1050. setPassword(newPassword, userId) {
  1051. check(userId, String);
  1052. check(newPassword, String);
  1053. if (Meteor.user() && Meteor.user().isAdmin) {
  1054. if (Meteor.user().isAdmin) {
  1055. Accounts.setPassword(userId, newPassword);
  1056. }
  1057. }
  1058. },
  1059. setEmailVerified(email, verified, userId) {
  1060. check(email, String);
  1061. check(verified, Boolean);
  1062. check(userId, String);
  1063. if (Meteor.user() && Meteor.user().isAdmin) {
  1064. Users.update(userId, {
  1065. $set: {
  1066. emails: [
  1067. {
  1068. address: email,
  1069. verified,
  1070. },
  1071. ],
  1072. },
  1073. });
  1074. }
  1075. },
  1076. setInitials(initials, userId) {
  1077. check(initials, String);
  1078. check(userId, String);
  1079. if (Meteor.user() && Meteor.user().isAdmin) {
  1080. Users.update(userId, {
  1081. $set: {
  1082. 'profile.initials': initials,
  1083. },
  1084. });
  1085. }
  1086. },
  1087. // we accept userId, username, email
  1088. inviteUserToBoard(username, boardId) {
  1089. check(username, String);
  1090. check(boardId, String);
  1091. const inviter = Meteor.user();
  1092. const board = Boards.findOne(boardId);
  1093. const allowInvite =
  1094. inviter &&
  1095. board &&
  1096. board.members &&
  1097. _.contains(_.pluck(board.members, 'userId'), inviter._id) &&
  1098. _.where(board.members, {
  1099. userId: inviter._id,
  1100. })[0].isActive;
  1101. // GitHub issue 2060
  1102. //_.where(board.members, { userId: inviter._id })[0].isAdmin;
  1103. if (!allowInvite) throw new Meteor.Error('error-board-notAMember');
  1104. this.unblock();
  1105. const posAt = username.indexOf('@');
  1106. let user = null;
  1107. if (posAt >= 0) {
  1108. user = Users.findOne({
  1109. emails: {
  1110. $elemMatch: {
  1111. address: username,
  1112. },
  1113. },
  1114. });
  1115. } else {
  1116. user =
  1117. Users.findOne(username) ||
  1118. Users.findOne({
  1119. username,
  1120. });
  1121. }
  1122. if (user) {
  1123. if (user._id === inviter._id)
  1124. throw new Meteor.Error('error-user-notAllowSelf');
  1125. } else {
  1126. if (posAt <= 0) throw new Meteor.Error('error-user-doesNotExist');
  1127. if (
  1128. Settings.findOne({
  1129. disableRegistration: true,
  1130. })
  1131. ) {
  1132. throw new Meteor.Error('error-user-notCreated');
  1133. }
  1134. // Set in lowercase email before creating account
  1135. const email = username.toLowerCase();
  1136. username = email.substring(0, posAt);
  1137. const newUserId = Accounts.createUser({
  1138. username,
  1139. email,
  1140. });
  1141. if (!newUserId) throw new Meteor.Error('error-user-notCreated');
  1142. // assume new user speak same language with inviter
  1143. if (inviter.profile && inviter.profile.language) {
  1144. Users.update(newUserId, {
  1145. $set: {
  1146. 'profile.language': inviter.profile.language,
  1147. },
  1148. });
  1149. }
  1150. Accounts.sendEnrollmentEmail(newUserId);
  1151. user = Users.findOne(newUserId);
  1152. }
  1153. board.addMember(user._id);
  1154. user.addInvite(boardId);
  1155. //Check if there is a subtasks board
  1156. if (board.subtasksDefaultBoardId) {
  1157. const subBoard = Boards.findOne(board.subtasksDefaultBoardId);
  1158. //If there is, also add user to that board
  1159. if (subBoard) {
  1160. subBoard.addMember(user._id);
  1161. user.addInvite(subBoard._id);
  1162. }
  1163. }
  1164. try {
  1165. const fullName = inviter.profile !== undefined && inviter.profile.fullname !== undefined ? inviter.profile.fullname : "";
  1166. const userFullName = user.profile !== undefined && user.profile.fullname !== undefined ? user.profile.fullname : "";
  1167. const params = {
  1168. user: userFullName != "" ? userFullName + " (" + user.username + " )" : user.username,
  1169. inviter: fullName != "" ? fullName + " (" + inviter.username + " )" : inviter.username,
  1170. board: board.title,
  1171. url: board.absoluteUrl(),
  1172. };
  1173. const lang = user.getLanguage();
  1174. /*
  1175. if (process.env.MAIL_SERVICE !== '') {
  1176. let transporter = nodemailer.createTransport({
  1177. service: process.env.MAIL_SERVICE,
  1178. auth: {
  1179. user: process.env.MAIL_SERVICE_USER,
  1180. pass: process.env.MAIL_SERVICE_PASSWORD
  1181. },
  1182. })
  1183. let info = transporter.sendMail({
  1184. to: user.emails[0].address.toLowerCase(),
  1185. from: Accounts.emailTemplates.from,
  1186. subject: TAPi18n.__('email-invite-subject', params, lang),
  1187. text: TAPi18n.__('email-invite-text', params, lang),
  1188. })
  1189. } else {
  1190. Email.send({
  1191. to: user.emails[0].address.toLowerCase(),
  1192. from: Accounts.emailTemplates.from,
  1193. subject: TAPi18n.__('email-invite-subject', params, lang),
  1194. text: TAPi18n.__('email-invite-text', params, lang),
  1195. });
  1196. }
  1197. */
  1198. Email.send({
  1199. to: user.emails[0].address.toLowerCase(),
  1200. from: Accounts.emailTemplates.from,
  1201. subject: TAPi18n.__('email-invite-subject', params, lang),
  1202. text: TAPi18n.__('email-invite-text', params, lang),
  1203. });
  1204. } catch (e) {
  1205. throw new Meteor.Error('email-fail', e.message);
  1206. }
  1207. return {
  1208. username: user.username,
  1209. email: user.emails[0].address,
  1210. };
  1211. },
  1212. impersonate(userId) {
  1213. check(userId, String);
  1214. if (!Meteor.users.findOne(userId))
  1215. throw new Meteor.Error(404, 'User not found');
  1216. if (!Meteor.user().isAdmin)
  1217. throw new Meteor.Error(403, 'Permission denied');
  1218. ImpersonatedUsers.insert({ adminId: Meteor.user()._id, userId: userId, reason: 'clickedImpersonate' });
  1219. this.setUserId(userId);
  1220. },
  1221. isImpersonated(userId) {
  1222. check(userId, String);
  1223. const isImpersonated = ImpersonatedUsers.findOne({
  1224. userId: userId,
  1225. });
  1226. return isImpersonated;
  1227. },
  1228. });
  1229. Accounts.onCreateUser((options, user) => {
  1230. const userCount = Users.find().count();
  1231. if (userCount === 0) {
  1232. user.isAdmin = true;
  1233. }
  1234. if (user.services.oidc) {
  1235. let email = user.services.oidc.email;
  1236. if (Array.isArray(email)) {
  1237. email = email.shift();
  1238. }
  1239. email = email.toLowerCase();
  1240. user.username = user.services.oidc.username;
  1241. user.emails = [
  1242. {
  1243. address: email,
  1244. verified: true,
  1245. },
  1246. ];
  1247. const initials = user.services.oidc.fullname
  1248. .split(/\s+/)
  1249. .reduce((memo, word) => {
  1250. return memo + word[0];
  1251. }, '')
  1252. .toUpperCase();
  1253. user.profile = {
  1254. initials,
  1255. fullname: user.services.oidc.fullname,
  1256. boardView: 'board-view-swimlanes',
  1257. };
  1258. user.authenticationMethod = 'oauth2';
  1259. // see if any existing user has this email address or username, otherwise create new
  1260. const existingUser = Meteor.users.findOne({
  1261. $or: [
  1262. {
  1263. 'emails.address': email,
  1264. },
  1265. {
  1266. username: user.username,
  1267. },
  1268. ],
  1269. });
  1270. if (!existingUser) return user;
  1271. // copy across new service info
  1272. const service = _.keys(user.services)[0];
  1273. existingUser.services[service] = user.services[service];
  1274. existingUser.emails = user.emails;
  1275. existingUser.username = user.username;
  1276. existingUser.profile = user.profile;
  1277. existingUser.authenticationMethod = user.authenticationMethod;
  1278. Meteor.users.remove({
  1279. _id: user._id,
  1280. });
  1281. Meteor.users.remove({
  1282. _id: existingUser._id,
  1283. }); // is going to be created again
  1284. return existingUser;
  1285. }
  1286. if (options.from === 'admin') {
  1287. user.createdThroughApi = true;
  1288. return user;
  1289. }
  1290. const disableRegistration = Settings.findOne().disableRegistration;
  1291. // If this is the first Authentication by the ldap and self registration disabled
  1292. if (disableRegistration && options && options.ldap) {
  1293. user.authenticationMethod = 'ldap';
  1294. return user;
  1295. }
  1296. // If self registration enabled
  1297. if (!disableRegistration) {
  1298. return user;
  1299. }
  1300. if (!options || !options.profile) {
  1301. throw new Meteor.Error(
  1302. 'error-invitation-code-blank',
  1303. 'The invitation code is required',
  1304. );
  1305. }
  1306. const invitationCode = InvitationCodes.findOne({
  1307. code: options.profile.invitationcode,
  1308. email: options.email,
  1309. valid: true,
  1310. });
  1311. if (!invitationCode) {
  1312. throw new Meteor.Error(
  1313. 'error-invitation-code-not-exist',
  1314. // eslint-disable-next-line quotes
  1315. "The invitation code doesn't exist",
  1316. );
  1317. } else {
  1318. user.profile = {
  1319. icode: options.profile.invitationcode,
  1320. };
  1321. user.profile.boardView = 'board-view-swimlanes';
  1322. // Deletes the invitation code after the user was created successfully.
  1323. setTimeout(
  1324. Meteor.bindEnvironment(() => {
  1325. InvitationCodes.remove({
  1326. _id: invitationCode._id,
  1327. });
  1328. }),
  1329. 200,
  1330. );
  1331. return user;
  1332. }
  1333. });
  1334. }
  1335. const addCronJob = _.debounce(
  1336. Meteor.bindEnvironment(function notificationCleanupDebounced() {
  1337. // passed in the removeAge has to be a number standing for the number of days after a notification is read before we remove it
  1338. const envRemoveAge =
  1339. process.env.NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE;
  1340. // default notifications will be removed 2 days after they are read
  1341. const defaultRemoveAge = 2;
  1342. const removeAge = parseInt(envRemoveAge, 10) || defaultRemoveAge;
  1343. SyncedCron.add({
  1344. name: 'notification_cleanup',
  1345. schedule: (parser) => parser.text('every 1 days'),
  1346. job: () => {
  1347. for (const user of Users.find()) {
  1348. if (!user.profile || !user.profile.notifications) continue;
  1349. for (const notification of user.profile.notifications) {
  1350. if (notification.read) {
  1351. const removeDate = new Date(notification.read);
  1352. removeDate.setDate(removeDate.getDate() + removeAge);
  1353. if (removeDate <= new Date()) {
  1354. user.removeNotification(notification.activity);
  1355. }
  1356. }
  1357. }
  1358. }
  1359. },
  1360. });
  1361. SyncedCron.start();
  1362. }),
  1363. 500,
  1364. );
  1365. if (Meteor.isServer) {
  1366. // Let mongoDB ensure username unicity
  1367. Meteor.startup(() => {
  1368. allowedSortValues.forEach((value) => {
  1369. Lists._collection._ensureIndex(value);
  1370. });
  1371. Users._collection._ensureIndex({
  1372. modifiedAt: -1,
  1373. });
  1374. Users._collection._ensureIndex(
  1375. {
  1376. username: 1,
  1377. },
  1378. {
  1379. unique: true,
  1380. },
  1381. );
  1382. Meteor.defer(() => {
  1383. addCronJob();
  1384. });
  1385. });
  1386. // OLD WAY THIS CODE DID WORK: When user is last admin of board,
  1387. // if admin is removed, board is removed.
  1388. // NOW THIS IS COMMENTED OUT, because other board users still need to be able
  1389. // to use that board, and not have board deleted.
  1390. // Someone can be later changed to be admin of board, by making change to database.
  1391. // TODO: Add UI for changing someone as board admin.
  1392. //Users.before.remove((userId, doc) => {
  1393. // Boards
  1394. // .find({members: {$elemMatch: {userId: doc._id, isAdmin: true}}})
  1395. // .forEach((board) => {
  1396. // // If only one admin for the board
  1397. // if (board.members.filter((e) => e.isAdmin).length === 1) {
  1398. // Boards.remove(board._id);
  1399. // }
  1400. // });
  1401. //});
  1402. // Each board document contains the de-normalized number of users that have
  1403. // starred it. If the user star or unstar a board, we need to update this
  1404. // counter.
  1405. // We need to run this code on the server only, otherwise the incrementation
  1406. // will be done twice.
  1407. Users.after.update(function (userId, user, fieldNames) {
  1408. // The `starredBoards` list is hosted on the `profile` field. If this
  1409. // field hasn't been modificated we don't need to run this hook.
  1410. if (!_.contains(fieldNames, 'profile')) return;
  1411. // To calculate a diff of board starred ids, we get both the previous
  1412. // and the newly board ids list
  1413. function getStarredBoardsIds(doc) {
  1414. return doc.profile && doc.profile.starredBoards;
  1415. }
  1416. const oldIds = getStarredBoardsIds(this.previous);
  1417. const newIds = getStarredBoardsIds(user);
  1418. // The _.difference(a, b) method returns the values from a that are not in
  1419. // b. We use it to find deleted and newly inserted ids by using it in one
  1420. // direction and then in the other.
  1421. function incrementBoards(boardsIds, inc) {
  1422. boardsIds.forEach((boardId) => {
  1423. Boards.update(boardId, {
  1424. $inc: {
  1425. stars: inc,
  1426. },
  1427. });
  1428. });
  1429. }
  1430. incrementBoards(_.difference(oldIds, newIds), -1);
  1431. incrementBoards(_.difference(newIds, oldIds), +1);
  1432. });
  1433. // Override getUserId so that we can TODO get the current userId
  1434. const fakeUserId = new Meteor.EnvironmentVariable();
  1435. const getUserId = CollectionHooks.getUserId;
  1436. CollectionHooks.getUserId = () => {
  1437. return fakeUserId.get() || getUserId();
  1438. };
  1439. if (!isSandstorm) {
  1440. Users.after.insert((userId, doc) => {
  1441. const fakeUser = {
  1442. extendAutoValueContext: {
  1443. userId: doc._id,
  1444. },
  1445. };
  1446. fakeUserId.withValue(doc._id, () => {
  1447. /*
  1448. // Insert the Welcome Board
  1449. Boards.insert({
  1450. title: TAPi18n.__('welcome-board'),
  1451. permission: 'private',
  1452. }, fakeUser, (err, boardId) => {
  1453. Swimlanes.insert({
  1454. title: TAPi18n.__('welcome-swimlane'),
  1455. boardId,
  1456. sort: 1,
  1457. }, fakeUser);
  1458. ['welcome-list1', 'welcome-list2'].forEach((title, titleIndex) => {
  1459. Lists.insert({title: TAPi18n.__(title), boardId, sort: titleIndex}, fakeUser);
  1460. });
  1461. });
  1462. */
  1463. // Insert Template Container
  1464. const Future = require('fibers/future');
  1465. const future1 = new Future();
  1466. const future2 = new Future();
  1467. const future3 = new Future();
  1468. Boards.insert(
  1469. {
  1470. title: TAPi18n.__('templates'),
  1471. permission: 'private',
  1472. type: 'template-container',
  1473. },
  1474. fakeUser,
  1475. (err, boardId) => {
  1476. // Insert the reference to our templates board
  1477. Users.update(fakeUserId.get(), {
  1478. $set: {
  1479. 'profile.templatesBoardId': boardId,
  1480. },
  1481. });
  1482. // Insert the card templates swimlane
  1483. Swimlanes.insert(
  1484. {
  1485. title: TAPi18n.__('card-templates-swimlane'),
  1486. boardId,
  1487. sort: 1,
  1488. type: 'template-container',
  1489. },
  1490. fakeUser,
  1491. (err, swimlaneId) => {
  1492. // Insert the reference to out card templates swimlane
  1493. Users.update(fakeUserId.get(), {
  1494. $set: {
  1495. 'profile.cardTemplatesSwimlaneId': swimlaneId,
  1496. },
  1497. });
  1498. future1.return();
  1499. },
  1500. );
  1501. // Insert the list templates swimlane
  1502. Swimlanes.insert(
  1503. {
  1504. title: TAPi18n.__('list-templates-swimlane'),
  1505. boardId,
  1506. sort: 2,
  1507. type: 'template-container',
  1508. },
  1509. fakeUser,
  1510. (err, swimlaneId) => {
  1511. // Insert the reference to out list templates swimlane
  1512. Users.update(fakeUserId.get(), {
  1513. $set: {
  1514. 'profile.listTemplatesSwimlaneId': swimlaneId,
  1515. },
  1516. });
  1517. future2.return();
  1518. },
  1519. );
  1520. // Insert the board templates swimlane
  1521. Swimlanes.insert(
  1522. {
  1523. title: TAPi18n.__('board-templates-swimlane'),
  1524. boardId,
  1525. sort: 3,
  1526. type: 'template-container',
  1527. },
  1528. fakeUser,
  1529. (err, swimlaneId) => {
  1530. // Insert the reference to out board templates swimlane
  1531. Users.update(fakeUserId.get(), {
  1532. $set: {
  1533. 'profile.boardTemplatesSwimlaneId': swimlaneId,
  1534. },
  1535. });
  1536. future3.return();
  1537. },
  1538. );
  1539. },
  1540. );
  1541. // HACK
  1542. future1.wait();
  1543. future2.wait();
  1544. future3.wait();
  1545. // End of Insert Template Container
  1546. });
  1547. });
  1548. }
  1549. Users.after.insert((userId, doc) => {
  1550. // HACK
  1551. doc = Users.findOne({
  1552. _id: doc._id,
  1553. });
  1554. if (doc.createdThroughApi) {
  1555. // The admin user should be able to create a user despite disabling registration because
  1556. // it is two different things (registration and creation).
  1557. // So, when a new user is created via the api (only admin user can do that) one must avoid
  1558. // the disableRegistration check.
  1559. // Issue : https://github.com/wekan/wekan/issues/1232
  1560. // PR : https://github.com/wekan/wekan/pull/1251
  1561. Users.update(doc._id, {
  1562. $set: {
  1563. createdThroughApi: '',
  1564. },
  1565. });
  1566. return;
  1567. }
  1568. //invite user to corresponding boards
  1569. const disableRegistration = Settings.findOne().disableRegistration;
  1570. // If ldap, bypass the inviation code if the self registration isn't allowed.
  1571. // TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
  1572. if (doc.authenticationMethod !== 'ldap' && disableRegistration) {
  1573. let invitationCode = null;
  1574. if(doc.authenticationMethod.toLowerCase() == 'oauth2')
  1575. { // OIDC authentication mode
  1576. invitationCode = InvitationCodes.findOne({
  1577. email: doc.emails[0].address.toLowerCase(),
  1578. valid: true,
  1579. });
  1580. }
  1581. else{
  1582. invitationCode = InvitationCodes.findOne({
  1583. code: doc.profile.icode,
  1584. valid: true,
  1585. });
  1586. }
  1587. if (!invitationCode) {
  1588. throw new Meteor.Error('error-invitation-code-not-exist');
  1589. } else {
  1590. invitationCode.boardsToBeInvited.forEach((boardId) => {
  1591. const board = Boards.findOne(boardId);
  1592. board.addMember(doc._id);
  1593. });
  1594. if (!doc.profile) {
  1595. doc.profile = {};
  1596. }
  1597. doc.profile.invitedBoards = invitationCode.boardsToBeInvited;
  1598. Users.update(doc._id, {
  1599. $set: {
  1600. profile: doc.profile,
  1601. },
  1602. });
  1603. InvitationCodes.update(invitationCode._id, {
  1604. $set: {
  1605. valid: false,
  1606. },
  1607. });
  1608. }
  1609. }
  1610. });
  1611. }
  1612. // USERS REST API
  1613. if (Meteor.isServer) {
  1614. // Middleware which checks that API is enabled.
  1615. JsonRoutes.Middleware.use(function (req, res, next) {
  1616. const api = req.url.startsWith('/api');
  1617. if ((api === true && process.env.WITH_API === 'true') || api === false) {
  1618. return next();
  1619. } else {
  1620. res.writeHead(301, {
  1621. Location: '/',
  1622. });
  1623. return res.end();
  1624. }
  1625. });
  1626. /**
  1627. * @operation get_current_user
  1628. *
  1629. * @summary returns the current user
  1630. * @return_type Users
  1631. */
  1632. JsonRoutes.add('GET', '/api/user', function (req, res) {
  1633. try {
  1634. Authentication.checkLoggedIn(req.userId);
  1635. const data = Meteor.users.findOne({
  1636. _id: req.userId,
  1637. });
  1638. delete data.services;
  1639. // get all boards where the user is member of
  1640. let boards = Boards.find(
  1641. {
  1642. type: 'board',
  1643. 'members.userId': req.userId,
  1644. },
  1645. {
  1646. fields: {
  1647. _id: 1,
  1648. members: 1,
  1649. },
  1650. },
  1651. );
  1652. boards = boards.map((b) => {
  1653. const u = b.members.find((m) => m.userId === req.userId);
  1654. delete u.userId;
  1655. u.boardId = b._id;
  1656. return u;
  1657. });
  1658. data.boards = boards;
  1659. JsonRoutes.sendResult(res, {
  1660. code: 200,
  1661. data,
  1662. });
  1663. } catch (error) {
  1664. JsonRoutes.sendResult(res, {
  1665. code: 200,
  1666. data: error,
  1667. });
  1668. }
  1669. });
  1670. /**
  1671. * @operation get_all_users
  1672. *
  1673. * @summary return all the users
  1674. *
  1675. * @description Only the admin user (the first user) can call the REST API.
  1676. * @return_type [{ _id: string,
  1677. * username: string}]
  1678. */
  1679. JsonRoutes.add('GET', '/api/users', function (req, res) {
  1680. try {
  1681. Authentication.checkUserId(req.userId);
  1682. JsonRoutes.sendResult(res, {
  1683. code: 200,
  1684. data: Meteor.users.find({}).map(function (doc) {
  1685. return {
  1686. _id: doc._id,
  1687. username: doc.username,
  1688. };
  1689. }),
  1690. });
  1691. } catch (error) {
  1692. JsonRoutes.sendResult(res, {
  1693. code: 200,
  1694. data: error,
  1695. });
  1696. }
  1697. });
  1698. /**
  1699. * @operation get_user
  1700. *
  1701. * @summary get a given user
  1702. *
  1703. * @description Only the admin user (the first user) can call the REST API.
  1704. *
  1705. * @param {string} userId the user ID or username
  1706. * @return_type Users
  1707. */
  1708. JsonRoutes.add('GET', '/api/users/:userId', function (req, res) {
  1709. try {
  1710. Authentication.checkUserId(req.userId);
  1711. let id = req.params.userId;
  1712. let user = Meteor.users.findOne({
  1713. _id: id,
  1714. });
  1715. if (!user) {
  1716. user = Meteor.users.findOne({
  1717. username: id,
  1718. });
  1719. id = user._id;
  1720. }
  1721. // get all boards where the user is member of
  1722. let boards = Boards.find(
  1723. {
  1724. type: 'board',
  1725. 'members.userId': id,
  1726. },
  1727. {
  1728. fields: {
  1729. _id: 1,
  1730. members: 1,
  1731. },
  1732. },
  1733. );
  1734. boards = boards.map((b) => {
  1735. const u = b.members.find((m) => m.userId === id);
  1736. delete u.userId;
  1737. u.boardId = b._id;
  1738. return u;
  1739. });
  1740. user.boards = boards;
  1741. JsonRoutes.sendResult(res, {
  1742. code: 200,
  1743. data: user,
  1744. });
  1745. } catch (error) {
  1746. JsonRoutes.sendResult(res, {
  1747. code: 200,
  1748. data: error,
  1749. });
  1750. }
  1751. });
  1752. /**
  1753. * @operation edit_user
  1754. *
  1755. * @summary edit a given user
  1756. *
  1757. * @description Only the admin user (the first user) can call the REST API.
  1758. *
  1759. * Possible values for *action*:
  1760. * - `takeOwnership`: The admin takes the ownership of ALL boards of the user (archived and not archived) where the user is admin on.
  1761. * - `disableLogin`: Disable a user (the user is not allowed to login and his login tokens are purged)
  1762. * - `enableLogin`: Enable a user
  1763. *
  1764. * @param {string} userId the user ID
  1765. * @param {string} action the action
  1766. * @return_type {_id: string,
  1767. * title: string}
  1768. */
  1769. JsonRoutes.add('PUT', '/api/users/:userId', function (req, res) {
  1770. try {
  1771. Authentication.checkUserId(req.userId);
  1772. const id = req.params.userId;
  1773. const action = req.body.action;
  1774. let data = Meteor.users.findOne({
  1775. _id: id,
  1776. });
  1777. if (data !== undefined) {
  1778. if (action === 'takeOwnership') {
  1779. data = Boards.find(
  1780. {
  1781. 'members.userId': id,
  1782. 'members.isAdmin': true,
  1783. },
  1784. {
  1785. sort: {
  1786. sort: 1 /* boards default sorting */,
  1787. },
  1788. },
  1789. ).map(function (board) {
  1790. if (board.hasMember(req.userId)) {
  1791. board.removeMember(req.userId);
  1792. }
  1793. board.changeOwnership(id, req.userId);
  1794. return {
  1795. _id: board._id,
  1796. title: board.title,
  1797. };
  1798. });
  1799. } else {
  1800. if (action === 'disableLogin' && id !== req.userId) {
  1801. Users.update(
  1802. {
  1803. _id: id,
  1804. },
  1805. {
  1806. $set: {
  1807. loginDisabled: true,
  1808. 'services.resume.loginTokens': '',
  1809. },
  1810. },
  1811. );
  1812. } else if (action === 'enableLogin') {
  1813. Users.update(
  1814. {
  1815. _id: id,
  1816. },
  1817. {
  1818. $set: {
  1819. loginDisabled: '',
  1820. },
  1821. },
  1822. );
  1823. }
  1824. data = Meteor.users.findOne({
  1825. _id: id,
  1826. });
  1827. }
  1828. }
  1829. JsonRoutes.sendResult(res, {
  1830. code: 200,
  1831. data,
  1832. });
  1833. } catch (error) {
  1834. JsonRoutes.sendResult(res, {
  1835. code: 200,
  1836. data: error,
  1837. });
  1838. }
  1839. });
  1840. /**
  1841. * @operation add_board_member
  1842. * @tag Boards
  1843. *
  1844. * @summary Add New Board Member with Role
  1845. *
  1846. * @description Only the admin user (the first user) can call the REST API.
  1847. *
  1848. * **Note**: see [Boards.set_board_member_permission](#set_board_member_permission)
  1849. * to later change the permissions.
  1850. *
  1851. * @param {string} boardId the board ID
  1852. * @param {string} userId the user ID
  1853. * @param {boolean} isAdmin is the user an admin of the board
  1854. * @param {boolean} isNoComments disable comments
  1855. * @param {boolean} isCommentOnly only enable comments
  1856. * @return_type {_id: string,
  1857. * title: string}
  1858. */
  1859. JsonRoutes.add(
  1860. 'POST',
  1861. '/api/boards/:boardId/members/:userId/add',
  1862. function (req, res) {
  1863. try {
  1864. Authentication.checkUserId(req.userId);
  1865. const userId = req.params.userId;
  1866. const boardId = req.params.boardId;
  1867. const action = req.body.action;
  1868. const { isAdmin, isNoComments, isCommentOnly } = req.body;
  1869. let data = Meteor.users.findOne({
  1870. _id: userId,
  1871. });
  1872. if (data !== undefined) {
  1873. if (action === 'add') {
  1874. data = Boards.find({
  1875. _id: boardId,
  1876. }).map(function (board) {
  1877. if (!board.hasMember(userId)) {
  1878. board.addMember(userId);
  1879. function isTrue(data) {
  1880. return data.toLowerCase() === 'true';
  1881. }
  1882. board.setMemberPermission(
  1883. userId,
  1884. isTrue(isAdmin),
  1885. isTrue(isNoComments),
  1886. isTrue(isCommentOnly),
  1887. userId,
  1888. );
  1889. }
  1890. return {
  1891. _id: board._id,
  1892. title: board.title,
  1893. };
  1894. });
  1895. }
  1896. }
  1897. JsonRoutes.sendResult(res, {
  1898. code: 200,
  1899. data: query,
  1900. });
  1901. } catch (error) {
  1902. JsonRoutes.sendResult(res, {
  1903. code: 200,
  1904. data: error,
  1905. });
  1906. }
  1907. },
  1908. );
  1909. /**
  1910. * @operation remove_board_member
  1911. * @tag Boards
  1912. *
  1913. * @summary Remove Member from Board
  1914. *
  1915. * @description Only the admin user (the first user) can call the REST API.
  1916. *
  1917. * @param {string} boardId the board ID
  1918. * @param {string} userId the user ID
  1919. * @param {string} action the action (needs to be `remove`)
  1920. * @return_type {_id: string,
  1921. * title: string}
  1922. */
  1923. JsonRoutes.add(
  1924. 'POST',
  1925. '/api/boards/:boardId/members/:userId/remove',
  1926. function (req, res) {
  1927. try {
  1928. Authentication.checkUserId(req.userId);
  1929. const userId = req.params.userId;
  1930. const boardId = req.params.boardId;
  1931. const action = req.body.action;
  1932. let data = Meteor.users.findOne({
  1933. _id: userId,
  1934. });
  1935. if (data !== undefined) {
  1936. if (action === 'remove') {
  1937. data = Boards.find({
  1938. _id: boardId,
  1939. }).map(function (board) {
  1940. if (board.hasMember(userId)) {
  1941. board.removeMember(userId);
  1942. }
  1943. return {
  1944. _id: board._id,
  1945. title: board.title,
  1946. };
  1947. });
  1948. }
  1949. }
  1950. JsonRoutes.sendResult(res, {
  1951. code: 200,
  1952. data: query,
  1953. });
  1954. } catch (error) {
  1955. JsonRoutes.sendResult(res, {
  1956. code: 200,
  1957. data: error,
  1958. });
  1959. }
  1960. },
  1961. );
  1962. /**
  1963. * @operation new_user
  1964. *
  1965. * @summary Create a new user
  1966. *
  1967. * @description Only the admin user (the first user) can call the REST API.
  1968. *
  1969. * @param {string} username the new username
  1970. * @param {string} email the email of the new user
  1971. * @param {string} password the password of the new user
  1972. * @return_type {_id: string}
  1973. */
  1974. JsonRoutes.add('POST', '/api/users/', function (req, res) {
  1975. try {
  1976. Authentication.checkUserId(req.userId);
  1977. const id = Accounts.createUser({
  1978. username: req.body.username,
  1979. email: req.body.email,
  1980. password: req.body.password,
  1981. from: 'admin',
  1982. });
  1983. JsonRoutes.sendResult(res, {
  1984. code: 200,
  1985. data: {
  1986. _id: id,
  1987. },
  1988. });
  1989. } catch (error) {
  1990. JsonRoutes.sendResult(res, {
  1991. code: 200,
  1992. data: error,
  1993. });
  1994. }
  1995. });
  1996. /**
  1997. * @operation delete_user
  1998. *
  1999. * @summary Delete a user
  2000. *
  2001. * @description Only the admin user (the first user) can call the REST API.
  2002. *
  2003. * @param {string} userId the ID of the user to delete
  2004. * @return_type {_id: string}
  2005. */
  2006. JsonRoutes.add('DELETE', '/api/users/:userId', function (req, res) {
  2007. try {
  2008. Authentication.checkUserId(req.userId);
  2009. const id = req.params.userId;
  2010. // Delete user is enabled, but is still has bug of leaving empty user avatars
  2011. // to boards: boards members, card members and assignees have
  2012. // empty users. So it would be better to delete user from all boards before
  2013. // deleting user.
  2014. // See:
  2015. // - wekan/client/components/settings/peopleBody.jade deleteButton
  2016. // - wekan/client/components/settings/peopleBody.js deleteButton
  2017. // - wekan/client/components/sidebar/sidebar.js Popup.afterConfirm('removeMember'
  2018. // that does now remove member from board, card members and assignees correctly,
  2019. // but that should be used to remove user from all boards similarly
  2020. // - wekan/models/users.js Delete is not enabled
  2021. Meteor.users.remove({ _id: id });
  2022. JsonRoutes.sendResult(res, {
  2023. code: 200,
  2024. data: {
  2025. _id: id,
  2026. },
  2027. });
  2028. } catch (error) {
  2029. JsonRoutes.sendResult(res, {
  2030. code: 200,
  2031. data: error,
  2032. });
  2033. }
  2034. });
  2035. /**
  2036. * @operation create_user_token
  2037. *
  2038. * @summary Create a user token
  2039. *
  2040. * @description Only the admin user (the first user) can call the REST API.
  2041. *
  2042. * @param {string} userId the ID of the user to create token for.
  2043. * @return_type {_id: string}
  2044. */
  2045. JsonRoutes.add('POST', '/api/createtoken/:userId', function (req, res) {
  2046. try {
  2047. Authentication.checkUserId(req.userId);
  2048. const id = req.params.userId;
  2049. const token = Accounts._generateStampedLoginToken();
  2050. Accounts._insertLoginToken(id, token);
  2051. JsonRoutes.sendResult(res, {
  2052. code: 200,
  2053. data: {
  2054. _id: id,
  2055. authToken: token.token,
  2056. },
  2057. });
  2058. } catch (error) {
  2059. JsonRoutes.sendResult(res, {
  2060. code: 200,
  2061. data: error,
  2062. });
  2063. }
  2064. });
  2065. }
  2066. export default Users;