mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
38 lines
1.3 KiB
CoffeeScript
38 lines
1.3 KiB
CoffeeScript
|
AuthenticationController = require "../Authentication/AuthenticationController"
|
||
|
ContactManager = require "./ContactManager"
|
||
|
UserGetter = require "../User/UserGetter"
|
||
|
logger = require "logger-sharelatex"
|
||
|
|
||
|
module.exports = ContactsController =
|
||
|
getContacts: (req, res, next) ->
|
||
|
AuthenticationController.getLoggedInUserId req, (error, user_id) ->
|
||
|
return next(error) if error?
|
||
|
ContactManager.getContactIds user_id, {limit: 50}, (error, contact_ids) ->
|
||
|
return next(error) if error?
|
||
|
UserGetter.getUsers contact_ids, {
|
||
|
email: 1, first_name: 1, last_name: 1, holdingAccount: 1
|
||
|
}, (error, contacts) ->
|
||
|
return next(error) if error?
|
||
|
|
||
|
# UserGetter.getUsers may not preserve order so put them back in order
|
||
|
positions = {}
|
||
|
for contact_id, i in contact_ids
|
||
|
positions[contact_id] = i
|
||
|
contacts.sort (a,b) -> positions[a._id?.toString()] - positions[b._id?.toString()]
|
||
|
|
||
|
# Don't count holding accounts to discourage users from repeating mistakes (mistyped or wrong emails, etc)
|
||
|
contacts = contacts.filter (c) -> !c.holdingAccount
|
||
|
|
||
|
contacts = contacts.map(ContactsController._formatContact)
|
||
|
res.send({
|
||
|
contacts: contacts
|
||
|
})
|
||
|
|
||
|
_formatContact: (contact) ->
|
||
|
return {
|
||
|
id: contact._id?.toString()
|
||
|
email: contact.email
|
||
|
first_name: contact.first_name
|
||
|
last_name: contact.last_name
|
||
|
}
|