2020-01-03 09:17:34 +00:00
|
|
|
import { RequestHandler } from "../entities/RequestHandler";
|
|
|
|
import { UserHelper } from "../helpers/UserHelper";
|
|
|
|
import { PostsHelper } from "../helpers/PostsHelper";
|
2020-01-03 09:24:05 +00:00
|
|
|
import { Post, PostVisibilityLevel, PostKind } from "../entities/Post";
|
|
|
|
import { MoviesController } from "./MoviesController";
|
|
|
|
import { MoviesHelper } from "../helpers/MoviesHelper";
|
2020-01-03 09:17:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Posts controller
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
const VISIBILITY_LEVELS_API = {};
|
|
|
|
VISIBILITY_LEVELS_API[PostVisibilityLevel.VISIBILITY_PUBLIC] = "public";
|
|
|
|
VISIBILITY_LEVELS_API[PostVisibilityLevel.VISIBILITY_FRIENDS] = "friends";
|
|
|
|
VISIBILITY_LEVELS_API[PostVisibilityLevel.VISIBILITY_USER] = "private";
|
|
|
|
VISIBILITY_LEVELS_API[PostVisibilityLevel.VISIBILITY_GROUP_MEMBERS] = "members";
|
|
|
|
|
|
|
|
export class PostsController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the posts of a user
|
|
|
|
*
|
|
|
|
* @param h Request handler
|
|
|
|
*/
|
|
|
|
public static async GetListUser(h: RequestHandler) {
|
|
|
|
const userID = await h.postUserId("userID");
|
|
|
|
const startFrom = h.postInt("startFrom", 0);
|
|
|
|
|
|
|
|
if(!await UserHelper.CanSeeUserPage(h.optionnalUserID, userID))
|
|
|
|
h.error(401, "You are not allowed to access this user posts !");
|
|
|
|
|
|
|
|
const posts = await PostsHelper.GetUserPosts(h.optionnalUserID, userID, startFrom);
|
|
|
|
|
|
|
|
let list = [];
|
|
|
|
for (const p of posts) {
|
|
|
|
list.push(await this.PostToAPI(p));
|
|
|
|
}
|
|
|
|
|
|
|
|
h.send(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Turn a post object into an API entry
|
|
|
|
*
|
|
|
|
* @param p The post
|
|
|
|
*/
|
|
|
|
public static async PostToAPI(p: Post) : Promise<any> {
|
|
|
|
let data : any = {
|
|
|
|
ID: p.id,
|
2020-01-03 09:32:44 +00:00
|
|
|
userID: p.userID,
|
2020-01-03 09:17:34 +00:00
|
|
|
user_page_id: p.userPageID,
|
|
|
|
group_id: p.groupID,
|
|
|
|
post_time: p.timeCreate,
|
|
|
|
content: p.hasContent ? p.content : null,
|
|
|
|
visibility_level: VISIBILITY_LEVELS_API[p.visibilityLevel],
|
|
|
|
kind: p.kind,
|
|
|
|
|
2020-01-03 09:30:37 +00:00
|
|
|
|
2020-01-03 09:17:34 +00:00
|
|
|
// File specific
|
|
|
|
file_size: !p.hasFile ? null : p.file.size,
|
|
|
|
file_type: !p.hasFile ? null : p.file.type,
|
|
|
|
file_path: !p.hasFile ? null : p.file.path,
|
2020-01-03 09:24:05 +00:00
|
|
|
file_url: !p.hasFile ? null : p.file.url,
|
|
|
|
|
|
|
|
|
|
|
|
// Movie specific
|
2020-01-03 09:30:37 +00:00
|
|
|
video_id: p.hasMovie ? p.movieID : null,
|
|
|
|
video_info: p.hasMovie ?
|
|
|
|
MoviesController.MovieToAPI(await MoviesHelper.GetInfo(p.movieID)) : null,
|
|
|
|
|
|
|
|
|
|
|
|
// Countdown timer specific
|
|
|
|
time_end: p.hasTimeEnd ? p.timeEnd : null,
|
|
|
|
|
|
|
|
// Weblink specific
|
|
|
|
link_url: !p.hasLink ? null : p.link.url,
|
|
|
|
link_title: !p.hasLink ? null : p.link.title,
|
|
|
|
link_description: !p.hasLink ? null : p.link.description,
|
|
|
|
link_image: !p.hasLink ? null : p.link.image
|
2020-01-03 09:17:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|