users.js 45 KB

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