users.js 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  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. orgsUserBelongs() {
  505. if (this.orgs) {
  506. return this.orgs.map(function(org){return org.orgDisplayName}).sort().join(',');
  507. }
  508. return '';
  509. },
  510. orgIdsUserBelongs() {
  511. if (this.orgs) {
  512. return this.orgs.map(function(org){return org.orgId}).join(',');
  513. }
  514. return '';
  515. },
  516. teamsUserBelongs() {
  517. if (this.teams) {
  518. return this.teams.map(function(team){ return team.teamDisplayName}).sort().join(',');
  519. }
  520. return '';
  521. },
  522. teamIdsUserBelongs() {
  523. if (this.teams) {
  524. return this.teams.map(function(team){ return team.teamId}).join(',');
  525. }
  526. return '';
  527. },
  528. boards() {
  529. return Boards.find(
  530. {
  531. 'members.userId': this._id,
  532. },
  533. {
  534. sort: {
  535. sort: 1 /* boards default sorting */,
  536. },
  537. },
  538. );
  539. },
  540. starredBoards() {
  541. const { starredBoards = [] } = this.profile || {};
  542. return Boards.find(
  543. {
  544. archived: false,
  545. _id: {
  546. $in: starredBoards,
  547. },
  548. },
  549. {
  550. sort: {
  551. sort: 1 /* boards default sorting */,
  552. },
  553. },
  554. );
  555. },
  556. hasStarred(boardId) {
  557. const { starredBoards = [] } = this.profile || {};
  558. return _.contains(starredBoards, boardId);
  559. },
  560. invitedBoards() {
  561. const { invitedBoards = [] } = this.profile || {};
  562. return Boards.find(
  563. {
  564. archived: false,
  565. _id: {
  566. $in: invitedBoards,
  567. },
  568. },
  569. {
  570. sort: {
  571. sort: 1 /* boards default sorting */,
  572. },
  573. },
  574. );
  575. },
  576. isInvitedTo(boardId) {
  577. const { invitedBoards = [] } = this.profile || {};
  578. return _.contains(invitedBoards, boardId);
  579. },
  580. _getListSortBy() {
  581. const profile = this.profile || {};
  582. const sortBy = profile.listSortBy || defaultSortBy;
  583. const keyPattern = /^(-{0,1})(.*$)/;
  584. const ret = [];
  585. if (keyPattern.exec(sortBy)) {
  586. ret[0] = RegExp.$2;
  587. ret[1] = RegExp.$1 ? -1 : 1;
  588. }
  589. return ret;
  590. },
  591. hasSortBy() {
  592. // if use doesn't have dragHandle, then we can let user to choose sort list by different order
  593. return !this.hasShowDesktopDragHandles();
  594. },
  595. getListSortBy() {
  596. return this._getListSortBy()[0];
  597. },
  598. getListSortTypes() {
  599. return allowedSortValues;
  600. },
  601. getListSortByDirection() {
  602. return this._getListSortBy()[1];
  603. },
  604. hasTag(tag) {
  605. const { tags = [] } = this.profile || {};
  606. return _.contains(tags, tag);
  607. },
  608. hasNotification(activityId) {
  609. const { notifications = [] } = this.profile || {};
  610. return _.contains(notifications, activityId);
  611. },
  612. notifications() {
  613. const { notifications = [] } = this.profile || {};
  614. for (const index in notifications) {
  615. if (!notifications.hasOwnProperty(index)) continue;
  616. const notification = notifications[index];
  617. // this preserves their db sort order for editing
  618. notification.dbIndex = index;
  619. notification.activity = Activities.findOne(notification.activity);
  620. }
  621. // this sorts them newest to oldest to match Trello's behavior
  622. notifications.reverse();
  623. return notifications;
  624. },
  625. hasShowDesktopDragHandles() {
  626. const profile = this.profile || {};
  627. return profile.showDesktopDragHandles || false;
  628. },
  629. hasHideCheckedItems() {
  630. const profile = this.profile || {};
  631. return profile.hideCheckedItems || false;
  632. },
  633. hasHiddenSystemMessages() {
  634. const profile = this.profile || {};
  635. return profile.hiddenSystemMessages || false;
  636. },
  637. hasCustomFieldsGrid() {
  638. const profile = this.profile || {};
  639. return profile.customFieldsGrid || false;
  640. },
  641. hasCardMaximized() {
  642. const profile = this.profile || {};
  643. return profile.cardMaximized || false;
  644. },
  645. hasHiddenMinicardLabelText() {
  646. const profile = this.profile || {};
  647. return profile.hiddenMinicardLabelText || false;
  648. },
  649. getEmailBuffer() {
  650. const { emailBuffer = [] } = this.profile || {};
  651. return emailBuffer;
  652. },
  653. getInitials() {
  654. const profile = this.profile || {};
  655. if (profile.initials) return profile.initials;
  656. else if (profile.fullname) {
  657. return profile.fullname
  658. .split(/\s+/)
  659. .reduce((memo, word) => {
  660. return memo + word[0];
  661. }, '')
  662. .toUpperCase();
  663. } else {
  664. return this.username[0].toUpperCase();
  665. }
  666. },
  667. getLimitToShowCardsCount() {
  668. const profile = this.profile || {};
  669. return profile.showCardsCountAt;
  670. },
  671. getName() {
  672. const profile = this.profile || {};
  673. return profile.fullname || this.username;
  674. },
  675. getLanguage() {
  676. const profile = this.profile || {};
  677. return profile.language || 'en';
  678. },
  679. getStartDayOfWeek() {
  680. const profile = this.profile || {};
  681. if (typeof profile.startDayOfWeek === 'undefined') {
  682. // default is 'Monday' (1)
  683. return 1;
  684. }
  685. return profile.startDayOfWeek;
  686. },
  687. getTemplatesBoardId() {
  688. return (this.profile || {}).templatesBoardId;
  689. },
  690. getTemplatesBoardSlug() {
  691. return (Boards.findOne((this.profile || {}).templatesBoardId) || {}).slug;
  692. },
  693. remove() {
  694. User.remove({
  695. _id: this._id,
  696. });
  697. },
  698. });
  699. Users.mutations({
  700. toggleBoardStar(boardId) {
  701. const queryKind = this.hasStarred(boardId) ? '$pull' : '$addToSet';
  702. return {
  703. [queryKind]: {
  704. 'profile.starredBoards': boardId,
  705. },
  706. };
  707. },
  708. addInvite(boardId) {
  709. return {
  710. $addToSet: {
  711. 'profile.invitedBoards': boardId,
  712. },
  713. };
  714. },
  715. removeInvite(boardId) {
  716. return {
  717. $pull: {
  718. 'profile.invitedBoards': boardId,
  719. },
  720. };
  721. },
  722. addTag(tag) {
  723. return {
  724. $addToSet: {
  725. 'profile.tags': tag,
  726. },
  727. };
  728. },
  729. removeTag(tag) {
  730. return {
  731. $pull: {
  732. 'profile.tags': tag,
  733. },
  734. };
  735. },
  736. toggleTag(tag) {
  737. if (this.hasTag(tag)) this.removeTag(tag);
  738. else this.addTag(tag);
  739. },
  740. setListSortBy(value) {
  741. return {
  742. $set: {
  743. 'profile.listSortBy': value,
  744. },
  745. };
  746. },
  747. setName(value) {
  748. return {
  749. $set: {
  750. 'profile.fullname': value,
  751. },
  752. };
  753. },
  754. toggleDesktopHandles(value = false) {
  755. return {
  756. $set: {
  757. 'profile.showDesktopDragHandles': !value,
  758. },
  759. };
  760. },
  761. toggleHideCheckedItems() {
  762. const value = this.hasHideCheckedItems();
  763. return {
  764. $set: {
  765. 'profile.hideCheckedItems': !value,
  766. },
  767. };
  768. },
  769. toggleSystem(value = false) {
  770. return {
  771. $set: {
  772. 'profile.hiddenSystemMessages': !value,
  773. },
  774. };
  775. },
  776. toggleFieldsGrid(value = false) {
  777. return {
  778. $set: {
  779. 'profile.customFieldsGrid': !value,
  780. },
  781. };
  782. },
  783. toggleCardMaximized(value = false) {
  784. return {
  785. $set: {
  786. 'profile.cardMaximized': !value,
  787. },
  788. };
  789. },
  790. toggleLabelText(value = false) {
  791. return {
  792. $set: {
  793. 'profile.hiddenMinicardLabelText': !value,
  794. },
  795. };
  796. },
  797. addNotification(activityId) {
  798. return {
  799. $addToSet: {
  800. 'profile.notifications': {
  801. activity: activityId,
  802. },
  803. },
  804. };
  805. },
  806. removeNotification(activityId) {
  807. return {
  808. $pull: {
  809. 'profile.notifications': {
  810. activity: activityId,
  811. },
  812. },
  813. };
  814. },
  815. addEmailBuffer(text) {
  816. return {
  817. $addToSet: {
  818. 'profile.emailBuffer': text,
  819. },
  820. };
  821. },
  822. clearEmailBuffer() {
  823. return {
  824. $set: {
  825. 'profile.emailBuffer': [],
  826. },
  827. };
  828. },
  829. setAvatarUrl(avatarUrl) {
  830. return {
  831. $set: {
  832. 'profile.avatarUrl': avatarUrl,
  833. },
  834. };
  835. },
  836. setShowCardsCountAt(limit) {
  837. return {
  838. $set: {
  839. 'profile.showCardsCountAt': limit,
  840. },
  841. };
  842. },
  843. setStartDayOfWeek(startDay) {
  844. return {
  845. $set: {
  846. 'profile.startDayOfWeek': startDay,
  847. },
  848. };
  849. },
  850. setBoardView(view) {
  851. return {
  852. $set: {
  853. 'profile.boardView': view,
  854. },
  855. };
  856. },
  857. });
  858. Meteor.methods({
  859. setListSortBy(value) {
  860. check(value, String);
  861. Meteor.user().setListSortBy(value);
  862. },
  863. toggleDesktopDragHandles() {
  864. const user = Meteor.user();
  865. user.toggleDesktopHandles(user.hasShowDesktopDragHandles());
  866. },
  867. toggleHideCheckedItems() {
  868. const user = Meteor.user();
  869. user.toggleHideCheckedItems();
  870. },
  871. toggleSystemMessages() {
  872. const user = Meteor.user();
  873. user.toggleSystem(user.hasHiddenSystemMessages());
  874. },
  875. toggleCustomFieldsGrid() {
  876. const user = Meteor.user();
  877. user.toggleFieldsGrid(user.hasCustomFieldsGrid());
  878. },
  879. toggleCardMaximized() {
  880. const user = Meteor.user();
  881. user.toggleCardMaximized(user.hasCardMaximized());
  882. },
  883. toggleMinicardLabelText() {
  884. const user = Meteor.user();
  885. user.toggleLabelText(user.hasHiddenMinicardLabelText());
  886. },
  887. changeLimitToShowCardsCount(limit) {
  888. check(limit, Number);
  889. Meteor.user().setShowCardsCountAt(limit);
  890. },
  891. changeStartDayOfWeek(startDay) {
  892. check(startDay, Number);
  893. Meteor.user().setStartDayOfWeek(startDay);
  894. },
  895. });
  896. if (Meteor.isServer) {
  897. Meteor.methods({
  898. setAllUsersHideSystemMessages() {
  899. if (Meteor.user() && Meteor.user().isAdmin) {
  900. // If setting is missing, add it
  901. Users.update(
  902. {
  903. 'profile.hiddenSystemMessages': {
  904. $exists: false,
  905. },
  906. },
  907. {
  908. $set: {
  909. 'profile.hiddenSystemMessages': true,
  910. },
  911. },
  912. {
  913. multi: true,
  914. },
  915. );
  916. // If setting is false, set it to true
  917. Users.update(
  918. {
  919. 'profile.hiddenSystemMessages': false,
  920. },
  921. {
  922. $set: {
  923. 'profile.hiddenSystemMessages': true,
  924. },
  925. },
  926. {
  927. multi: true,
  928. },
  929. );
  930. return true;
  931. } else {
  932. return false;
  933. }
  934. },
  935. setCreateUser(
  936. fullname,
  937. username,
  938. initials,
  939. password,
  940. isAdmin,
  941. isActive,
  942. email,
  943. importUsernames,
  944. userOrgsArray,
  945. userTeamsArray,
  946. ) {
  947. check(fullname, String);
  948. check(username, String);
  949. check(initials, String);
  950. check(password, String);
  951. check(isAdmin, String);
  952. check(isActive, String);
  953. check(email, String);
  954. check(importUsernames, Array);
  955. check(userOrgsArray, Array);
  956. check(userTeamsArray, Array);
  957. if (Meteor.user() && Meteor.user().isAdmin) {
  958. const nUsersWithUsername = Users.find({
  959. username,
  960. }).count();
  961. const nUsersWithEmail = Users.find({
  962. email,
  963. }).count();
  964. if (nUsersWithUsername > 0) {
  965. throw new Meteor.Error('username-already-taken');
  966. } else if (nUsersWithEmail > 0) {
  967. throw new Meteor.Error('email-already-taken');
  968. } else {
  969. Accounts.createUser({
  970. username,
  971. password,
  972. isAdmin,
  973. isActive,
  974. email: email.toLowerCase(),
  975. from: 'admin',
  976. });
  977. const user =
  978. Users.findOne(username) ||
  979. Users.findOne({
  980. username,
  981. });
  982. if (user) {
  983. Users.update(user._id, {
  984. $set: {
  985. 'profile.fullname': fullname,
  986. importUsernames,
  987. 'profile.initials': initials,
  988. orgs: userOrgsArray,
  989. teams: userTeamsArray,
  990. },
  991. });
  992. }
  993. }
  994. }
  995. },
  996. setUsername(username, userId) {
  997. check(username, String);
  998. check(userId, String);
  999. if (Meteor.user() && Meteor.user().isAdmin) {
  1000. const nUsersWithUsername = Users.find({
  1001. username,
  1002. }).count();
  1003. if (nUsersWithUsername > 0) {
  1004. throw new Meteor.Error('username-already-taken');
  1005. } else {
  1006. Users.update(userId, {
  1007. $set: {
  1008. username,
  1009. },
  1010. });
  1011. }
  1012. }
  1013. },
  1014. setEmail(email, userId) {
  1015. check(email, String);
  1016. check(username, String);
  1017. if (Meteor.user() && Meteor.user().isAdmin) {
  1018. if (Array.isArray(email)) {
  1019. email = email.shift();
  1020. }
  1021. const existingUser = Users.findOne(
  1022. {
  1023. 'emails.address': email,
  1024. },
  1025. {
  1026. fields: {
  1027. _id: 1,
  1028. },
  1029. },
  1030. );
  1031. if (existingUser) {
  1032. throw new Meteor.Error('email-already-taken');
  1033. } else {
  1034. Users.update(userId, {
  1035. $set: {
  1036. emails: [
  1037. {
  1038. address: email,
  1039. verified: false,
  1040. },
  1041. ],
  1042. },
  1043. });
  1044. }
  1045. }
  1046. },
  1047. setUsernameAndEmail(username, email, userId) {
  1048. check(username, String);
  1049. check(email, String);
  1050. check(userId, String);
  1051. if (Meteor.user() && Meteor.user().isAdmin) {
  1052. if (Array.isArray(email)) {
  1053. email = email.shift();
  1054. }
  1055. Meteor.call('setUsername', username, userId);
  1056. Meteor.call('setEmail', email, userId);
  1057. }
  1058. },
  1059. setPassword(newPassword, userId) {
  1060. check(userId, String);
  1061. check(newPassword, String);
  1062. if (Meteor.user() && Meteor.user().isAdmin) {
  1063. if (Meteor.user().isAdmin) {
  1064. Accounts.setPassword(userId, newPassword);
  1065. }
  1066. }
  1067. },
  1068. setEmailVerified(email, verified, userId) {
  1069. check(email, String);
  1070. check(verified, Boolean);
  1071. check(userId, String);
  1072. if (Meteor.user() && Meteor.user().isAdmin) {
  1073. Users.update(userId, {
  1074. $set: {
  1075. emails: [
  1076. {
  1077. address: email,
  1078. verified,
  1079. },
  1080. ],
  1081. },
  1082. });
  1083. }
  1084. },
  1085. setInitials(initials, userId) {
  1086. check(initials, String);
  1087. check(userId, String);
  1088. if (Meteor.user() && Meteor.user().isAdmin) {
  1089. Users.update(userId, {
  1090. $set: {
  1091. 'profile.initials': initials,
  1092. },
  1093. });
  1094. }
  1095. },
  1096. // we accept userId, username, email
  1097. inviteUserToBoard(username, boardId) {
  1098. check(username, String);
  1099. check(boardId, String);
  1100. const inviter = Meteor.user();
  1101. const board = Boards.findOne(boardId);
  1102. const allowInvite =
  1103. inviter &&
  1104. board &&
  1105. board.members &&
  1106. _.contains(_.pluck(board.members, 'userId'), inviter._id) &&
  1107. _.where(board.members, {
  1108. userId: inviter._id,
  1109. })[0].isActive;
  1110. // GitHub issue 2060
  1111. //_.where(board.members, { userId: inviter._id })[0].isAdmin;
  1112. if (!allowInvite) throw new Meteor.Error('error-board-notAMember');
  1113. this.unblock();
  1114. const posAt = username.indexOf('@');
  1115. let user = null;
  1116. if (posAt >= 0) {
  1117. user = Users.findOne({
  1118. emails: {
  1119. $elemMatch: {
  1120. address: username,
  1121. },
  1122. },
  1123. });
  1124. } else {
  1125. user =
  1126. Users.findOne(username) ||
  1127. Users.findOne({
  1128. username,
  1129. });
  1130. }
  1131. if (user) {
  1132. if (user._id === inviter._id)
  1133. throw new Meteor.Error('error-user-notAllowSelf');
  1134. } else {
  1135. if (posAt <= 0) throw new Meteor.Error('error-user-doesNotExist');
  1136. if (
  1137. Settings.findOne({
  1138. disableRegistration: true,
  1139. })
  1140. ) {
  1141. throw new Meteor.Error('error-user-notCreated');
  1142. }
  1143. // Set in lowercase email before creating account
  1144. const email = username.toLowerCase();
  1145. username = email.substring(0, posAt);
  1146. const newUserId = Accounts.createUser({
  1147. username,
  1148. email,
  1149. });
  1150. if (!newUserId) throw new Meteor.Error('error-user-notCreated');
  1151. // assume new user speak same language with inviter
  1152. if (inviter.profile && inviter.profile.language) {
  1153. Users.update(newUserId, {
  1154. $set: {
  1155. 'profile.language': inviter.profile.language,
  1156. },
  1157. });
  1158. }
  1159. Accounts.sendEnrollmentEmail(newUserId);
  1160. user = Users.findOne(newUserId);
  1161. }
  1162. board.addMember(user._id);
  1163. user.addInvite(boardId);
  1164. //Check if there is a subtasks board
  1165. if (board.subtasksDefaultBoardId) {
  1166. const subBoard = Boards.findOne(board.subtasksDefaultBoardId);
  1167. //If there is, also add user to that board
  1168. if (subBoard) {
  1169. subBoard.addMember(user._id);
  1170. user.addInvite(subBoard._id);
  1171. }
  1172. }
  1173. try {
  1174. const fullName = inviter.profile !== undefined && inviter.profile.fullname !== undefined ? inviter.profile.fullname : "";
  1175. const userFullName = user.profile !== undefined && user.profile.fullname !== undefined ? user.profile.fullname : "";
  1176. const params = {
  1177. user: userFullName != "" ? userFullName + " (" + user.username + " )" : user.username,
  1178. inviter: fullName != "" ? fullName + " (" + inviter.username + " )" : inviter.username,
  1179. board: board.title,
  1180. url: board.absoluteUrl(),
  1181. };
  1182. const lang = user.getLanguage();
  1183. /*
  1184. if (process.env.MAIL_SERVICE !== '') {
  1185. let transporter = nodemailer.createTransport({
  1186. service: process.env.MAIL_SERVICE,
  1187. auth: {
  1188. user: process.env.MAIL_SERVICE_USER,
  1189. pass: process.env.MAIL_SERVICE_PASSWORD
  1190. },
  1191. })
  1192. let info = transporter.sendMail({
  1193. to: user.emails[0].address.toLowerCase(),
  1194. from: Accounts.emailTemplates.from,
  1195. subject: TAPi18n.__('email-invite-subject', params, lang),
  1196. text: TAPi18n.__('email-invite-text', params, lang),
  1197. })
  1198. } else {
  1199. Email.send({
  1200. to: user.emails[0].address.toLowerCase(),
  1201. from: Accounts.emailTemplates.from,
  1202. subject: TAPi18n.__('email-invite-subject', params, lang),
  1203. text: TAPi18n.__('email-invite-text', params, lang),
  1204. });
  1205. }
  1206. */
  1207. Email.send({
  1208. to: user.emails[0].address.toLowerCase(),
  1209. from: Accounts.emailTemplates.from,
  1210. subject: TAPi18n.__('email-invite-subject', params, lang),
  1211. text: TAPi18n.__('email-invite-text', params, lang),
  1212. });
  1213. } catch (e) {
  1214. throw new Meteor.Error('email-fail', e.message);
  1215. }
  1216. return {
  1217. username: user.username,
  1218. email: user.emails[0].address,
  1219. };
  1220. },
  1221. impersonate(userId) {
  1222. check(userId, String);
  1223. if (!Meteor.users.findOne(userId))
  1224. throw new Meteor.Error(404, 'User not found');
  1225. if (!Meteor.user().isAdmin)
  1226. throw new Meteor.Error(403, 'Permission denied');
  1227. ImpersonatedUsers.insert({ adminId: Meteor.user()._id, userId: userId, reason: 'clickedImpersonate' });
  1228. this.setUserId(userId);
  1229. },
  1230. isImpersonated(userId) {
  1231. check(userId, String);
  1232. const isImpersonated = ImpersonatedUsers.findOne({
  1233. userId: userId,
  1234. });
  1235. return isImpersonated;
  1236. },
  1237. });
  1238. Accounts.onCreateUser((options, user) => {
  1239. const userCount = Users.find().count();
  1240. if (userCount === 0) {
  1241. user.isAdmin = true;
  1242. }
  1243. if (user.services.oidc) {
  1244. let email = user.services.oidc.email;
  1245. if (Array.isArray(email)) {
  1246. email = email.shift();
  1247. }
  1248. email = email.toLowerCase();
  1249. user.username = user.services.oidc.username;
  1250. user.emails = [
  1251. {
  1252. address: email,
  1253. verified: true,
  1254. },
  1255. ];
  1256. const initials = user.services.oidc.fullname
  1257. .split(/\s+/)
  1258. .reduce((memo, word) => {
  1259. return memo + word[0];
  1260. }, '')
  1261. .toUpperCase();
  1262. user.profile = {
  1263. initials,
  1264. fullname: user.services.oidc.fullname,
  1265. boardView: 'board-view-swimlanes',
  1266. };
  1267. user.authenticationMethod = 'oauth2';
  1268. // see if any existing user has this email address or username, otherwise create new
  1269. const existingUser = Meteor.users.findOne({
  1270. $or: [
  1271. {
  1272. 'emails.address': email,
  1273. },
  1274. {
  1275. username: user.username,
  1276. },
  1277. ],
  1278. });
  1279. if (!existingUser) return user;
  1280. // copy across new service info
  1281. const service = _.keys(user.services)[0];
  1282. existingUser.services[service] = user.services[service];
  1283. existingUser.emails = user.emails;
  1284. existingUser.username = user.username;
  1285. existingUser.profile = user.profile;
  1286. existingUser.authenticationMethod = user.authenticationMethod;
  1287. Meteor.users.remove({
  1288. _id: user._id,
  1289. });
  1290. Meteor.users.remove({
  1291. _id: existingUser._id,
  1292. }); // is going to be created again
  1293. return existingUser;
  1294. }
  1295. if (options.from === 'admin') {
  1296. user.createdThroughApi = true;
  1297. return user;
  1298. }
  1299. const disableRegistration = Settings.findOne().disableRegistration;
  1300. // If this is the first Authentication by the ldap and self registration disabled
  1301. if (disableRegistration && options && options.ldap) {
  1302. user.authenticationMethod = 'ldap';
  1303. return user;
  1304. }
  1305. // If self registration enabled
  1306. if (!disableRegistration) {
  1307. return user;
  1308. }
  1309. if (!options || !options.profile) {
  1310. throw new Meteor.Error(
  1311. 'error-invitation-code-blank',
  1312. 'The invitation code is required',
  1313. );
  1314. }
  1315. const invitationCode = InvitationCodes.findOne({
  1316. code: options.profile.invitationcode,
  1317. email: options.email,
  1318. valid: true,
  1319. });
  1320. if (!invitationCode) {
  1321. throw new Meteor.Error(
  1322. 'error-invitation-code-not-exist',
  1323. // eslint-disable-next-line quotes
  1324. "The invitation code doesn't exist",
  1325. );
  1326. } else {
  1327. user.profile = {
  1328. icode: options.profile.invitationcode,
  1329. };
  1330. user.profile.boardView = 'board-view-swimlanes';
  1331. // Deletes the invitation code after the user was created successfully.
  1332. setTimeout(
  1333. Meteor.bindEnvironment(() => {
  1334. InvitationCodes.remove({
  1335. _id: invitationCode._id,
  1336. });
  1337. }),
  1338. 200,
  1339. );
  1340. return user;
  1341. }
  1342. });
  1343. }
  1344. const addCronJob = _.debounce(
  1345. Meteor.bindEnvironment(function notificationCleanupDebounced() {
  1346. // passed in the removeAge has to be a number standing for the number of days after a notification is read before we remove it
  1347. const envRemoveAge =
  1348. process.env.NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE;
  1349. // default notifications will be removed 2 days after they are read
  1350. const defaultRemoveAge = 2;
  1351. const removeAge = parseInt(envRemoveAge, 10) || defaultRemoveAge;
  1352. SyncedCron.add({
  1353. name: 'notification_cleanup',
  1354. schedule: (parser) => parser.text('every 1 days'),
  1355. job: () => {
  1356. for (const user of Users.find()) {
  1357. if (!user.profile || !user.profile.notifications) continue;
  1358. for (const notification of user.profile.notifications) {
  1359. if (notification.read) {
  1360. const removeDate = new Date(notification.read);
  1361. removeDate.setDate(removeDate.getDate() + removeAge);
  1362. if (removeDate <= new Date()) {
  1363. user.removeNotification(notification.activity);
  1364. }
  1365. }
  1366. }
  1367. }
  1368. },
  1369. });
  1370. SyncedCron.start();
  1371. }),
  1372. 500,
  1373. );
  1374. if (Meteor.isServer) {
  1375. // Let mongoDB ensure username unicity
  1376. Meteor.startup(() => {
  1377. allowedSortValues.forEach((value) => {
  1378. Lists._collection._ensureIndex(value);
  1379. });
  1380. Users._collection._ensureIndex({
  1381. modifiedAt: -1,
  1382. });
  1383. Users._collection._ensureIndex(
  1384. {
  1385. username: 1,
  1386. },
  1387. {
  1388. unique: true,
  1389. },
  1390. );
  1391. Meteor.defer(() => {
  1392. addCronJob();
  1393. });
  1394. });
  1395. // OLD WAY THIS CODE DID WORK: When user is last admin of board,
  1396. // if admin is removed, board is removed.
  1397. // NOW THIS IS COMMENTED OUT, because other board users still need to be able
  1398. // to use that board, and not have board deleted.
  1399. // Someone can be later changed to be admin of board, by making change to database.
  1400. // TODO: Add UI for changing someone as board admin.
  1401. //Users.before.remove((userId, doc) => {
  1402. // Boards
  1403. // .find({members: {$elemMatch: {userId: doc._id, isAdmin: true}}})
  1404. // .forEach((board) => {
  1405. // // If only one admin for the board
  1406. // if (board.members.filter((e) => e.isAdmin).length === 1) {
  1407. // Boards.remove(board._id);
  1408. // }
  1409. // });
  1410. //});
  1411. // Each board document contains the de-normalized number of users that have
  1412. // starred it. If the user star or unstar a board, we need to update this
  1413. // counter.
  1414. // We need to run this code on the server only, otherwise the incrementation
  1415. // will be done twice.
  1416. Users.after.update(function (userId, user, fieldNames) {
  1417. // The `starredBoards` list is hosted on the `profile` field. If this
  1418. // field hasn't been modificated we don't need to run this hook.
  1419. if (!_.contains(fieldNames, 'profile')) return;
  1420. // To calculate a diff of board starred ids, we get both the previous
  1421. // and the newly board ids list
  1422. function getStarredBoardsIds(doc) {
  1423. return doc.profile && doc.profile.starredBoards;
  1424. }
  1425. const oldIds = getStarredBoardsIds(this.previous);
  1426. const newIds = getStarredBoardsIds(user);
  1427. // The _.difference(a, b) method returns the values from a that are not in
  1428. // b. We use it to find deleted and newly inserted ids by using it in one
  1429. // direction and then in the other.
  1430. function incrementBoards(boardsIds, inc) {
  1431. boardsIds.forEach((boardId) => {
  1432. Boards.update(boardId, {
  1433. $inc: {
  1434. stars: inc,
  1435. },
  1436. });
  1437. });
  1438. }
  1439. incrementBoards(_.difference(oldIds, newIds), -1);
  1440. incrementBoards(_.difference(newIds, oldIds), +1);
  1441. });
  1442. // Override getUserId so that we can TODO get the current userId
  1443. const fakeUserId = new Meteor.EnvironmentVariable();
  1444. const getUserId = CollectionHooks.getUserId;
  1445. CollectionHooks.getUserId = () => {
  1446. return fakeUserId.get() || getUserId();
  1447. };
  1448. if (!isSandstorm) {
  1449. Users.after.insert((userId, doc) => {
  1450. const fakeUser = {
  1451. extendAutoValueContext: {
  1452. userId: doc._id,
  1453. },
  1454. };
  1455. fakeUserId.withValue(doc._id, () => {
  1456. /*
  1457. // Insert the Welcome Board
  1458. Boards.insert({
  1459. title: TAPi18n.__('welcome-board'),
  1460. permission: 'private',
  1461. }, fakeUser, (err, boardId) => {
  1462. Swimlanes.insert({
  1463. title: TAPi18n.__('welcome-swimlane'),
  1464. boardId,
  1465. sort: 1,
  1466. }, fakeUser);
  1467. ['welcome-list1', 'welcome-list2'].forEach((title, titleIndex) => {
  1468. Lists.insert({title: TAPi18n.__(title), boardId, sort: titleIndex}, fakeUser);
  1469. });
  1470. });
  1471. */
  1472. // Insert Template Container
  1473. const Future = require('fibers/future');
  1474. const future1 = new Future();
  1475. const future2 = new Future();
  1476. const future3 = new Future();
  1477. Boards.insert(
  1478. {
  1479. title: TAPi18n.__('templates'),
  1480. permission: 'private',
  1481. type: 'template-container',
  1482. },
  1483. fakeUser,
  1484. (err, boardId) => {
  1485. // Insert the reference to our templates board
  1486. Users.update(fakeUserId.get(), {
  1487. $set: {
  1488. 'profile.templatesBoardId': boardId,
  1489. },
  1490. });
  1491. // Insert the card templates swimlane
  1492. Swimlanes.insert(
  1493. {
  1494. title: TAPi18n.__('card-templates-swimlane'),
  1495. boardId,
  1496. sort: 1,
  1497. type: 'template-container',
  1498. },
  1499. fakeUser,
  1500. (err, swimlaneId) => {
  1501. // Insert the reference to out card templates swimlane
  1502. Users.update(fakeUserId.get(), {
  1503. $set: {
  1504. 'profile.cardTemplatesSwimlaneId': swimlaneId,
  1505. },
  1506. });
  1507. future1.return();
  1508. },
  1509. );
  1510. // Insert the list templates swimlane
  1511. Swimlanes.insert(
  1512. {
  1513. title: TAPi18n.__('list-templates-swimlane'),
  1514. boardId,
  1515. sort: 2,
  1516. type: 'template-container',
  1517. },
  1518. fakeUser,
  1519. (err, swimlaneId) => {
  1520. // Insert the reference to out list templates swimlane
  1521. Users.update(fakeUserId.get(), {
  1522. $set: {
  1523. 'profile.listTemplatesSwimlaneId': swimlaneId,
  1524. },
  1525. });
  1526. future2.return();
  1527. },
  1528. );
  1529. // Insert the board templates swimlane
  1530. Swimlanes.insert(
  1531. {
  1532. title: TAPi18n.__('board-templates-swimlane'),
  1533. boardId,
  1534. sort: 3,
  1535. type: 'template-container',
  1536. },
  1537. fakeUser,
  1538. (err, swimlaneId) => {
  1539. // Insert the reference to out board templates swimlane
  1540. Users.update(fakeUserId.get(), {
  1541. $set: {
  1542. 'profile.boardTemplatesSwimlaneId': swimlaneId,
  1543. },
  1544. });
  1545. future3.return();
  1546. },
  1547. );
  1548. },
  1549. );
  1550. // HACK
  1551. future1.wait();
  1552. future2.wait();
  1553. future3.wait();
  1554. // End of Insert Template Container
  1555. });
  1556. });
  1557. }
  1558. Users.after.insert((userId, doc) => {
  1559. // HACK
  1560. doc = Users.findOne({
  1561. _id: doc._id,
  1562. });
  1563. if (doc.createdThroughApi) {
  1564. // The admin user should be able to create a user despite disabling registration because
  1565. // it is two different things (registration and creation).
  1566. // So, when a new user is created via the api (only admin user can do that) one must avoid
  1567. // the disableRegistration check.
  1568. // Issue : https://github.com/wekan/wekan/issues/1232
  1569. // PR : https://github.com/wekan/wekan/pull/1251
  1570. Users.update(doc._id, {
  1571. $set: {
  1572. createdThroughApi: '',
  1573. },
  1574. });
  1575. return;
  1576. }
  1577. //invite user to corresponding boards
  1578. const disableRegistration = Settings.findOne().disableRegistration;
  1579. // If ldap, bypass the inviation code if the self registration isn't allowed.
  1580. // TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
  1581. if (doc.authenticationMethod !== 'ldap' && disableRegistration) {
  1582. let invitationCode = null;
  1583. if(doc.authenticationMethod.toLowerCase() == 'oauth2')
  1584. { // OIDC authentication mode
  1585. invitationCode = InvitationCodes.findOne({
  1586. email: doc.emails[0].address.toLowerCase(),
  1587. valid: true,
  1588. });
  1589. }
  1590. else{
  1591. invitationCode = InvitationCodes.findOne({
  1592. code: doc.profile.icode,
  1593. valid: true,
  1594. });
  1595. }
  1596. if (!invitationCode) {
  1597. throw new Meteor.Error('error-invitation-code-not-exist');
  1598. } else {
  1599. invitationCode.boardsToBeInvited.forEach((boardId) => {
  1600. const board = Boards.findOne(boardId);
  1601. board.addMember(doc._id);
  1602. });
  1603. if (!doc.profile) {
  1604. doc.profile = {};
  1605. }
  1606. doc.profile.invitedBoards = invitationCode.boardsToBeInvited;
  1607. Users.update(doc._id, {
  1608. $set: {
  1609. profile: doc.profile,
  1610. },
  1611. });
  1612. InvitationCodes.update(invitationCode._id, {
  1613. $set: {
  1614. valid: false,
  1615. },
  1616. });
  1617. }
  1618. }
  1619. });
  1620. }
  1621. // USERS REST API
  1622. if (Meteor.isServer) {
  1623. // Middleware which checks that API is enabled.
  1624. JsonRoutes.Middleware.use(function (req, res, next) {
  1625. const api = req.url.startsWith('/api');
  1626. if ((api === true && process.env.WITH_API === 'true') || api === false) {
  1627. return next();
  1628. } else {
  1629. res.writeHead(301, {
  1630. Location: '/',
  1631. });
  1632. return res.end();
  1633. }
  1634. });
  1635. /**
  1636. * @operation get_current_user
  1637. *
  1638. * @summary returns the current user
  1639. * @return_type Users
  1640. */
  1641. JsonRoutes.add('GET', '/api/user', function (req, res) {
  1642. try {
  1643. Authentication.checkLoggedIn(req.userId);
  1644. const data = Meteor.users.findOne({
  1645. _id: req.userId,
  1646. });
  1647. delete data.services;
  1648. // get all boards where the user is member of
  1649. let boards = Boards.find(
  1650. {
  1651. type: 'board',
  1652. 'members.userId': req.userId,
  1653. },
  1654. {
  1655. fields: {
  1656. _id: 1,
  1657. members: 1,
  1658. },
  1659. },
  1660. );
  1661. boards = boards.map((b) => {
  1662. const u = b.members.find((m) => m.userId === req.userId);
  1663. delete u.userId;
  1664. u.boardId = b._id;
  1665. return u;
  1666. });
  1667. data.boards = boards;
  1668. JsonRoutes.sendResult(res, {
  1669. code: 200,
  1670. data,
  1671. });
  1672. } catch (error) {
  1673. JsonRoutes.sendResult(res, {
  1674. code: 200,
  1675. data: error,
  1676. });
  1677. }
  1678. });
  1679. /**
  1680. * @operation get_all_users
  1681. *
  1682. * @summary return all the users
  1683. *
  1684. * @description Only the admin user (the first user) can call the REST API.
  1685. * @return_type [{ _id: string,
  1686. * username: string}]
  1687. */
  1688. JsonRoutes.add('GET', '/api/users', function (req, res) {
  1689. try {
  1690. Authentication.checkUserId(req.userId);
  1691. JsonRoutes.sendResult(res, {
  1692. code: 200,
  1693. data: Meteor.users.find({}).map(function (doc) {
  1694. return {
  1695. _id: doc._id,
  1696. username: doc.username,
  1697. };
  1698. }),
  1699. });
  1700. } catch (error) {
  1701. JsonRoutes.sendResult(res, {
  1702. code: 200,
  1703. data: error,
  1704. });
  1705. }
  1706. });
  1707. /**
  1708. * @operation get_user
  1709. *
  1710. * @summary get a given user
  1711. *
  1712. * @description Only the admin user (the first user) can call the REST API.
  1713. *
  1714. * @param {string} userId the user ID or username
  1715. * @return_type Users
  1716. */
  1717. JsonRoutes.add('GET', '/api/users/:userId', function (req, res) {
  1718. try {
  1719. Authentication.checkUserId(req.userId);
  1720. let id = req.params.userId;
  1721. let user = Meteor.users.findOne({
  1722. _id: id,
  1723. });
  1724. if (!user) {
  1725. user = Meteor.users.findOne({
  1726. username: id,
  1727. });
  1728. id = user._id;
  1729. }
  1730. // get all boards where the user is member of
  1731. let boards = Boards.find(
  1732. {
  1733. type: 'board',
  1734. 'members.userId': id,
  1735. },
  1736. {
  1737. fields: {
  1738. _id: 1,
  1739. members: 1,
  1740. },
  1741. },
  1742. );
  1743. boards = boards.map((b) => {
  1744. const u = b.members.find((m) => m.userId === id);
  1745. delete u.userId;
  1746. u.boardId = b._id;
  1747. return u;
  1748. });
  1749. user.boards = boards;
  1750. JsonRoutes.sendResult(res, {
  1751. code: 200,
  1752. data: user,
  1753. });
  1754. } catch (error) {
  1755. JsonRoutes.sendResult(res, {
  1756. code: 200,
  1757. data: error,
  1758. });
  1759. }
  1760. });
  1761. /**
  1762. * @operation edit_user
  1763. *
  1764. * @summary edit a given user
  1765. *
  1766. * @description Only the admin user (the first user) can call the REST API.
  1767. *
  1768. * Possible values for *action*:
  1769. * - `takeOwnership`: The admin takes the ownership of ALL boards of the user (archived and not archived) where the user is admin on.
  1770. * - `disableLogin`: Disable a user (the user is not allowed to login and his login tokens are purged)
  1771. * - `enableLogin`: Enable a user
  1772. *
  1773. * @param {string} userId the user ID
  1774. * @param {string} action the action
  1775. * @return_type {_id: string,
  1776. * title: string}
  1777. */
  1778. JsonRoutes.add('PUT', '/api/users/:userId', function (req, res) {
  1779. try {
  1780. Authentication.checkUserId(req.userId);
  1781. const id = req.params.userId;
  1782. const action = req.body.action;
  1783. let data = Meteor.users.findOne({
  1784. _id: id,
  1785. });
  1786. if (data !== undefined) {
  1787. if (action === 'takeOwnership') {
  1788. data = Boards.find(
  1789. {
  1790. 'members.userId': id,
  1791. 'members.isAdmin': true,
  1792. },
  1793. {
  1794. sort: {
  1795. sort: 1 /* boards default sorting */,
  1796. },
  1797. },
  1798. ).map(function (board) {
  1799. if (board.hasMember(req.userId)) {
  1800. board.removeMember(req.userId);
  1801. }
  1802. board.changeOwnership(id, req.userId);
  1803. return {
  1804. _id: board._id,
  1805. title: board.title,
  1806. };
  1807. });
  1808. } else {
  1809. if (action === 'disableLogin' && id !== req.userId) {
  1810. Users.update(
  1811. {
  1812. _id: id,
  1813. },
  1814. {
  1815. $set: {
  1816. loginDisabled: true,
  1817. 'services.resume.loginTokens': '',
  1818. },
  1819. },
  1820. );
  1821. } else if (action === 'enableLogin') {
  1822. Users.update(
  1823. {
  1824. _id: id,
  1825. },
  1826. {
  1827. $set: {
  1828. loginDisabled: '',
  1829. },
  1830. },
  1831. );
  1832. }
  1833. data = Meteor.users.findOne({
  1834. _id: id,
  1835. });
  1836. }
  1837. }
  1838. JsonRoutes.sendResult(res, {
  1839. code: 200,
  1840. data,
  1841. });
  1842. } catch (error) {
  1843. JsonRoutes.sendResult(res, {
  1844. code: 200,
  1845. data: error,
  1846. });
  1847. }
  1848. });
  1849. /**
  1850. * @operation add_board_member
  1851. * @tag Boards
  1852. *
  1853. * @summary Add New Board Member with Role
  1854. *
  1855. * @description Only the admin user (the first user) can call the REST API.
  1856. *
  1857. * **Note**: see [Boards.set_board_member_permission](#set_board_member_permission)
  1858. * to later change the permissions.
  1859. *
  1860. * @param {string} boardId the board ID
  1861. * @param {string} userId the user ID
  1862. * @param {boolean} isAdmin is the user an admin of the board
  1863. * @param {boolean} isNoComments disable comments
  1864. * @param {boolean} isCommentOnly only enable comments
  1865. * @return_type {_id: string,
  1866. * title: string}
  1867. */
  1868. JsonRoutes.add(
  1869. 'POST',
  1870. '/api/boards/:boardId/members/:userId/add',
  1871. function (req, res) {
  1872. try {
  1873. Authentication.checkUserId(req.userId);
  1874. const userId = req.params.userId;
  1875. const boardId = req.params.boardId;
  1876. const action = req.body.action;
  1877. const { isAdmin, isNoComments, isCommentOnly } = req.body;
  1878. let data = Meteor.users.findOne({
  1879. _id: userId,
  1880. });
  1881. if (data !== undefined) {
  1882. if (action === 'add') {
  1883. data = Boards.find({
  1884. _id: boardId,
  1885. }).map(function (board) {
  1886. if (!board.hasMember(userId)) {
  1887. board.addMember(userId);
  1888. function isTrue(data) {
  1889. return data.toLowerCase() === 'true';
  1890. }
  1891. board.setMemberPermission(
  1892. userId,
  1893. isTrue(isAdmin),
  1894. isTrue(isNoComments),
  1895. isTrue(isCommentOnly),
  1896. userId,
  1897. );
  1898. }
  1899. return {
  1900. _id: board._id,
  1901. title: board.title,
  1902. };
  1903. });
  1904. }
  1905. }
  1906. JsonRoutes.sendResult(res, {
  1907. code: 200,
  1908. data: query,
  1909. });
  1910. } catch (error) {
  1911. JsonRoutes.sendResult(res, {
  1912. code: 200,
  1913. data: error,
  1914. });
  1915. }
  1916. },
  1917. );
  1918. /**
  1919. * @operation remove_board_member
  1920. * @tag Boards
  1921. *
  1922. * @summary Remove Member from Board
  1923. *
  1924. * @description Only the admin user (the first user) can call the REST API.
  1925. *
  1926. * @param {string} boardId the board ID
  1927. * @param {string} userId the user ID
  1928. * @param {string} action the action (needs to be `remove`)
  1929. * @return_type {_id: string,
  1930. * title: string}
  1931. */
  1932. JsonRoutes.add(
  1933. 'POST',
  1934. '/api/boards/:boardId/members/:userId/remove',
  1935. function (req, res) {
  1936. try {
  1937. Authentication.checkUserId(req.userId);
  1938. const userId = req.params.userId;
  1939. const boardId = req.params.boardId;
  1940. const action = req.body.action;
  1941. let data = Meteor.users.findOne({
  1942. _id: userId,
  1943. });
  1944. if (data !== undefined) {
  1945. if (action === 'remove') {
  1946. data = Boards.find({
  1947. _id: boardId,
  1948. }).map(function (board) {
  1949. if (board.hasMember(userId)) {
  1950. board.removeMember(userId);
  1951. }
  1952. return {
  1953. _id: board._id,
  1954. title: board.title,
  1955. };
  1956. });
  1957. }
  1958. }
  1959. JsonRoutes.sendResult(res, {
  1960. code: 200,
  1961. data: query,
  1962. });
  1963. } catch (error) {
  1964. JsonRoutes.sendResult(res, {
  1965. code: 200,
  1966. data: error,
  1967. });
  1968. }
  1969. },
  1970. );
  1971. /**
  1972. * @operation new_user
  1973. *
  1974. * @summary Create a new user
  1975. *
  1976. * @description Only the admin user (the first user) can call the REST API.
  1977. *
  1978. * @param {string} username the new username
  1979. * @param {string} email the email of the new user
  1980. * @param {string} password the password of the new user
  1981. * @return_type {_id: string}
  1982. */
  1983. JsonRoutes.add('POST', '/api/users/', function (req, res) {
  1984. try {
  1985. Authentication.checkUserId(req.userId);
  1986. const id = Accounts.createUser({
  1987. username: req.body.username,
  1988. email: req.body.email,
  1989. password: req.body.password,
  1990. from: 'admin',
  1991. });
  1992. JsonRoutes.sendResult(res, {
  1993. code: 200,
  1994. data: {
  1995. _id: id,
  1996. },
  1997. });
  1998. } catch (error) {
  1999. JsonRoutes.sendResult(res, {
  2000. code: 200,
  2001. data: error,
  2002. });
  2003. }
  2004. });
  2005. /**
  2006. * @operation delete_user
  2007. *
  2008. * @summary Delete a user
  2009. *
  2010. * @description Only the admin user (the first user) can call the REST API.
  2011. *
  2012. * @param {string} userId the ID of the user to delete
  2013. * @return_type {_id: string}
  2014. */
  2015. JsonRoutes.add('DELETE', '/api/users/:userId', function (req, res) {
  2016. try {
  2017. Authentication.checkUserId(req.userId);
  2018. const id = req.params.userId;
  2019. // Delete user is enabled, but is still has bug of leaving empty user avatars
  2020. // to boards: boards members, card members and assignees have
  2021. // empty users. So it would be better to delete user from all boards before
  2022. // deleting user.
  2023. // See:
  2024. // - wekan/client/components/settings/peopleBody.jade deleteButton
  2025. // - wekan/client/components/settings/peopleBody.js deleteButton
  2026. // - wekan/client/components/sidebar/sidebar.js Popup.afterConfirm('removeMember'
  2027. // that does now remove member from board, card members and assignees correctly,
  2028. // but that should be used to remove user from all boards similarly
  2029. // - wekan/models/users.js Delete is not enabled
  2030. Meteor.users.remove({ _id: id });
  2031. JsonRoutes.sendResult(res, {
  2032. code: 200,
  2033. data: {
  2034. _id: id,
  2035. },
  2036. });
  2037. } catch (error) {
  2038. JsonRoutes.sendResult(res, {
  2039. code: 200,
  2040. data: error,
  2041. });
  2042. }
  2043. });
  2044. /**
  2045. * @operation create_user_token
  2046. *
  2047. * @summary Create a user token
  2048. *
  2049. * @description Only the admin user (the first user) can call the REST API.
  2050. *
  2051. * @param {string} userId the ID of the user to create token for.
  2052. * @return_type {_id: string}
  2053. */
  2054. JsonRoutes.add('POST', '/api/createtoken/:userId', function (req, res) {
  2055. try {
  2056. Authentication.checkUserId(req.userId);
  2057. const id = req.params.userId;
  2058. const token = Accounts._generateStampedLoginToken();
  2059. Accounts._insertLoginToken(id, token);
  2060. JsonRoutes.sendResult(res, {
  2061. code: 200,
  2062. data: {
  2063. _id: id,
  2064. authToken: token.token,
  2065. },
  2066. });
  2067. } catch (error) {
  2068. JsonRoutes.sendResult(res, {
  2069. code: 200,
  2070. data: error,
  2071. });
  2072. }
  2073. });
  2074. }
  2075. export default Users;