2014-01-30 22:42:19 +01:00
|
|
|
var people = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2016-12-15 22:18:59 +01:00
|
|
|
var people_dict;
|
|
|
|
var people_by_name_dict;
|
|
|
|
var people_by_user_id_dict;
|
|
|
|
var realm_people_dict;
|
|
|
|
var cross_realm_dict;
|
|
|
|
var pm_recipient_count_dict;
|
2017-01-19 23:04:52 +01:00
|
|
|
var my_user_id;
|
2016-12-15 22:18:59 +01:00
|
|
|
|
|
|
|
// We have an init() function so that our automated tests
|
|
|
|
// can easily clear data.
|
|
|
|
exports.init = function () {
|
|
|
|
// The following three Dicts point to the same objects
|
|
|
|
// All people we've seen
|
|
|
|
people_dict = new Dict({fold_case: true});
|
|
|
|
people_by_name_dict = new Dict({fold_case: true});
|
|
|
|
people_by_user_id_dict = new Dict();
|
|
|
|
// People in this realm
|
|
|
|
realm_people_dict = new Dict({fold_case: true});
|
|
|
|
cross_realm_dict = new Dict({fold_case: true});
|
|
|
|
pm_recipient_count_dict = new Dict({fold_case: true});
|
|
|
|
};
|
|
|
|
|
|
|
|
// WE INITIALIZE DATA STRUCTURES HERE!
|
|
|
|
exports.init();
|
2014-01-30 22:42:19 +01:00
|
|
|
|
2016-10-31 15:56:57 +01:00
|
|
|
exports.get_person_from_user_id = function (user_id) {
|
2017-01-24 23:10:01 +01:00
|
|
|
if (!people_by_user_id_dict.has(user_id)) {
|
|
|
|
blueslip.error('Unknown user_id in get_person_from_user_id: ' + user_id);
|
|
|
|
return undefined;
|
|
|
|
}
|
2016-10-31 15:56:57 +01:00
|
|
|
return people_by_user_id_dict.get(user_id);
|
|
|
|
};
|
|
|
|
|
2014-01-30 22:42:19 +01:00
|
|
|
exports.get_by_email = function get_by_email(email) {
|
|
|
|
return people_dict.get(email);
|
|
|
|
};
|
|
|
|
|
2016-10-30 15:22:24 +01:00
|
|
|
exports.get_user_id = function (email) {
|
|
|
|
var person = people_dict.get(email);
|
|
|
|
if (person === undefined) {
|
|
|
|
blueslip.error('Unknown email for get_user_id: ' + email);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
var user_id = person.user_id;
|
|
|
|
if (!user_id) {
|
|
|
|
blueslip.error('No userid found for ' + email);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return user_id;
|
|
|
|
};
|
|
|
|
|
2016-11-15 22:55:37 +01:00
|
|
|
exports.user_ids_string_to_emails_string = function (user_ids_string) {
|
|
|
|
var user_ids = user_ids_string.split(',');
|
|
|
|
var emails = _.map(user_ids, function (user_id) {
|
|
|
|
var person = people_by_user_id_dict.get(user_id);
|
|
|
|
if (person) {
|
|
|
|
return person.email;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!_.all(emails)) {
|
|
|
|
blueslip.error('Unknown user ids: ' + user_ids_string);
|
|
|
|
return;
|
|
|
|
}
|
2016-11-19 00:33:32 +01:00
|
|
|
|
|
|
|
emails = _.map(emails, function (email) {
|
|
|
|
return email.toLowerCase();
|
|
|
|
});
|
|
|
|
|
|
|
|
emails.sort();
|
|
|
|
|
2016-11-15 22:55:37 +01:00
|
|
|
return emails.join(',');
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.emails_strings_to_user_ids_string = function (emails_string) {
|
|
|
|
var emails = emails_string.split(',');
|
|
|
|
var user_ids = _.map(emails, function (email) {
|
|
|
|
var person = people_dict.get(email);
|
|
|
|
if (person) {
|
|
|
|
return person.user_id;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!_.all(user_ids)) {
|
2017-01-19 04:13:27 +01:00
|
|
|
blueslip.warn('Unknown emails: ' + emails_string);
|
2016-11-15 22:55:37 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-11-19 00:33:32 +01:00
|
|
|
|
|
|
|
user_ids.sort();
|
|
|
|
|
2016-11-15 22:55:37 +01:00
|
|
|
return user_ids.join(',');
|
|
|
|
};
|
|
|
|
|
Make nicer slugs for "pm-with" narrows.
The slugs for PM-with narrows now have user ids in them, so they
are more resilient to email changes, and they have less escaping
characters and are generally prettier.
Examples:
narrow/pm-with/3-cordelia
narrow/pm-with/3,5-group
The part of the URL that is actionable is the comma-delimited
list of one or more userids.
When we decode the slugs, we only use the part before the dash; the
stuff after the dash is just for humans. If we don't see a number
before the dash, we fall back to the old decoding (which should only
matter during a transition period where folks may have old links).
For group PMS, we always say "group" after the dash. For single PMs,
we use the person's email userid, since it's usually fairly concise
and not noisy for a URL. We may tinker with this later.
Basically, the heart of this change is these two new methods:
people.emails_to_slug
people.slug_to_emails
And then we unify the encode codepath as follows:
narrow.pm_with_uri ->
hashchange.operators_to_hash ->
hashchange.encode_operand ->
people.emails_to_slug
The decode path didn't really require much modication in this commit,
other than to have hashchange.decode_operand call people.slug_to_emails
for the pm-with case.
2017-01-06 02:00:03 +01:00
|
|
|
exports.emails_to_slug = function (emails_string) {
|
|
|
|
var slug = exports.emails_strings_to_user_ids_string(emails_string);
|
|
|
|
|
|
|
|
if (!slug) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
slug += '-';
|
|
|
|
|
|
|
|
var emails = emails_string.split(',');
|
|
|
|
|
|
|
|
if (emails.length === 1) {
|
|
|
|
slug += emails[0].split('@')[0].toLowerCase();
|
|
|
|
} else {
|
|
|
|
slug += 'group';
|
|
|
|
}
|
|
|
|
|
|
|
|
return slug;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.slug_to_emails = function (slug) {
|
|
|
|
var m = /^([\d,]+)-/.exec(slug);
|
|
|
|
if (m) {
|
|
|
|
var user_ids = m[1];
|
|
|
|
return exports.user_ids_string_to_emails_string(user_ids);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-21 21:45:52 +01:00
|
|
|
exports.format_small_avatar_url = function (raw_url, sent_by_me) {
|
|
|
|
var url = raw_url + "&s=50";
|
|
|
|
if (sent_by_me) {
|
|
|
|
url += "&stamp=" + settings.avatar_stamp;
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
};
|
|
|
|
|
2017-01-21 20:29:39 +01:00
|
|
|
exports.small_avatar_url = function (message) {
|
|
|
|
// Try to call this function in all places where we need 25px
|
|
|
|
// avatar images, so that the browser can help
|
|
|
|
// us avoid unnecessary network trips. (For user-uploaded avatars,
|
|
|
|
// the s=25 parameter is essentially ignored, but it's harmless.)
|
|
|
|
//
|
|
|
|
// We actually request these at s=50, so that we look better
|
|
|
|
// on retina displays.
|
2017-01-21 21:34:27 +01:00
|
|
|
|
|
|
|
var url = "";
|
|
|
|
var person;
|
|
|
|
|
|
|
|
if (message.sender_id) {
|
|
|
|
// We should always have message.sender_id, except for in the
|
|
|
|
// tutorial, where it's ok to fall back to the url in the fake
|
|
|
|
// messages.
|
|
|
|
person = exports.get_person_from_user_id(message.sender_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The first time we encounter a sender in a message, we may
|
|
|
|
// not have person.avatar_url set, but if we do, then use that.
|
|
|
|
if (person && person.avatar_url) {
|
|
|
|
url = person.avatar_url;
|
|
|
|
} else if (message.avatar_url) {
|
|
|
|
// Here we fall back to using the avatar_url from the message
|
|
|
|
// itself.
|
|
|
|
url = message.avatar_url;
|
|
|
|
if (person) {
|
|
|
|
person.avatar_url = url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url) {
|
2017-01-21 21:45:52 +01:00
|
|
|
url = exports.format_small_avatar_url(url, message.sent_by_me);
|
2017-01-21 20:29:39 +01:00
|
|
|
}
|
2017-01-21 21:34:27 +01:00
|
|
|
|
|
|
|
return url;
|
2017-01-21 20:29:39 +01:00
|
|
|
};
|
|
|
|
|
2014-01-30 22:42:19 +01:00
|
|
|
exports.realm_get = function realm_get(email) {
|
|
|
|
return realm_people_dict.get(email);
|
|
|
|
};
|
|
|
|
|
2016-11-01 19:36:50 +01:00
|
|
|
exports.get_all_persons = function () {
|
|
|
|
return people_dict.values();
|
|
|
|
};
|
|
|
|
|
2016-11-01 19:45:53 +01:00
|
|
|
exports.get_realm_persons = function () {
|
|
|
|
return realm_people_dict.values();
|
|
|
|
};
|
|
|
|
|
2016-11-02 23:48:47 +01:00
|
|
|
exports.is_cross_realm_email = function (email) {
|
|
|
|
return cross_realm_dict.has(email);
|
|
|
|
};
|
|
|
|
|
2016-11-03 21:59:18 +01:00
|
|
|
exports.get_recipient_count = function (person) {
|
|
|
|
// We can have fake person objects like the "all"
|
|
|
|
// pseudo-person in at-mentions. They will have
|
|
|
|
// the pm_recipient_count on the object itself.
|
|
|
|
if (person.pm_recipient_count) {
|
|
|
|
return person.pm_recipient_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
var count = pm_recipient_count_dict.get(person.email);
|
|
|
|
|
|
|
|
return count || 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.incr_recipient_count = function (email) {
|
|
|
|
var old_count = pm_recipient_count_dict.get(email) || 0;
|
|
|
|
pm_recipient_count_dict.set(email, old_count + 1);
|
|
|
|
};
|
|
|
|
|
2016-10-18 19:21:38 +02:00
|
|
|
exports.filter_people_by_search_terms = function (users, search_terms) {
|
2017-01-26 13:00:27 +01:00
|
|
|
var filtered_users = new Dict();
|
2016-10-18 19:21:38 +02:00
|
|
|
|
2016-11-14 22:22:02 +01:00
|
|
|
var matchers = _.map(search_terms, function (search_term) {
|
2016-11-14 22:34:46 +01:00
|
|
|
var termlets = search_term.toLowerCase().split(/\s+/);
|
|
|
|
termlets = _.map(termlets, function (termlet) {
|
|
|
|
return termlet.trim();
|
|
|
|
});
|
|
|
|
|
2016-11-14 22:22:02 +01:00
|
|
|
return function (email, names) {
|
|
|
|
if (email.indexOf(search_term.trim()) === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-14 22:34:46 +01:00
|
|
|
return _.all(termlets, function (termlet) {
|
|
|
|
return _.any(names, function (name) {
|
|
|
|
if (name.indexOf(termlet) === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2016-11-14 22:22:02 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2016-10-18 19:21:38 +02:00
|
|
|
// Loop through users and populate filtered_users only
|
|
|
|
// if they include search_terms
|
|
|
|
_.each(users, function (user) {
|
|
|
|
var person = exports.get_by_email(user.email);
|
|
|
|
// Get person object (and ignore errors)
|
|
|
|
if (!person || !person.full_name) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-14 22:22:02 +01:00
|
|
|
var email = user.email.toLowerCase();
|
|
|
|
|
2016-10-18 19:21:38 +02:00
|
|
|
// Remove extra whitespace
|
|
|
|
var names = person.full_name.toLowerCase().split(/\s+/);
|
|
|
|
names = _.map(names, function (name) {
|
|
|
|
return name.trim();
|
|
|
|
});
|
|
|
|
|
2016-11-14 21:37:36 +01:00
|
|
|
|
2016-10-18 19:21:38 +02:00
|
|
|
// Return user emails that include search terms
|
2016-11-14 22:22:02 +01:00
|
|
|
var match = _.any(matchers, function (matcher) {
|
|
|
|
return matcher(email, names);
|
2016-10-18 19:21:38 +02:00
|
|
|
});
|
2016-11-14 21:37:36 +01:00
|
|
|
|
2016-11-14 22:22:02 +01:00
|
|
|
if (match) {
|
2017-01-26 13:00:27 +01:00
|
|
|
filtered_users.set(person.user_id, true);
|
2016-11-14 21:37:36 +01:00
|
|
|
}
|
2016-10-18 19:21:38 +02:00
|
|
|
});
|
|
|
|
return filtered_users;
|
|
|
|
};
|
|
|
|
|
2014-01-30 22:42:19 +01:00
|
|
|
exports.get_by_name = function realm_get(name) {
|
|
|
|
return people_by_name_dict.get(name);
|
|
|
|
};
|
|
|
|
|
|
|
|
function people_cmp(person1, person2) {
|
|
|
|
var name_cmp = util.strcmp(person1.full_name, person2.full_name);
|
|
|
|
if (name_cmp < 0) {
|
|
|
|
return -1;
|
|
|
|
} else if (name_cmp > 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return util.strcmp(person1.email, person2.email);
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.get_rest_of_realm = function get_rest_of_realm() {
|
|
|
|
var people_minus_you = [];
|
|
|
|
realm_people_dict.each(function (person) {
|
2017-01-19 20:18:03 +01:00
|
|
|
if (!exports.is_current_user(person.email)) {
|
2016-12-03 03:08:47 +01:00
|
|
|
people_minus_you.push({email: person.email,
|
2017-01-07 07:58:08 +01:00
|
|
|
user_id: person.user_id,
|
2016-12-03 03:08:47 +01:00
|
|
|
full_name: person.full_name});
|
2014-01-30 22:42:19 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return people_minus_you.sort(people_cmp);
|
|
|
|
};
|
|
|
|
|
2014-02-01 15:17:17 +01:00
|
|
|
exports.add = function add(person) {
|
2016-10-31 15:56:57 +01:00
|
|
|
if (person.user_id) {
|
|
|
|
people_by_user_id_dict.set(person.user_id, person);
|
|
|
|
} else {
|
|
|
|
// We eventually want to lock this down completely
|
|
|
|
// and report an error and not update other the data
|
|
|
|
// structures here, but we have a lot of edge cases
|
|
|
|
// with cross-realm bots, zephyr users, etc., deactivated
|
|
|
|
// users, where we are probably fine for now not to
|
|
|
|
// find them via user_id lookups.
|
|
|
|
blueslip.warn('No user_id provided for ' + person.email);
|
|
|
|
}
|
|
|
|
|
2014-01-30 22:42:19 +01:00
|
|
|
people_dict.set(person.email, person);
|
|
|
|
people_by_name_dict.set(person.full_name, person);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.add_in_realm = function add_in_realm(person) {
|
|
|
|
realm_people_dict.set(person.email, person);
|
|
|
|
exports.add(person);
|
|
|
|
};
|
|
|
|
|
2016-12-15 22:44:42 +01:00
|
|
|
exports.deactivate = function (person) {
|
|
|
|
// We don't fully remove a person from all of our data
|
|
|
|
// structures, because deactivated users can be part
|
|
|
|
// of somebody's PM list.
|
2014-01-30 22:42:19 +01:00
|
|
|
realm_people_dict.del(person.email);
|
|
|
|
};
|
|
|
|
|
2016-12-15 23:33:36 +01:00
|
|
|
exports.extract_people_from_message = function (message) {
|
|
|
|
var involved_people;
|
|
|
|
|
|
|
|
switch (message.type) {
|
|
|
|
case 'stream':
|
|
|
|
involved_people = [{full_name: message.sender_full_name,
|
|
|
|
user_id: message.sender_id,
|
|
|
|
email: message.sender_email}];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'private':
|
|
|
|
involved_people = message.display_recipient;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add new people involved in this message to the people list
|
|
|
|
_.each(involved_people, function (person) {
|
|
|
|
if (!person.unknown_local_echo_user) {
|
|
|
|
if (! exports.get_by_email(person.email)) {
|
|
|
|
exports.add({
|
|
|
|
email: person.email,
|
|
|
|
user_id: person.user_id || person.id,
|
|
|
|
full_name: person.full_name,
|
|
|
|
is_admin: person.is_realm_admin || false,
|
2017-01-12 00:17:43 +01:00
|
|
|
is_bot: person.is_bot || false,
|
2016-12-15 23:33:36 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.type === 'private' && message.sent_by_me) {
|
|
|
|
// Track the number of PMs we've sent to this person to improve autocomplete
|
|
|
|
exports.incr_recipient_count(person.email);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-01-21 00:02:28 +01:00
|
|
|
exports.set_full_name = function (person_obj, new_full_name) {
|
|
|
|
if (people_by_name_dict.has(person_obj.full_name)) {
|
|
|
|
people_by_name_dict.del(person_obj.full_name);
|
|
|
|
}
|
|
|
|
people_by_name_dict.set(new_full_name, person_obj);
|
|
|
|
person_obj.full_name = new_full_name;
|
|
|
|
};
|
|
|
|
|
2017-01-19 20:18:03 +01:00
|
|
|
exports.is_current_user = function (email) {
|
|
|
|
if (email === null || email === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-01-19 23:04:52 +01:00
|
|
|
|
|
|
|
return email.toLowerCase() === exports.my_current_email().toLowerCase();
|
2017-01-19 20:18:03 +01:00
|
|
|
};
|
|
|
|
|
2017-01-20 23:16:28 +01:00
|
|
|
exports.initialize_current_user = function (user_id) {
|
|
|
|
my_user_id = user_id;
|
2017-01-19 23:04:52 +01:00
|
|
|
};
|
|
|
|
|
2017-01-20 23:49:20 +01:00
|
|
|
exports.my_full_name = function () {
|
|
|
|
return people_by_user_id_dict.get(my_user_id).full_name;
|
|
|
|
};
|
|
|
|
|
2017-01-19 23:04:52 +01:00
|
|
|
exports.my_current_email = function () {
|
|
|
|
return people_by_user_id_dict.get(my_user_id).email;
|
|
|
|
};
|
2017-01-19 20:18:03 +01:00
|
|
|
|
2017-01-19 23:52:09 +01:00
|
|
|
exports.my_current_user_id = function () {
|
|
|
|
return my_user_id;
|
|
|
|
};
|
|
|
|
|
2017-01-20 17:43:45 +01:00
|
|
|
exports.is_my_user_id = function (user_id) {
|
|
|
|
if (!user_id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return user_id.toString() === my_user_id.toString();
|
|
|
|
};
|
|
|
|
|
2014-01-30 22:42:19 +01:00
|
|
|
$(function () {
|
|
|
|
_.each(page_params.people_list, function (person) {
|
2016-11-01 21:01:42 +01:00
|
|
|
exports.add_in_realm(person);
|
2014-01-30 22:42:19 +01:00
|
|
|
});
|
|
|
|
|
2016-11-02 23:48:47 +01:00
|
|
|
_.each(page_params.cross_realm_bots, function (person) {
|
|
|
|
if (!people_dict.has(person.email)) {
|
|
|
|
exports.add(person);
|
|
|
|
}
|
|
|
|
cross_realm_dict.set(person.email, person);
|
|
|
|
});
|
2016-11-01 20:55:18 +01:00
|
|
|
|
2017-01-20 23:16:28 +01:00
|
|
|
exports.initialize_current_user(page_params.user_id);
|
2017-01-19 23:04:52 +01:00
|
|
|
|
2016-11-02 23:48:47 +01:00
|
|
|
delete page_params.people_list; // We are the only consumer of this.
|
|
|
|
delete page_params.cross_realm_bots;
|
2014-01-30 22:42:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = people;
|
|
|
|
}
|