2017-09-07 21:13:01 +02:00
|
|
|
import * as mongo from 'mongodb';
|
2018-02-02 00:06:01 +01:00
|
|
|
import deepcopy = require('deepcopy');
|
|
|
|
import rap from '@prezzemolo/rap';
|
2017-01-17 01:12:33 +01:00
|
|
|
import db from '../../db/mongodb';
|
2018-02-02 00:06:01 +01:00
|
|
|
import { IPost, pack as packPost } from './post';
|
|
|
|
import Following from './following';
|
|
|
|
import Mute from './mute';
|
|
|
|
import getFriends from '../common/get-friends';
|
|
|
|
import config from '../../conf';
|
2017-01-17 01:12:33 +01:00
|
|
|
|
2018-02-02 00:06:01 +01:00
|
|
|
const User = db.get<IUser>('users');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-02-02 00:06:01 +01:00
|
|
|
User.createIndex('username');
|
2018-03-25 17:19:07 +02:00
|
|
|
User.createIndex('account.token');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-02-02 00:06:01 +01:00
|
|
|
export default User;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
export function validateUsername(username: string): boolean {
|
2017-02-22 11:39:34 +01:00
|
|
|
return typeof username == 'string' && /^[a-zA-Z0-9\-]{3,20}$/.test(username);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function validatePassword(password: string): boolean {
|
|
|
|
return typeof password == 'string' && password != '';
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2017-01-06 07:35:07 +01:00
|
|
|
|
2017-03-01 12:35:54 +01:00
|
|
|
export function isValidName(name: string): boolean {
|
2017-03-01 12:38:27 +01:00
|
|
|
return typeof name == 'string' && name.length < 30 && name.trim() != '';
|
2017-03-01 12:35:54 +01:00
|
|
|
}
|
|
|
|
|
2017-03-03 01:24:17 +01:00
|
|
|
export function isValidDescription(description: string): boolean {
|
|
|
|
return typeof description == 'string' && description.length < 500 && description.trim() != '';
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidLocation(location: string): boolean {
|
|
|
|
return typeof location == 'string' && location.length < 50 && location.trim() != '';
|
|
|
|
}
|
|
|
|
|
2017-01-06 07:35:07 +01:00
|
|
|
export function isValidBirthday(birthday: string): boolean {
|
2017-02-22 11:39:34 +01:00
|
|
|
return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
|
|
|
|
}
|
2017-02-28 15:56:20 +01:00
|
|
|
|
2017-09-07 21:13:01 +02:00
|
|
|
export type IUser = {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
created_at: Date;
|
2018-02-04 06:52:33 +01:00
|
|
|
deleted_at: Date;
|
2017-09-07 21:13:01 +02:00
|
|
|
followers_count: number;
|
|
|
|
following_count: number;
|
2017-02-28 15:56:20 +01:00
|
|
|
name: string;
|
2017-09-07 21:13:01 +02:00
|
|
|
posts_count: number;
|
|
|
|
drive_capacity: number;
|
|
|
|
username: string;
|
|
|
|
username_lower: string;
|
|
|
|
avatar_id: mongo.ObjectID;
|
|
|
|
banner_id: mongo.ObjectID;
|
|
|
|
data: any;
|
|
|
|
description: string;
|
|
|
|
latest_post: IPost;
|
|
|
|
pinned_post_id: mongo.ObjectID;
|
|
|
|
is_suspended: boolean;
|
|
|
|
keywords: string[];
|
2018-03-27 05:02:43 +02:00
|
|
|
host: string;
|
2018-03-27 08:57:42 +02:00
|
|
|
host_lower: string;
|
2018-03-25 17:19:07 +02:00
|
|
|
account: {
|
2018-03-26 13:23:55 +02:00
|
|
|
keypair: string;
|
2018-03-25 17:19:07 +02:00
|
|
|
email: string;
|
|
|
|
links: string[];
|
|
|
|
password: string;
|
|
|
|
token: string;
|
|
|
|
twitter: {
|
|
|
|
access_token: string;
|
|
|
|
access_token_secret: string;
|
|
|
|
user_id: string;
|
|
|
|
screen_name: string;
|
|
|
|
};
|
|
|
|
line: {
|
|
|
|
user_id: string;
|
|
|
|
};
|
|
|
|
profile: {
|
|
|
|
location: string;
|
|
|
|
birthday: string; // 'YYYY-MM-DD'
|
|
|
|
tags: string[];
|
|
|
|
};
|
|
|
|
last_used_at: Date;
|
|
|
|
is_bot: boolean;
|
|
|
|
is_pro: boolean;
|
|
|
|
two_factor_secret: string;
|
|
|
|
two_factor_enabled: boolean;
|
|
|
|
client_settings: any;
|
|
|
|
settings: any;
|
|
|
|
};
|
2017-09-07 21:13:01 +02:00
|
|
|
};
|
2017-10-07 00:23:00 +02:00
|
|
|
|
|
|
|
export function init(user): IUser {
|
|
|
|
user._id = new mongo.ObjectID(user._id);
|
|
|
|
user.avatar_id = new mongo.ObjectID(user.avatar_id);
|
|
|
|
user.banner_id = new mongo.ObjectID(user.banner_id);
|
|
|
|
user.pinned_post_id = new mongo.ObjectID(user.pinned_post_id);
|
2017-10-07 00:34:35 +02:00
|
|
|
return user;
|
2017-10-07 00:23:00 +02:00
|
|
|
}
|
2018-02-02 00:06:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack a user for API response
|
|
|
|
*
|
|
|
|
* @param user target
|
|
|
|
* @param me? serializee
|
|
|
|
* @param options? serialize options
|
|
|
|
* @return Packed user
|
|
|
|
*/
|
|
|
|
export const pack = (
|
|
|
|
user: string | mongo.ObjectID | IUser,
|
|
|
|
me?: string | mongo.ObjectID | IUser,
|
|
|
|
options?: {
|
|
|
|
detail?: boolean,
|
|
|
|
includeSecrets?: boolean
|
|
|
|
}
|
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
|
|
|
|
const opts = Object.assign({
|
|
|
|
detail: false,
|
|
|
|
includeSecrets: false
|
|
|
|
}, options);
|
|
|
|
|
|
|
|
let _user: any;
|
|
|
|
|
|
|
|
const fields = opts.detail ? {
|
|
|
|
} : {
|
2018-03-25 17:19:07 +02:00
|
|
|
'account.settings': false,
|
|
|
|
'account.client_settings': false,
|
|
|
|
'account.profile': false,
|
|
|
|
'account.keywords': false,
|
|
|
|
'account.domains': false
|
2018-02-02 00:06:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Populate the user if 'user' is ID
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(user)) {
|
|
|
|
_user = await User.findOne({
|
|
|
|
_id: user
|
|
|
|
}, { fields });
|
|
|
|
} else if (typeof user === 'string') {
|
|
|
|
_user = await User.findOne({
|
|
|
|
_id: new mongo.ObjectID(user)
|
|
|
|
}, { fields });
|
|
|
|
} else {
|
|
|
|
_user = deepcopy(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_user) return reject('invalid user arg.');
|
|
|
|
|
|
|
|
// Me
|
|
|
|
const meId: mongo.ObjectID = me
|
|
|
|
? mongo.ObjectID.prototype.isPrototypeOf(me)
|
|
|
|
? me as mongo.ObjectID
|
|
|
|
: typeof me === 'string'
|
|
|
|
? new mongo.ObjectID(me)
|
|
|
|
: (me as IUser)._id
|
|
|
|
: null;
|
|
|
|
|
|
|
|
// Rename _id to id
|
|
|
|
_user.id = _user._id;
|
|
|
|
delete _user._id;
|
|
|
|
|
|
|
|
// Remove needless properties
|
|
|
|
delete _user.latest_post;
|
|
|
|
|
|
|
|
// Remove private properties
|
2018-03-26 13:23:55 +02:00
|
|
|
delete _user.account.keypair;
|
2018-03-25 17:19:07 +02:00
|
|
|
delete _user.account.password;
|
|
|
|
delete _user.account.token;
|
|
|
|
delete _user.account.two_factor_temp_secret;
|
|
|
|
delete _user.account.two_factor_secret;
|
2018-02-02 00:06:01 +01:00
|
|
|
delete _user.username_lower;
|
2018-03-25 17:19:07 +02:00
|
|
|
if (_user.account.twitter) {
|
|
|
|
delete _user.account.twitter.access_token;
|
|
|
|
delete _user.account.twitter.access_token_secret;
|
2018-02-02 00:06:01 +01:00
|
|
|
}
|
2018-03-25 17:19:07 +02:00
|
|
|
delete _user.account.line;
|
2018-02-02 00:06:01 +01:00
|
|
|
|
|
|
|
// Visible via only the official client
|
|
|
|
if (!opts.includeSecrets) {
|
2018-03-25 17:19:07 +02:00
|
|
|
delete _user.account.email;
|
|
|
|
delete _user.account.settings;
|
|
|
|
delete _user.account.client_settings;
|
2018-02-02 00:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!opts.detail) {
|
2018-03-25 17:19:07 +02:00
|
|
|
delete _user.account.two_factor_enabled;
|
2018-02-02 00:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_user.avatar_url = _user.avatar_id != null
|
|
|
|
? `${config.drive_url}/${_user.avatar_id}`
|
|
|
|
: `${config.drive_url}/default-avatar.jpg`;
|
|
|
|
|
|
|
|
_user.banner_url = _user.banner_id != null
|
|
|
|
? `${config.drive_url}/${_user.banner_id}`
|
|
|
|
: null;
|
|
|
|
|
|
|
|
if (!meId || !meId.equals(_user.id) || !opts.detail) {
|
|
|
|
delete _user.avatar_id;
|
|
|
|
delete _user.banner_id;
|
|
|
|
|
|
|
|
delete _user.drive_capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (meId && !meId.equals(_user.id)) {
|
|
|
|
// Whether the user is following
|
|
|
|
_user.is_following = (async () => {
|
|
|
|
const follow = await Following.findOne({
|
|
|
|
follower_id: meId,
|
|
|
|
followee_id: _user.id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
return follow !== null;
|
|
|
|
})();
|
|
|
|
|
|
|
|
// Whether the user is followed
|
|
|
|
_user.is_followed = (async () => {
|
|
|
|
const follow2 = await Following.findOne({
|
|
|
|
follower_id: _user.id,
|
|
|
|
followee_id: meId,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
return follow2 !== null;
|
|
|
|
})();
|
|
|
|
|
|
|
|
// Whether the user is muted
|
|
|
|
_user.is_muted = (async () => {
|
|
|
|
const mute = await Mute.findOne({
|
|
|
|
muter_id: meId,
|
|
|
|
mutee_id: _user.id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
return mute !== null;
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.detail) {
|
|
|
|
if (_user.pinned_post_id) {
|
|
|
|
// Populate pinned post
|
|
|
|
_user.pinned_post = packPost(_user.pinned_post_id, meId, {
|
|
|
|
detail: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (meId && !meId.equals(_user.id)) {
|
|
|
|
const myFollowingIds = await getFriends(meId);
|
|
|
|
|
|
|
|
// Get following you know count
|
|
|
|
_user.following_you_know_count = Following.count({
|
|
|
|
followee_id: { $in: myFollowingIds },
|
|
|
|
follower_id: _user.id,
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get followers you know count
|
|
|
|
_user.followers_you_know_count = Following.count({
|
|
|
|
followee_id: _user.id,
|
|
|
|
follower_id: { $in: myFollowingIds },
|
|
|
|
deleted_at: { $exists: false }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// resolve promises in _user object
|
|
|
|
_user = await rap(_user);
|
|
|
|
|
|
|
|
resolve(_user);
|
|
|
|
});
|
|
|
|
|
2018-03-26 10:54:10 +02:00
|
|
|
/**
|
|
|
|
* Pack a user for ActivityPub
|
|
|
|
*
|
|
|
|
* @param user target
|
|
|
|
* @return Packed user
|
|
|
|
*/
|
|
|
|
export const packForAp = (
|
|
|
|
user: string | mongo.ObjectID | IUser
|
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
|
|
|
|
let _user: any;
|
|
|
|
|
|
|
|
const fields = {
|
|
|
|
// something
|
|
|
|
};
|
|
|
|
|
|
|
|
// Populate the user if 'user' is ID
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(user)) {
|
|
|
|
_user = await User.findOne({
|
|
|
|
_id: user
|
|
|
|
}, { fields });
|
|
|
|
} else if (typeof user === 'string') {
|
|
|
|
_user = await User.findOne({
|
|
|
|
_id: new mongo.ObjectID(user)
|
|
|
|
}, { fields });
|
|
|
|
} else {
|
|
|
|
_user = deepcopy(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_user) return reject('invalid user arg.');
|
|
|
|
|
2018-03-27 05:53:56 +02:00
|
|
|
const userUrl = `${config.url}/@${_user.username}`;
|
2018-03-27 04:47:13 +02:00
|
|
|
|
2018-03-26 10:54:10 +02:00
|
|
|
resolve({
|
|
|
|
"@context": ["https://www.w3.org/ns/activitystreams", {
|
|
|
|
"@language": "ja"
|
|
|
|
}],
|
|
|
|
"type": "Person",
|
2018-03-27 04:47:13 +02:00
|
|
|
"id": userUrl,
|
|
|
|
"following": `${userUrl}/following.json`,
|
|
|
|
"followers": `${userUrl}/followers.json`,
|
|
|
|
"liked": `${userUrl}/liked.json`,
|
|
|
|
"inbox": `${userUrl}/inbox.json`,
|
|
|
|
"outbox": `${userUrl}/outbox.json`,
|
2018-03-26 10:54:10 +02:00
|
|
|
"preferredUsername": _user.username,
|
|
|
|
"name": _user.name,
|
|
|
|
"summary": _user.description,
|
|
|
|
"icon": [
|
|
|
|
`${config.drive_url}/${_user.avatar_id}`
|
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-02-02 00:06:01 +01:00
|
|
|
/*
|
|
|
|
function img(url) {
|
|
|
|
return {
|
|
|
|
thumbnail: {
|
|
|
|
large: `${url}`,
|
|
|
|
medium: '',
|
|
|
|
small: ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
*/
|