users.js 65 KB

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