users.js 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670
  1. import { ReactiveCache, ReactiveMiniMongoIndex } 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. if (!notification.activityObj && typeof(notification.activity) === 'string') {
  823. notification.activityObj = ReactiveMiniMongoIndex.getActivityWithId(notification.activity);
  824. }
  825. }
  826. // newest first. don't use reverse() because it changes the array inplace, so sometimes the array is reversed twice and oldest items at top again
  827. const ret = notifications.toReversed();
  828. return ret;
  829. },
  830. hasShowDesktopDragHandles() {
  831. const profile = this.profile || {};
  832. return profile.showDesktopDragHandles || false;
  833. },
  834. hasHideCheckedItems() {
  835. const profile = this.profile || {};
  836. return profile.hideCheckedItems || false;
  837. },
  838. hasHiddenSystemMessages() {
  839. const profile = this.profile || {};
  840. return profile.hiddenSystemMessages || false;
  841. },
  842. hasCustomFieldsGrid() {
  843. const profile = this.profile || {};
  844. return profile.customFieldsGrid || false;
  845. },
  846. hasCardMaximized() {
  847. const profile = this.profile || {};
  848. return profile.cardMaximized || false;
  849. },
  850. hasHiddenMinicardLabelText() {
  851. const profile = this.profile || {};
  852. return profile.hiddenMinicardLabelText || false;
  853. },
  854. hasRescuedCardDescription() {
  855. const profile = this.profile || {};
  856. return profile.rescueCardDescription || false;
  857. },
  858. getEmailBuffer() {
  859. const { emailBuffer = [] } = this.profile || {};
  860. return emailBuffer;
  861. },
  862. getInitials() {
  863. const profile = this.profile || {};
  864. if (profile.initials) return profile.initials;
  865. else if (profile.fullname) {
  866. return profile.fullname
  867. .split(/\s+/)
  868. .reduce((memo, word) => {
  869. return memo + word[0];
  870. }, '')
  871. .toUpperCase();
  872. } else {
  873. return this.username[0].toUpperCase();
  874. }
  875. },
  876. getLimitToShowCardsCount() {
  877. const profile = this.profile || {};
  878. return profile.showCardsCountAt;
  879. },
  880. getName() {
  881. const profile = this.profile || {};
  882. return profile.fullname || this.username;
  883. },
  884. getLanguage() {
  885. const profile = this.profile || {};
  886. return profile.language || 'en';
  887. },
  888. getStartDayOfWeek() {
  889. const profile = this.profile || {};
  890. if (typeof profile.startDayOfWeek === 'undefined') {
  891. // default is 'Monday' (1)
  892. return 1;
  893. }
  894. return profile.startDayOfWeek;
  895. },
  896. getTemplatesBoardId() {
  897. return (this.profile || {}).templatesBoardId;
  898. },
  899. getTemplatesBoardSlug() {
  900. //return (ReactiveCache.getBoard((this.profile || {}).templatesBoardId) || {}).slug;
  901. return 'templates';
  902. },
  903. remove() {
  904. User.remove({
  905. _id: this._id,
  906. });
  907. },
  908. });
  909. Users.mutations({
  910. /** set the confirmed board id/swimlane id/list id of a board
  911. * @param boardId the current board id
  912. * @param options an object with the confirmed field values
  913. */
  914. setMoveAndCopyDialogOption(boardId, options) {
  915. let currentOptions = this.getMoveAndCopyDialogOptions();
  916. currentOptions[boardId] = options;
  917. return {
  918. $set: {
  919. 'profile.moveAndCopyDialog': currentOptions,
  920. },
  921. };
  922. },
  923. /** set the confirmed board id/swimlane id/list id/card id of a board (move checklist)
  924. * @param boardId the current board id
  925. * @param options an object with the confirmed field values
  926. */
  927. setMoveChecklistDialogOption(boardId, options) {
  928. let currentOptions = this.getMoveChecklistDialogOptions();
  929. currentOptions[boardId] = options;
  930. return {
  931. $set: {
  932. 'profile.moveChecklistDialog': currentOptions,
  933. },
  934. };
  935. },
  936. /** set the confirmed board id/swimlane id/list id/card id of a board (copy checklist)
  937. * @param boardId the current board id
  938. * @param options an object with the confirmed field values
  939. */
  940. setCopyChecklistDialogOption(boardId, options) {
  941. let currentOptions = this.getCopyChecklistDialogOptions();
  942. currentOptions[boardId] = options;
  943. return {
  944. $set: {
  945. 'profile.copyChecklistDialog': currentOptions,
  946. },
  947. };
  948. },
  949. toggleBoardStar(boardId) {
  950. const queryKind = this.hasStarred(boardId) ? '$pull' : '$addToSet';
  951. return {
  952. [queryKind]: {
  953. 'profile.starredBoards': boardId,
  954. },
  955. };
  956. },
  957. addInvite(boardId) {
  958. return {
  959. $addToSet: {
  960. 'profile.invitedBoards': boardId,
  961. },
  962. };
  963. },
  964. removeInvite(boardId) {
  965. return {
  966. $pull: {
  967. 'profile.invitedBoards': boardId,
  968. },
  969. };
  970. },
  971. addTag(tag) {
  972. return {
  973. $addToSet: {
  974. 'profile.tags': tag,
  975. },
  976. };
  977. },
  978. removeTag(tag) {
  979. return {
  980. $pull: {
  981. 'profile.tags': tag,
  982. },
  983. };
  984. },
  985. toggleTag(tag) {
  986. if (this.hasTag(tag)) this.removeTag(tag);
  987. else this.addTag(tag);
  988. },
  989. setListSortBy(value) {
  990. return {
  991. $set: {
  992. 'profile.listSortBy': value,
  993. },
  994. };
  995. },
  996. setName(value) {
  997. return {
  998. $set: {
  999. 'profile.fullname': value,
  1000. },
  1001. };
  1002. },
  1003. toggleDesktopHandles(value = false) {
  1004. return {
  1005. $set: {
  1006. 'profile.showDesktopDragHandles': !value,
  1007. },
  1008. };
  1009. },
  1010. toggleHideCheckedItems() {
  1011. const value = this.hasHideCheckedItems();
  1012. return {
  1013. $set: {
  1014. 'profile.hideCheckedItems': !value,
  1015. },
  1016. };
  1017. },
  1018. toggleSystem(value = false) {
  1019. return {
  1020. $set: {
  1021. 'profile.hiddenSystemMessages': !value,
  1022. },
  1023. };
  1024. },
  1025. toggleFieldsGrid(value = false) {
  1026. return {
  1027. $set: {
  1028. 'profile.customFieldsGrid': !value,
  1029. },
  1030. };
  1031. },
  1032. toggleCardMaximized(value = false) {
  1033. return {
  1034. $set: {
  1035. 'profile.cardMaximized': !value,
  1036. },
  1037. };
  1038. },
  1039. toggleLabelText(value = false) {
  1040. return {
  1041. $set: {
  1042. 'profile.hiddenMinicardLabelText': !value,
  1043. },
  1044. };
  1045. },
  1046. toggleRescueCardDescription(value = false) {
  1047. return {
  1048. $set: {
  1049. 'profile.rescueCardDescription': !value,
  1050. },
  1051. };
  1052. },
  1053. addNotification(activityId) {
  1054. return {
  1055. $addToSet: {
  1056. 'profile.notifications': {
  1057. activity: activityId,
  1058. },
  1059. },
  1060. };
  1061. },
  1062. removeNotification(activityId) {
  1063. return {
  1064. $pull: {
  1065. 'profile.notifications': {
  1066. activity: activityId,
  1067. },
  1068. },
  1069. };
  1070. },
  1071. addEmailBuffer(text) {
  1072. return {
  1073. $addToSet: {
  1074. 'profile.emailBuffer': text,
  1075. },
  1076. };
  1077. },
  1078. clearEmailBuffer() {
  1079. return {
  1080. $set: {
  1081. 'profile.emailBuffer': [],
  1082. },
  1083. };
  1084. },
  1085. setAvatarUrl(avatarUrl) {
  1086. return {
  1087. $set: {
  1088. 'profile.avatarUrl': avatarUrl,
  1089. },
  1090. };
  1091. },
  1092. setShowCardsCountAt(limit) {
  1093. return {
  1094. $set: {
  1095. 'profile.showCardsCountAt': limit,
  1096. },
  1097. };
  1098. },
  1099. setStartDayOfWeek(startDay) {
  1100. return {
  1101. $set: {
  1102. 'profile.startDayOfWeek': startDay,
  1103. },
  1104. };
  1105. },
  1106. setBoardView(view) {
  1107. return {
  1108. $set: {
  1109. 'profile.boardView': view,
  1110. },
  1111. };
  1112. },
  1113. setListWidth(boardId, listId, width) {
  1114. let currentWidths = this.getListWidths();
  1115. if (!currentWidths[boardId]) {
  1116. currentWidths[boardId] = {};
  1117. }
  1118. currentWidths[boardId][listId] = width;
  1119. return {
  1120. $set: {
  1121. 'profile.listWidths': currentWidths,
  1122. },
  1123. };
  1124. },
  1125. setSwimlaneHeight(boardId, swimlaneId, height) {
  1126. let currentHeights = this.getSwimlaneHeights();
  1127. if (!currentHeights[boardId]) {
  1128. currentHeights[boardId] = {};
  1129. }
  1130. currentHeights[boardId][swimlaneId] = height;
  1131. return {
  1132. $set: {
  1133. 'profile.swimlaneHeights': currentHeights,
  1134. },
  1135. };
  1136. },
  1137. });
  1138. Meteor.methods({
  1139. setListSortBy(value) {
  1140. check(value, String);
  1141. ReactiveCache.getCurrentUser().setListSortBy(value);
  1142. },
  1143. toggleDesktopDragHandles() {
  1144. const user = ReactiveCache.getCurrentUser();
  1145. user.toggleDesktopHandles(user.hasShowDesktopDragHandles());
  1146. },
  1147. toggleHideCheckedItems() {
  1148. const user = ReactiveCache.getCurrentUser();
  1149. user.toggleHideCheckedItems();
  1150. },
  1151. toggleSystemMessages() {
  1152. const user = ReactiveCache.getCurrentUser();
  1153. user.toggleSystem(user.hasHiddenSystemMessages());
  1154. },
  1155. toggleCustomFieldsGrid() {
  1156. const user = ReactiveCache.getCurrentUser();
  1157. user.toggleFieldsGrid(user.hasCustomFieldsGrid());
  1158. },
  1159. toggleCardMaximized() {
  1160. const user = ReactiveCache.getCurrentUser();
  1161. user.toggleCardMaximized(user.hasCardMaximized());
  1162. },
  1163. toggleMinicardLabelText() {
  1164. const user = ReactiveCache.getCurrentUser();
  1165. user.toggleLabelText(user.hasHiddenMinicardLabelText());
  1166. },
  1167. toggleRescueCardDescription() {
  1168. const user = ReactiveCache.getCurrentUser();
  1169. user.toggleRescueCardDescription(user.hasRescuedCardDescription());
  1170. },
  1171. changeLimitToShowCardsCount(limit) {
  1172. check(limit, Number);
  1173. ReactiveCache.getCurrentUser().setShowCardsCountAt(limit);
  1174. },
  1175. changeStartDayOfWeek(startDay) {
  1176. check(startDay, Number);
  1177. ReactiveCache.getCurrentUser().setStartDayOfWeek(startDay);
  1178. },
  1179. applyListWidth(boardId, listId, width) {
  1180. check(boardId, String);
  1181. check(listId, String);
  1182. check(width, Number);
  1183. const user = Meteor.user();
  1184. user.setListWidth(boardId, listId, width);
  1185. },
  1186. applySwimlaneHeight(boardId, swimlaneId, height) {
  1187. check(boardId, String);
  1188. check(swimlaneId, String);
  1189. check(height, Number);
  1190. const user = Meteor.user();
  1191. user.setSwimlaneHeight(boardId, swimlaneId, height);
  1192. },
  1193. });
  1194. if (Meteor.isServer) {
  1195. Meteor.methods({
  1196. setAllUsersHideSystemMessages() {
  1197. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1198. // If setting is missing, add it
  1199. Users.update(
  1200. {
  1201. 'profile.hiddenSystemMessages': {
  1202. $exists: false,
  1203. },
  1204. },
  1205. {
  1206. $set: {
  1207. 'profile.hiddenSystemMessages': true,
  1208. },
  1209. },
  1210. {
  1211. multi: true,
  1212. },
  1213. );
  1214. // If setting is false, set it to true
  1215. Users.update(
  1216. {
  1217. 'profile.hiddenSystemMessages': false,
  1218. },
  1219. {
  1220. $set: {
  1221. 'profile.hiddenSystemMessages': true,
  1222. },
  1223. },
  1224. {
  1225. multi: true,
  1226. },
  1227. );
  1228. return true;
  1229. } else {
  1230. return false;
  1231. }
  1232. },
  1233. setCreateUser(
  1234. fullname,
  1235. username,
  1236. initials,
  1237. password,
  1238. isAdmin,
  1239. isActive,
  1240. email,
  1241. importUsernames,
  1242. userOrgsArray,
  1243. userTeamsArray,
  1244. ) {
  1245. check(fullname, String);
  1246. check(username, String);
  1247. check(initials, String);
  1248. check(password, String);
  1249. check(isAdmin, String);
  1250. check(isActive, String);
  1251. check(email, String);
  1252. check(importUsernames, Array);
  1253. check(userOrgsArray, Array);
  1254. check(userTeamsArray, Array);
  1255. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1256. // Thanks to mc-marcy and xet7 !
  1257. if (fullname.includes('/') ||
  1258. username.includes('/') ||
  1259. email.includes('/') ||
  1260. initials.includes('/')) {
  1261. return false;
  1262. }
  1263. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1264. const nUsersWithUsername = ReactiveCache.getUsers({
  1265. username,
  1266. }).length;
  1267. const nUsersWithEmail = ReactiveCache.getUsers({
  1268. email,
  1269. }).length;
  1270. if (nUsersWithUsername > 0) {
  1271. throw new Meteor.Error('username-already-taken');
  1272. } else if (nUsersWithEmail > 0) {
  1273. throw new Meteor.Error('email-already-taken');
  1274. } else {
  1275. Accounts.createUser({
  1276. username,
  1277. password,
  1278. isAdmin,
  1279. isActive,
  1280. email: email.toLowerCase(),
  1281. from: 'admin',
  1282. });
  1283. const user =
  1284. ReactiveCache.getUser(username) ||
  1285. ReactiveCache.getUser({ username });
  1286. if (user) {
  1287. Users.update(user._id, {
  1288. $set: {
  1289. 'profile.fullname': fullname,
  1290. importUsernames,
  1291. 'profile.initials': initials,
  1292. orgs: userOrgsArray,
  1293. teams: userTeamsArray,
  1294. },
  1295. });
  1296. }
  1297. }
  1298. }
  1299. },
  1300. setUsername(username, userId) {
  1301. check(username, String);
  1302. check(userId, String);
  1303. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1304. // Thanks to mc-marcy and xet7 !
  1305. if (username.includes('/') ||
  1306. userId.includes('/')) {
  1307. return false;
  1308. }
  1309. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1310. const nUsersWithUsername = ReactiveCache.getUsers({
  1311. username,
  1312. }).length;
  1313. if (nUsersWithUsername > 0) {
  1314. throw new Meteor.Error('username-already-taken');
  1315. } else {
  1316. Users.update(userId, {
  1317. $set: {
  1318. username,
  1319. },
  1320. });
  1321. }
  1322. }
  1323. },
  1324. setEmail(email, userId) {
  1325. check(email, String);
  1326. check(username, String);
  1327. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1328. // Thanks to mc-marcy and xet7 !
  1329. if (username.includes('/') ||
  1330. email.includes('/')) {
  1331. return false;
  1332. }
  1333. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1334. if (Array.isArray(email)) {
  1335. email = email.shift();
  1336. }
  1337. const existingUser = ReactiveCache.getUser(
  1338. {
  1339. 'emails.address': email,
  1340. },
  1341. {
  1342. fields: {
  1343. _id: 1,
  1344. },
  1345. },
  1346. );
  1347. if (existingUser) {
  1348. throw new Meteor.Error('email-already-taken');
  1349. } else {
  1350. Users.update(userId, {
  1351. $set: {
  1352. emails: [
  1353. {
  1354. address: email,
  1355. verified: false,
  1356. },
  1357. ],
  1358. },
  1359. });
  1360. }
  1361. }
  1362. },
  1363. setUsernameAndEmail(username, email, userId) {
  1364. check(username, String);
  1365. check(email, String);
  1366. check(userId, String);
  1367. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1368. // Thanks to mc-marcy and xet7 !
  1369. if (username.includes('/') ||
  1370. email.includes('/') ||
  1371. userId.includes('/')) {
  1372. return false;
  1373. }
  1374. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1375. if (Array.isArray(email)) {
  1376. email = email.shift();
  1377. }
  1378. Meteor.call('setUsername', username, userId);
  1379. Meteor.call('setEmail', email, userId);
  1380. }
  1381. },
  1382. setPassword(newPassword, userId) {
  1383. check(userId, String);
  1384. check(newPassword, String);
  1385. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1386. Accounts.setPassword(userId, newPassword);
  1387. }
  1388. },
  1389. setEmailVerified(email, verified, userId) {
  1390. check(email, String);
  1391. check(verified, Boolean);
  1392. check(userId, String);
  1393. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1394. // Thanks to mc-marcy and xet7 !
  1395. if (email.includes('/') ||
  1396. userId.includes('/')) {
  1397. return false;
  1398. }
  1399. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1400. Users.update(userId, {
  1401. $set: {
  1402. emails: [
  1403. {
  1404. address: email,
  1405. verified,
  1406. },
  1407. ],
  1408. },
  1409. });
  1410. }
  1411. },
  1412. setInitials(initials, userId) {
  1413. check(initials, String);
  1414. check(userId, String);
  1415. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1416. // Thanks to mc-marcy and xet7 !
  1417. if (initials.includes('/') ||
  1418. userId.includes('/')) {
  1419. return false;
  1420. }
  1421. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1422. Users.update(userId, {
  1423. $set: {
  1424. 'profile.initials': initials,
  1425. },
  1426. });
  1427. }
  1428. },
  1429. // we accept userId, username, email
  1430. inviteUserToBoard(username, boardId) {
  1431. check(username, String);
  1432. check(boardId, String);
  1433. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1434. // Thanks to mc-marcy and xet7 !
  1435. if (username.includes('/') ||
  1436. boardId.includes('/')) {
  1437. return false;
  1438. }
  1439. const inviter = ReactiveCache.getCurrentUser();
  1440. const board = ReactiveCache.getBoard(boardId);
  1441. const allowInvite =
  1442. inviter &&
  1443. board &&
  1444. board.members &&
  1445. _.contains(_.pluck(board.members, 'userId'), inviter._id) &&
  1446. _.where(board.members, {
  1447. userId: inviter._id,
  1448. })[0].isActive;
  1449. // GitHub issue 2060
  1450. //_.where(board.members, { userId: inviter._id })[0].isAdmin;
  1451. if (!allowInvite) throw new Meteor.Error('error-board-notAMember');
  1452. this.unblock();
  1453. const posAt = username.indexOf('@');
  1454. let user = null;
  1455. if (posAt >= 0) {
  1456. user = ReactiveCache.getUser({
  1457. emails: {
  1458. $elemMatch: {
  1459. address: username,
  1460. },
  1461. },
  1462. });
  1463. } else {
  1464. user =
  1465. ReactiveCache.getUser(username) ||
  1466. ReactiveCache.getUser({ username });
  1467. }
  1468. if (user) {
  1469. if (user._id === inviter._id)
  1470. throw new Meteor.Error('error-user-notAllowSelf');
  1471. } else {
  1472. if (posAt <= 0) throw new Meteor.Error('error-user-doesNotExist');
  1473. if (ReactiveCache.getCurrentSetting().disableRegistration) {
  1474. throw new Meteor.Error('error-user-notCreated');
  1475. }
  1476. // Set in lowercase email before creating account
  1477. const email = username.toLowerCase();
  1478. username = email.substring(0, posAt);
  1479. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1480. // Thanks to mc-marcy and xet7 !
  1481. if (username.includes('/') ||
  1482. email.includes('/')) {
  1483. return false;
  1484. }
  1485. const newUserId = Accounts.createUser({
  1486. username,
  1487. email,
  1488. });
  1489. if (!newUserId) throw new Meteor.Error('error-user-notCreated');
  1490. // assume new user speak same language with inviter
  1491. if (inviter.profile && inviter.profile.language) {
  1492. Users.update(newUserId, {
  1493. $set: {
  1494. 'profile.language': inviter.profile.language,
  1495. },
  1496. });
  1497. }
  1498. Accounts.sendEnrollmentEmail(newUserId);
  1499. user = ReactiveCache.getUser(newUserId);
  1500. }
  1501. board.addMember(user._id);
  1502. user.addInvite(boardId);
  1503. //Check if there is a subtasks board
  1504. if (board.subtasksDefaultBoardId) {
  1505. const subBoard = ReactiveCache.getBoard(board.subtasksDefaultBoardId);
  1506. //If there is, also add user to that board
  1507. if (subBoard) {
  1508. subBoard.addMember(user._id);
  1509. user.addInvite(subBoard._id);
  1510. }
  1511. }
  1512. try {
  1513. const fullName =
  1514. inviter.profile !== undefined &&
  1515. inviter.profile.fullname !== undefined
  1516. ? inviter.profile.fullname
  1517. : '';
  1518. const userFullName =
  1519. user.profile !== undefined && user.profile.fullname !== undefined
  1520. ? user.profile.fullname
  1521. : '';
  1522. const params = {
  1523. user:
  1524. userFullName != ''
  1525. ? userFullName + ' (' + user.username + ' )'
  1526. : user.username,
  1527. inviter:
  1528. fullName != ''
  1529. ? fullName + ' (' + inviter.username + ' )'
  1530. : inviter.username,
  1531. board: board.title,
  1532. url: board.absoluteUrl(),
  1533. };
  1534. const lang = user.getLanguage();
  1535. /*
  1536. if (process.env.MAIL_SERVICE !== '') {
  1537. let transporter = nodemailer.createTransport({
  1538. service: process.env.MAIL_SERVICE,
  1539. auth: {
  1540. user: process.env.MAIL_SERVICE_USER,
  1541. pass: process.env.MAIL_SERVICE_PASSWORD
  1542. },
  1543. })
  1544. let info = transporter.sendMail({
  1545. to: user.emails[0].address.toLowerCase(),
  1546. from: Accounts.emailTemplates.from,
  1547. subject: TAPi18n.__('email-invite-subject', params, lang),
  1548. text: TAPi18n.__('email-invite-text', params, lang),
  1549. })
  1550. } else {
  1551. Email.send({
  1552. to: user.emails[0].address.toLowerCase(),
  1553. from: Accounts.emailTemplates.from,
  1554. subject: TAPi18n.__('email-invite-subject', params, lang),
  1555. text: TAPi18n.__('email-invite-text', params, lang),
  1556. });
  1557. }
  1558. */
  1559. Email.send({
  1560. to: user.emails[0].address.toLowerCase(),
  1561. from: Accounts.emailTemplates.from,
  1562. subject: TAPi18n.__('email-invite-subject', params, lang),
  1563. text: TAPi18n.__('email-invite-text', params, lang),
  1564. });
  1565. } catch (e) {
  1566. throw new Meteor.Error('email-fail', e.message);
  1567. }
  1568. return {
  1569. username: user.username,
  1570. email: user.emails[0].address,
  1571. };
  1572. },
  1573. impersonate(userId) {
  1574. check(userId, String);
  1575. if (!ReactiveCache.getUser(userId))
  1576. throw new Meteor.Error(404, 'User not found');
  1577. if (!ReactiveCache.getCurrentUser().isAdmin)
  1578. throw new Meteor.Error(403, 'Permission denied');
  1579. ImpersonatedUsers.insert({
  1580. adminId: ReactiveCache.getCurrentUser()._id,
  1581. userId: userId,
  1582. reason: 'clickedImpersonate',
  1583. });
  1584. this.setUserId(userId);
  1585. },
  1586. isImpersonated(userId) {
  1587. check(userId, String);
  1588. const isImpersonated = ReactiveCache.getImpersonatedUser({ userId: userId });
  1589. return isImpersonated;
  1590. },
  1591. setUsersTeamsTeamDisplayName(teamId, teamDisplayName) {
  1592. check(teamId, String);
  1593. check(teamDisplayName, String);
  1594. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1595. ReactiveCache.getUsers({
  1596. teams: {
  1597. $elemMatch: { teamId: teamId },
  1598. },
  1599. }).forEach((user) => {
  1600. Users.update(
  1601. {
  1602. _id: user._id,
  1603. teams: {
  1604. $elemMatch: { teamId: teamId },
  1605. },
  1606. },
  1607. {
  1608. $set: {
  1609. 'teams.$.teamDisplayName': teamDisplayName,
  1610. },
  1611. },
  1612. );
  1613. });
  1614. }
  1615. },
  1616. setUsersOrgsOrgDisplayName(orgId, orgDisplayName) {
  1617. check(orgId, String);
  1618. check(orgDisplayName, String);
  1619. if (ReactiveCache.getCurrentUser()?.isAdmin) {
  1620. ReactiveCache.getUsers({
  1621. orgs: {
  1622. $elemMatch: { orgId: orgId },
  1623. },
  1624. }).forEach((user) => {
  1625. Users.update(
  1626. {
  1627. _id: user._id,
  1628. orgs: {
  1629. $elemMatch: { orgId: orgId },
  1630. },
  1631. },
  1632. {
  1633. $set: {
  1634. 'orgs.$.orgDisplayName': orgDisplayName,
  1635. },
  1636. },
  1637. );
  1638. });
  1639. }
  1640. },
  1641. });
  1642. Accounts.onCreateUser((options, user) => {
  1643. const userCount = ReactiveCache.getUsers({}, {}, true).count();
  1644. user.isAdmin = userCount === 0;
  1645. if (user.services.oidc) {
  1646. let email = user.services.oidc.email;
  1647. if (Array.isArray(email)) {
  1648. email = email.shift();
  1649. }
  1650. email = email.toLowerCase();
  1651. user.username = user.services.oidc.username;
  1652. user.emails = [
  1653. {
  1654. address: email,
  1655. verified: true,
  1656. },
  1657. ];
  1658. // Prevent Hyperlink Injection https://github.com/wekan/wekan/issues/5176
  1659. // Thanks to mc-marcy and xet7 !
  1660. if (user.username.includes('/') ||
  1661. email.includes('/')) {
  1662. return false;
  1663. }
  1664. const initials = user.services.oidc.fullname
  1665. .split(/\s+/)
  1666. .reduce((memo, word) => {
  1667. return memo + word[0];
  1668. }, '')
  1669. .toUpperCase();
  1670. user.profile = {
  1671. initials,
  1672. fullname: user.services.oidc.fullname,
  1673. boardView: 'board-view-swimlanes',
  1674. };
  1675. user.authenticationMethod = 'oauth2';
  1676. // see if any existing user has this email address or username, otherwise create new
  1677. const existingUser = ReactiveCache.getUser({
  1678. $or: [
  1679. {
  1680. 'emails.address': email,
  1681. },
  1682. {
  1683. username: user.username,
  1684. },
  1685. ],
  1686. });
  1687. if (!existingUser) return user;
  1688. // copy across new service info
  1689. const service = _.keys(user.services)[0];
  1690. existingUser.services[service] = user.services[service];
  1691. existingUser.emails = user.emails;
  1692. existingUser.username = user.username;
  1693. existingUser.profile = user.profile;
  1694. existingUser.authenticationMethod = user.authenticationMethod;
  1695. Meteor.users.remove({
  1696. _id: user._id,
  1697. });
  1698. Meteor.users.remove({
  1699. _id: existingUser._id,
  1700. }); // is going to be created again
  1701. return existingUser;
  1702. }
  1703. if (options.from === 'admin') {
  1704. user.createdThroughApi = true;
  1705. return user;
  1706. }
  1707. const disableRegistration = ReactiveCache.getCurrentSetting().disableRegistration;
  1708. // If this is the first Authentication by the ldap and self registration disabled
  1709. if (disableRegistration && options && options.ldap) {
  1710. user.authenticationMethod = 'ldap';
  1711. return user;
  1712. }
  1713. // If self registration enabled
  1714. if (!disableRegistration) {
  1715. return user;
  1716. }
  1717. if (!options || !options.profile) {
  1718. throw new Meteor.Error(
  1719. 'error-invitation-code-blank',
  1720. 'The invitation code is required',
  1721. );
  1722. }
  1723. const invitationCode = ReactiveCache.getInvitationCode({
  1724. code: options.profile.invitationcode,
  1725. email: options.email,
  1726. valid: true,
  1727. });
  1728. if (!invitationCode) {
  1729. throw new Meteor.Error(
  1730. 'error-invitation-code-not-exist',
  1731. // eslint-disable-next-line quotes
  1732. "The invitation code doesn't exist",
  1733. );
  1734. } else {
  1735. user.profile = {
  1736. icode: options.profile.invitationcode,
  1737. };
  1738. user.profile.boardView = 'board-view-swimlanes';
  1739. // Deletes the invitation code after the user was created successfully.
  1740. setTimeout(
  1741. Meteor.bindEnvironment(() => {
  1742. InvitationCodes.remove({
  1743. _id: invitationCode._id,
  1744. });
  1745. }),
  1746. 200,
  1747. );
  1748. return user;
  1749. }
  1750. });
  1751. }
  1752. const addCronJob = _.debounce(
  1753. Meteor.bindEnvironment(function notificationCleanupDebounced() {
  1754. // passed in the removeAge has to be a number standing for the number of days after a notification is read before we remove it
  1755. const envRemoveAge =
  1756. process.env.NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE;
  1757. // default notifications will be removed 2 days after they are read
  1758. const defaultRemoveAge = 2;
  1759. const removeAge = parseInt(envRemoveAge, 10) || defaultRemoveAge;
  1760. SyncedCron.add({
  1761. name: 'notification_cleanup',
  1762. schedule: (parser) => parser.text('every 1 days'),
  1763. job: () => {
  1764. for (const user of ReactiveCache.getUsers()) {
  1765. if (!user.profile || !user.profile.notifications) continue;
  1766. for (const notification of user.profile.notifications) {
  1767. if (notification.read) {
  1768. const removeDate = new Date(notification.read);
  1769. removeDate.setDate(removeDate.getDate() + removeAge);
  1770. if (removeDate <= new Date()) {
  1771. user.removeNotification(notification.activity);
  1772. }
  1773. }
  1774. }
  1775. }
  1776. },
  1777. });
  1778. SyncedCron.start();
  1779. }),
  1780. 500,
  1781. );
  1782. if (Meteor.isServer) {
  1783. // Let mongoDB ensure username unicity
  1784. Meteor.startup(() => {
  1785. allowedSortValues.forEach((value) => {
  1786. Lists._collection.createIndex(value);
  1787. });
  1788. Users._collection.createIndex({
  1789. modifiedAt: -1,
  1790. });
  1791. // Avatar URLs from CollectionFS to Meteor-Files, at users collection avatarUrl field:
  1792. Users.find({ "profile.avatarUrl": { $regex: "/cfs/files/avatars/" } }).forEach(function (doc) {
  1793. doc.profile.avatarUrl = doc.profile.avatarUrl.replace("/cfs/files/avatars/", "/cdn/storage/avatars/");
  1794. // Try to fix Users.save is not a fuction, by commenting it out:
  1795. //Users.save(doc);
  1796. });
  1797. /* TODO: Optionally, for additional complexity:
  1798. a) Support SubURLs with parthname from ROOT_URL
  1799. b) Remove beginning or avatar URL, replace it with pathname and new avatar URL
  1800. c) Does all avatar and attachment URLs need to be fixed every time when starting or restarting?
  1801. d) What if avatar URL is at some other server? In that case, links would point incorrectly to this instance, if ROOT_URL and path part is removed.
  1802. doc.profile.avatarUrl = process.env.ROOT_URL.pathname + doc.profile.avatarUrl.replace("/cfs/files/avatars/", "/cdn/storage/avatars/").substring(str.indexOf("/cdn/storage/avatars"));
  1803. */
  1804. /* Commented out extra index because of IndexOptionsConflict.
  1805. Users._collection.createIndex(
  1806. {
  1807. username: 1,
  1808. },
  1809. {
  1810. unique: true,
  1811. },
  1812. );
  1813. */
  1814. Meteor.defer(() => {
  1815. addCronJob();
  1816. });
  1817. });
  1818. // OLD WAY THIS CODE DID WORK: When user is last admin of board,
  1819. // if admin is removed, board is removed.
  1820. // NOW THIS IS COMMENTED OUT, because other board users still need to be able
  1821. // to use that board, and not have board deleted.
  1822. // Someone can be later changed to be admin of board, by making change to database.
  1823. // TODO: Add UI for changing someone as board admin.
  1824. //Users.before.remove((userId, doc) => {
  1825. // Boards
  1826. // .find({members: {$elemMatch: {userId: doc._id, isAdmin: true}}})
  1827. // .forEach((board) => {
  1828. // // If only one admin for the board
  1829. // if (board.members.filter((e) => e.isAdmin).length === 1) {
  1830. // Boards.remove(board._id);
  1831. // }
  1832. // });
  1833. //});
  1834. // Each board document contains the de-normalized number of users that have
  1835. // starred it. If the user star or unstar a board, we need to update this
  1836. // counter.
  1837. // We need to run this code on the server only, otherwise the incrementation
  1838. // will be done twice.
  1839. Users.after.update(function (userId, user, fieldNames) {
  1840. // The `starredBoards` list is hosted on the `profile` field. If this
  1841. // field hasn't been modificated we don't need to run this hook.
  1842. if (!_.contains(fieldNames, 'profile')) return;
  1843. // To calculate a diff of board starred ids, we get both the previous
  1844. // and the newly board ids list
  1845. function getStarredBoardsIds(doc) {
  1846. return doc.profile && doc.profile.starredBoards;
  1847. }
  1848. const oldIds = getStarredBoardsIds(this.previous);
  1849. const newIds = getStarredBoardsIds(user);
  1850. // The _.difference(a, b) method returns the values from a that are not in
  1851. // b. We use it to find deleted and newly inserted ids by using it in one
  1852. // direction and then in the other.
  1853. function incrementBoards(boardsIds, inc) {
  1854. boardsIds.forEach((boardId) => {
  1855. Boards.update(boardId, {
  1856. $inc: {
  1857. stars: inc,
  1858. },
  1859. });
  1860. });
  1861. }
  1862. incrementBoards(_.difference(oldIds, newIds), -1);
  1863. incrementBoards(_.difference(newIds, oldIds), +1);
  1864. });
  1865. // Override getUserId so that we can TODO get the current userId
  1866. const fakeUserId = new Meteor.EnvironmentVariable();
  1867. const getUserId = CollectionHooks.getUserId;
  1868. CollectionHooks.getUserId = () => {
  1869. return fakeUserId.get() || getUserId();
  1870. };
  1871. if (!isSandstorm) {
  1872. Users.after.insert((userId, doc) => {
  1873. const fakeUser = {
  1874. extendAutoValueContext: {
  1875. userId: doc._id,
  1876. },
  1877. };
  1878. fakeUserId.withValue(doc._id, () => {
  1879. /*
  1880. // Insert the Welcome Board
  1881. Boards.insert({
  1882. title: TAPi18n.__('welcome-board'),
  1883. permission: 'private',
  1884. }, fakeUser, (err, boardId) => {
  1885. Swimlanes.insert({
  1886. title: TAPi18n.__('welcome-swimlane'),
  1887. boardId,
  1888. sort: 1,
  1889. }, fakeUser);
  1890. ['welcome-list1', 'welcome-list2'].forEach((title, titleIndex) => {
  1891. Lists.insert({title: TAPi18n.__(title), boardId, sort: titleIndex}, fakeUser);
  1892. });
  1893. });
  1894. */
  1895. // Insert Template Container
  1896. const Future = require('fibers/future');
  1897. const future1 = new Future();
  1898. const future2 = new Future();
  1899. const future3 = new Future();
  1900. Boards.insert(
  1901. {
  1902. title: TAPi18n.__('templates'),
  1903. permission: 'private',
  1904. type: 'template-container',
  1905. },
  1906. fakeUser,
  1907. (err, boardId) => {
  1908. // Insert the reference to our templates board
  1909. Users.update(fakeUserId.get(), {
  1910. $set: {
  1911. 'profile.templatesBoardId': boardId,
  1912. },
  1913. });
  1914. // Insert the card templates swimlane
  1915. Swimlanes.insert(
  1916. {
  1917. title: TAPi18n.__('card-templates-swimlane'),
  1918. boardId,
  1919. sort: 1,
  1920. type: 'template-container',
  1921. },
  1922. fakeUser,
  1923. (err, swimlaneId) => {
  1924. // Insert the reference to out card templates swimlane
  1925. Users.update(fakeUserId.get(), {
  1926. $set: {
  1927. 'profile.cardTemplatesSwimlaneId': swimlaneId,
  1928. },
  1929. });
  1930. future1.return();
  1931. },
  1932. );
  1933. // Insert the list templates swimlane
  1934. Swimlanes.insert(
  1935. {
  1936. title: TAPi18n.__('list-templates-swimlane'),
  1937. boardId,
  1938. sort: 2,
  1939. type: 'template-container',
  1940. },
  1941. fakeUser,
  1942. (err, swimlaneId) => {
  1943. // Insert the reference to out list templates swimlane
  1944. Users.update(fakeUserId.get(), {
  1945. $set: {
  1946. 'profile.listTemplatesSwimlaneId': swimlaneId,
  1947. },
  1948. });
  1949. future2.return();
  1950. },
  1951. );
  1952. // Insert the board templates swimlane
  1953. Swimlanes.insert(
  1954. {
  1955. title: TAPi18n.__('board-templates-swimlane'),
  1956. boardId,
  1957. sort: 3,
  1958. type: 'template-container',
  1959. },
  1960. fakeUser,
  1961. (err, swimlaneId) => {
  1962. // Insert the reference to out board templates swimlane
  1963. Users.update(fakeUserId.get(), {
  1964. $set: {
  1965. 'profile.boardTemplatesSwimlaneId': swimlaneId,
  1966. },
  1967. });
  1968. future3.return();
  1969. },
  1970. );
  1971. },
  1972. );
  1973. // HACK
  1974. future1.wait();
  1975. future2.wait();
  1976. future3.wait();
  1977. // End of Insert Template Container
  1978. });
  1979. });
  1980. }
  1981. Users.after.insert((userId, doc) => {
  1982. // HACK
  1983. doc = ReactiveCache.getUser(doc._id);
  1984. if (doc.createdThroughApi) {
  1985. // The admin user should be able to create a user despite disabling registration because
  1986. // it is two different things (registration and creation).
  1987. // So, when a new user is created via the api (only admin user can do that) one must avoid
  1988. // the disableRegistration check.
  1989. // Issue : https://github.com/wekan/wekan/issues/1232
  1990. // PR : https://github.com/wekan/wekan/pull/1251
  1991. Users.update(doc._id, {
  1992. $set: {
  1993. createdThroughApi: '',
  1994. },
  1995. });
  1996. return;
  1997. }
  1998. //invite user to corresponding boards
  1999. const disableRegistration = ReactiveCache.getCurrentSetting().disableRegistration;
  2000. // If ldap, bypass the inviation code if the self registration isn't allowed.
  2001. // TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
  2002. if (doc.authenticationMethod !== 'ldap' && disableRegistration) {
  2003. let invitationCode = null;
  2004. if (doc.authenticationMethod.toLowerCase() == 'oauth2') {
  2005. // OIDC authentication mode
  2006. invitationCode = ReactiveCache.getInvitationCode({
  2007. email: doc.emails[0].address.toLowerCase(),
  2008. valid: true,
  2009. });
  2010. } else {
  2011. invitationCode = ReactiveCache.getInvitationCode({
  2012. code: doc.profile.icode,
  2013. valid: true,
  2014. });
  2015. }
  2016. if (!invitationCode) {
  2017. throw new Meteor.Error('error-invitation-code-not-exist');
  2018. } else {
  2019. invitationCode.boardsToBeInvited.forEach((boardId) => {
  2020. const board = ReactiveCache.getBoard(boardId);
  2021. board.addMember(doc._id);
  2022. });
  2023. if (!doc.profile) {
  2024. doc.profile = {};
  2025. }
  2026. doc.profile.invitedBoards = invitationCode.boardsToBeInvited;
  2027. Users.update(doc._id, {
  2028. $set: {
  2029. profile: doc.profile,
  2030. },
  2031. });
  2032. InvitationCodes.update(invitationCode._id, {
  2033. $set: {
  2034. valid: false,
  2035. },
  2036. });
  2037. }
  2038. }
  2039. });
  2040. }
  2041. // USERS REST API
  2042. if (Meteor.isServer) {
  2043. // Middleware which checks that API is enabled.
  2044. JsonRoutes.Middleware.use(function (req, res, next) {
  2045. const api = req.url.startsWith('/api');
  2046. if ((api === true && process.env.WITH_API === 'true') || api === false) {
  2047. return next();
  2048. } else {
  2049. res.writeHead(301, {
  2050. Location: '/',
  2051. });
  2052. return res.end();
  2053. }
  2054. });
  2055. /**
  2056. * @operation get_current_user
  2057. *
  2058. * @summary returns the current user
  2059. * @return_type Users
  2060. */
  2061. JsonRoutes.add('GET', '/api/user', function (req, res) {
  2062. try {
  2063. Authentication.checkLoggedIn(req.userId);
  2064. const data = ReactiveCache.getUser({
  2065. _id: req.userId,
  2066. });
  2067. delete data.services;
  2068. // get all boards where the user is member of
  2069. let boards = ReactiveCache.getBoards(
  2070. {
  2071. type: 'board',
  2072. 'members.userId': req.userId,
  2073. },
  2074. {
  2075. fields: {
  2076. _id: 1,
  2077. members: 1,
  2078. },
  2079. },
  2080. );
  2081. boards = boards.map((b) => {
  2082. const u = b.members.find((m) => m.userId === req.userId);
  2083. delete u.userId;
  2084. u.boardId = b._id;
  2085. return u;
  2086. });
  2087. data.boards = boards;
  2088. JsonRoutes.sendResult(res, {
  2089. code: 200,
  2090. data,
  2091. });
  2092. } catch (error) {
  2093. JsonRoutes.sendResult(res, {
  2094. code: 200,
  2095. data: error,
  2096. });
  2097. }
  2098. });
  2099. /**
  2100. * @operation get_all_users
  2101. *
  2102. * @summary return all the users
  2103. *
  2104. * @description Only the admin user (the first user) can call the REST API.
  2105. * @return_type [{ _id: string,
  2106. * username: string}]
  2107. */
  2108. JsonRoutes.add('GET', '/api/users', function (req, res) {
  2109. try {
  2110. Authentication.checkUserId(req.userId);
  2111. JsonRoutes.sendResult(res, {
  2112. code: 200,
  2113. data: Meteor.users.find({}).map(function (doc) {
  2114. return {
  2115. _id: doc._id,
  2116. username: doc.username,
  2117. };
  2118. }),
  2119. });
  2120. } catch (error) {
  2121. JsonRoutes.sendResult(res, {
  2122. code: 200,
  2123. data: error,
  2124. });
  2125. }
  2126. });
  2127. /**
  2128. * @operation get_user
  2129. *
  2130. * @summary get a given user
  2131. *
  2132. * @description Only the admin user (the first user) can call the REST API.
  2133. *
  2134. * @param {string} userId the user ID or username
  2135. * @return_type Users
  2136. */
  2137. JsonRoutes.add('GET', '/api/users/:userId', function (req, res) {
  2138. try {
  2139. Authentication.checkUserId(req.userId);
  2140. let id = req.params.userId;
  2141. let user = ReactiveCache.getUser({
  2142. _id: id,
  2143. });
  2144. if (!user) {
  2145. user = ReactiveCache.getUser({
  2146. username: id,
  2147. });
  2148. id = user._id;
  2149. }
  2150. // get all boards where the user is member of
  2151. let boards = ReactiveCache.getBoards(
  2152. {
  2153. type: 'board',
  2154. 'members.userId': id,
  2155. },
  2156. {
  2157. fields: {
  2158. _id: 1,
  2159. members: 1,
  2160. },
  2161. },
  2162. );
  2163. boards = boards.map((b) => {
  2164. const u = b.members.find((m) => m.userId === id);
  2165. delete u.userId;
  2166. u.boardId = b._id;
  2167. return u;
  2168. });
  2169. user.boards = boards;
  2170. JsonRoutes.sendResult(res, {
  2171. code: 200,
  2172. data: user,
  2173. });
  2174. } catch (error) {
  2175. JsonRoutes.sendResult(res, {
  2176. code: 200,
  2177. data: error,
  2178. });
  2179. }
  2180. });
  2181. /**
  2182. * @operation edit_user
  2183. *
  2184. * @summary edit a given user
  2185. *
  2186. * @description Only the admin user (the first user) can call the REST API.
  2187. *
  2188. * Possible values for *action*:
  2189. * - `takeOwnership`: The admin takes the ownership of ALL boards of the user (archived and not archived) where the user is admin on.
  2190. * - `disableLogin`: Disable a user (the user is not allowed to login and his login tokens are purged)
  2191. * - `enableLogin`: Enable a user
  2192. *
  2193. * @param {string} userId the user ID
  2194. * @param {string} action the action
  2195. * @return_type {_id: string,
  2196. * title: string}
  2197. */
  2198. JsonRoutes.add('PUT', '/api/users/:userId', function (req, res) {
  2199. try {
  2200. Authentication.checkUserId(req.userId);
  2201. const id = req.params.userId;
  2202. const action = req.body.action;
  2203. let data = ReactiveCache.getUser({
  2204. _id: id,
  2205. });
  2206. if (data !== undefined) {
  2207. if (action === 'takeOwnership') {
  2208. data = ReactiveCache.getBoards(
  2209. {
  2210. 'members.userId': id,
  2211. 'members.isAdmin': true,
  2212. },
  2213. {
  2214. sort: {
  2215. sort: 1 /* boards default sorting */,
  2216. },
  2217. },
  2218. ).map(function (board) {
  2219. if (board.hasMember(req.userId)) {
  2220. board.removeMember(req.userId);
  2221. }
  2222. board.changeOwnership(id, req.userId);
  2223. return {
  2224. _id: board._id,
  2225. title: board.title,
  2226. };
  2227. });
  2228. } else {
  2229. if (action === 'disableLogin' && id !== req.userId) {
  2230. Users.update(
  2231. {
  2232. _id: id,
  2233. },
  2234. {
  2235. $set: {
  2236. loginDisabled: true,
  2237. 'services.resume.loginTokens': '',
  2238. },
  2239. },
  2240. );
  2241. } else if (action === 'enableLogin') {
  2242. Users.update(
  2243. {
  2244. _id: id,
  2245. },
  2246. {
  2247. $set: {
  2248. loginDisabled: '',
  2249. },
  2250. },
  2251. );
  2252. }
  2253. data = ReactiveCache.getUser(id);
  2254. }
  2255. }
  2256. JsonRoutes.sendResult(res, {
  2257. code: 200,
  2258. data,
  2259. });
  2260. } catch (error) {
  2261. JsonRoutes.sendResult(res, {
  2262. code: 200,
  2263. data: error,
  2264. });
  2265. }
  2266. });
  2267. /**
  2268. * @operation add_board_member
  2269. * @tag Boards
  2270. *
  2271. * @summary Add New Board Member with Role
  2272. *
  2273. * @description Only the admin user (the first user) can call the REST API.
  2274. *
  2275. * **Note**: see [Boards.set_board_member_permission](#set_board_member_permission)
  2276. * to later change the permissions.
  2277. *
  2278. * @param {string} boardId the board ID
  2279. * @param {string} userId the user ID
  2280. * @param {string} action the action (needs to be `add`)
  2281. * @param {boolean} isAdmin is the user an admin of the board
  2282. * @param {boolean} isNoComments disable comments
  2283. * @param {boolean} isCommentOnly only enable comments
  2284. * @param {boolean} isWorker is the user a board worker
  2285. * @return_type {_id: string,
  2286. * title: string}
  2287. */
  2288. JsonRoutes.add(
  2289. 'POST',
  2290. '/api/boards/:boardId/members/:userId/add',
  2291. function (req, res) {
  2292. try {
  2293. Authentication.checkUserId(req.userId);
  2294. const userId = req.params.userId;
  2295. const boardId = req.params.boardId;
  2296. const action = req.body.action;
  2297. const { isAdmin, isNoComments, isCommentOnly, isWorker } = req.body;
  2298. let data = ReactiveCache.getUser(userId);
  2299. if (data !== undefined) {
  2300. if (action === 'add') {
  2301. data = ReactiveCache.getBoards({
  2302. _id: boardId,
  2303. }).map(function (board) {
  2304. if (!board.hasMember(userId)) {
  2305. board.addMember(userId);
  2306. function isTrue(data) {
  2307. return data.toLowerCase() === 'true';
  2308. }
  2309. board.setMemberPermission(
  2310. userId,
  2311. isTrue(isAdmin),
  2312. isTrue(isNoComments),
  2313. isTrue(isCommentOnly),
  2314. isTrue(isWorker),
  2315. userId,
  2316. );
  2317. }
  2318. return {
  2319. _id: board._id,
  2320. title: board.title,
  2321. };
  2322. });
  2323. }
  2324. }
  2325. JsonRoutes.sendResult(res, { code: 200, data });
  2326. } catch (error) {
  2327. JsonRoutes.sendResult(res, {
  2328. code: 200,
  2329. data: error,
  2330. });
  2331. }
  2332. },
  2333. );
  2334. /**
  2335. * @operation remove_board_member
  2336. * @tag Boards
  2337. *
  2338. * @summary Remove Member from Board
  2339. *
  2340. * @description Only the admin user (the first user) can call the REST API.
  2341. *
  2342. * @param {string} boardId the board ID
  2343. * @param {string} userId the user ID
  2344. * @param {string} action the action (needs to be `remove`)
  2345. * @return_type {_id: string,
  2346. * title: string}
  2347. */
  2348. JsonRoutes.add(
  2349. 'POST',
  2350. '/api/boards/:boardId/members/:userId/remove',
  2351. function (req, res) {
  2352. try {
  2353. Authentication.checkUserId(req.userId);
  2354. const userId = req.params.userId;
  2355. const boardId = req.params.boardId;
  2356. const action = req.body.action;
  2357. let data = ReactiveCache.getUser(userId);
  2358. if (data !== undefined) {
  2359. if (action === 'remove') {
  2360. data = ReactiveCache.getBoards({
  2361. _id: boardId,
  2362. }).map(function (board) {
  2363. if (board.hasMember(userId)) {
  2364. board.removeMember(userId);
  2365. }
  2366. return {
  2367. _id: board._id,
  2368. title: board.title,
  2369. };
  2370. });
  2371. }
  2372. }
  2373. JsonRoutes.sendResult(res, { code: 200, data });
  2374. } catch (error) {
  2375. JsonRoutes.sendResult(res, {
  2376. code: 200,
  2377. data: error,
  2378. });
  2379. }
  2380. },
  2381. );
  2382. /**
  2383. * @operation new_user
  2384. *
  2385. * @summary Create a new user
  2386. *
  2387. * @description Only the admin user (the first user) can call the REST API.
  2388. *
  2389. * @param {string} username the new username
  2390. * @param {string} email the email of the new user
  2391. * @param {string} password the password of the new user
  2392. * @return_type {_id: string}
  2393. */
  2394. JsonRoutes.add('POST', '/api/users/', function (req, res) {
  2395. try {
  2396. Authentication.checkUserId(req.userId);
  2397. const id = Accounts.createUser({
  2398. username: req.body.username,
  2399. email: req.body.email,
  2400. password: req.body.password,
  2401. from: 'admin',
  2402. });
  2403. JsonRoutes.sendResult(res, {
  2404. code: 200,
  2405. data: {
  2406. _id: id,
  2407. },
  2408. });
  2409. } catch (error) {
  2410. JsonRoutes.sendResult(res, {
  2411. code: 200,
  2412. data: error,
  2413. });
  2414. }
  2415. });
  2416. /**
  2417. * @operation delete_user
  2418. *
  2419. * @summary Delete a user
  2420. *
  2421. * @description Only the admin user (the first user) can call the REST API.
  2422. *
  2423. * @param {string} userId the ID of the user to delete
  2424. * @return_type {_id: string}
  2425. */
  2426. JsonRoutes.add('DELETE', '/api/users/:userId', function (req, res) {
  2427. try {
  2428. Authentication.checkUserId(req.userId);
  2429. const id = req.params.userId;
  2430. // Delete user is enabled, but is still has bug of leaving empty user avatars
  2431. // to boards: boards members, card members and assignees have
  2432. // empty users. So it would be better to delete user from all boards before
  2433. // deleting user.
  2434. // See:
  2435. // - wekan/client/components/settings/peopleBody.jade deleteButton
  2436. // - wekan/client/components/settings/peopleBody.js deleteButton
  2437. // - wekan/client/components/sidebar/sidebar.js Popup.afterConfirm('removeMember'
  2438. // that does now remove member from board, card members and assignees correctly,
  2439. // but that should be used to remove user from all boards similarly
  2440. // - wekan/models/users.js Delete is not enabled
  2441. Meteor.users.remove({ _id: id });
  2442. JsonRoutes.sendResult(res, {
  2443. code: 200,
  2444. data: {
  2445. _id: id,
  2446. },
  2447. });
  2448. } catch (error) {
  2449. JsonRoutes.sendResult(res, {
  2450. code: 200,
  2451. data: error,
  2452. });
  2453. }
  2454. });
  2455. /**
  2456. * @operation create_user_token
  2457. *
  2458. * @summary Create a user token
  2459. *
  2460. * @description Only the admin user (the first user) can call the REST API.
  2461. *
  2462. * @param {string} userId the ID of the user to create token for.
  2463. * @return_type {_id: string}
  2464. */
  2465. JsonRoutes.add('POST', '/api/createtoken/:userId', function (req, res) {
  2466. try {
  2467. Authentication.checkUserId(req.userId);
  2468. const id = req.params.userId;
  2469. const token = Accounts._generateStampedLoginToken();
  2470. Accounts._insertLoginToken(id, token);
  2471. JsonRoutes.sendResult(res, {
  2472. code: 200,
  2473. data: {
  2474. _id: id,
  2475. authToken: token.token,
  2476. },
  2477. });
  2478. } catch (error) {
  2479. JsonRoutes.sendResult(res, {
  2480. code: 200,
  2481. data: error,
  2482. });
  2483. }
  2484. });
  2485. /**
  2486. * @operation delete_user_token
  2487. *
  2488. * @summary Delete one or all user token.
  2489. *
  2490. * @description Only the admin user (the first user) can call the REST API.
  2491. *
  2492. * @param {string} userId the user ID
  2493. * @param {string} token the user hashedToken
  2494. * @return_type {message: string}
  2495. */
  2496. JsonRoutes.add('POST', '/api/deletetoken', function (req, res) {
  2497. try {
  2498. const { userId, token } = req.body;
  2499. Authentication.checkUserId(req.userId);
  2500. let data = {
  2501. message: 'Expected a userId to be set but received none.',
  2502. };
  2503. if (token && userId) {
  2504. Accounts.destroyToken(userId, token);
  2505. data.message = 'Delete token: [' + token + '] from user: ' + userId;
  2506. } else if (userId) {
  2507. check(userId, String);
  2508. Users.update(
  2509. {
  2510. _id: userId,
  2511. },
  2512. {
  2513. $set: {
  2514. 'services.resume.loginTokens': '',
  2515. },
  2516. },
  2517. );
  2518. data.message = 'Delete all token from user: ' + userId;
  2519. }
  2520. JsonRoutes.sendResult(res, {
  2521. code: 200,
  2522. data,
  2523. });
  2524. } catch (error) {
  2525. JsonRoutes.sendResult(res, {
  2526. code: 200,
  2527. data: error,
  2528. });
  2529. }
  2530. });
  2531. }
  2532. export default Users;