2019-04-07 12:50:36 +00:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
|
|
|
import { Users } from '..';
|
|
|
|
import { Following } from '../entities/following';
|
2019-04-12 16:43:22 +00:00
|
|
|
import { ensure } from '../../prelude/ensure';
|
2019-04-23 13:35:26 +00:00
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
|
|
|
import { SchemaType, types, bool } from '../../misc/schema';
|
2019-04-12 16:43:22 +00:00
|
|
|
|
|
|
|
type LocalFollowerFollowing = Following & {
|
|
|
|
followerHost: null;
|
|
|
|
followerInbox: null;
|
|
|
|
followerSharedInbox: null;
|
|
|
|
};
|
|
|
|
|
|
|
|
type RemoteFollowerFollowing = Following & {
|
|
|
|
followerHost: string;
|
|
|
|
followerInbox: string;
|
|
|
|
followerSharedInbox: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type LocalFolloweeFollowing = Following & {
|
|
|
|
followeeHost: null;
|
|
|
|
followeeInbox: null;
|
|
|
|
followeeSharedInbox: null;
|
|
|
|
};
|
|
|
|
|
|
|
|
type RemoteFolloweeFollowing = Following & {
|
|
|
|
followeeHost: string;
|
|
|
|
followeeInbox: string;
|
|
|
|
followeeSharedInbox: string;
|
|
|
|
};
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
export type PackedFollowing = SchemaType<typeof packedFollowingSchema>;
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
@EntityRepository(Following)
|
|
|
|
export class FollowingRepository extends Repository<Following> {
|
2019-04-12 16:43:22 +00:00
|
|
|
public isLocalFollower(following: Following): following is LocalFollowerFollowing {
|
|
|
|
return following.followerHost == null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public isRemoteFollower(following: Following): following is RemoteFollowerFollowing {
|
|
|
|
return following.followerHost != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public isLocalFollowee(following: Following): following is LocalFolloweeFollowing {
|
|
|
|
return following.followeeHost == null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public isRemoteFollowee(following: Following): following is RemoteFolloweeFollowing {
|
|
|
|
return following.followeeHost != null;
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
public async pack(
|
|
|
|
src: Following['id'] | Following,
|
|
|
|
me?: any,
|
|
|
|
opts?: {
|
|
|
|
populateFollowee?: boolean;
|
|
|
|
populateFollower?: boolean;
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
): Promise<PackedFollowing> {
|
2019-04-12 16:43:22 +00:00
|
|
|
const following = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
if (opts == null) opts = {};
|
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
return await awaitAll({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: following.id,
|
2019-04-23 13:35:26 +00:00
|
|
|
createdAt: following.createdAt.toISOString(),
|
2019-04-07 12:50:36 +00:00
|
|
|
followeeId: following.followeeId,
|
|
|
|
followerId: following.followerId,
|
|
|
|
followee: opts.populateFollowee ? Users.pack(following.followee || following.followeeId, me, {
|
|
|
|
detail: true
|
2019-04-23 13:35:26 +00:00
|
|
|
}) : undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
follower: opts.populateFollower ? Users.pack(following.follower || following.followerId, me, {
|
|
|
|
detail: true
|
2019-04-23 13:35:26 +00:00
|
|
|
}) : undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
}
|
2019-04-25 04:27:07 +00:00
|
|
|
|
|
|
|
public packMany(
|
|
|
|
followings: any[],
|
|
|
|
me?: any,
|
|
|
|
opts?: {
|
|
|
|
populateFollowee?: boolean;
|
|
|
|
populateFollower?: boolean;
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
return Promise.all(followings.map(x => this.pack(x, me, opts)));
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export const packedFollowingSchema = {
|
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
format: 'id',
|
|
|
|
description: 'The unique identifier for this following.',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
format: 'date-time',
|
|
|
|
description: 'The date that the following was created.'
|
|
|
|
},
|
|
|
|
followeeId: {
|
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
followee: {
|
|
|
|
type: types.object,
|
|
|
|
optional: bool.true, nullable: bool.false,
|
|
|
|
ref: 'User',
|
|
|
|
description: 'The followee.'
|
|
|
|
},
|
|
|
|
followerId: {
|
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
follower: {
|
|
|
|
type: types.object,
|
|
|
|
optional: bool.true, nullable: bool.false,
|
|
|
|
ref: 'User',
|
|
|
|
description: 'The follower.'
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|