Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

Commit

Permalink
Added documentation for @unifed/backend-internal-server (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
a1lan committed Apr 15, 2021
1 parent 23f7b59 commit 551cd16
Show file tree
Hide file tree
Showing 10 changed files with 380 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/backend-internal-server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @unifed/backend-internal-server

This package implements the GraphQL server, which
communicates with the frontend of the application.

This is where user authentication is handled.

## Resolvers

This directory contains the API calls provided to allow the frontend and backend
to communicate.

## Services

This directory contains more atomic functions that can be used from within the
resolvers directory. The functions in Services mostly deal with
manipulating the database.
33 changes: 33 additions & 0 deletions packages/backend-internal-server/src/resolvers/communities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@ export class CommunitiesResolver implements ResolverInterface<Community> {
return true;
}

/**
* Allows a user to create a community to moderate.
*
* @param id ID of the new community to make.
*
* @param title Title of the new community.
*
* @param description Description of the new community.
*
* @param user Currently logged in user.
*
* @returns True on success.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Boolean)
async createCommunity(
Expand All @@ -90,11 +105,29 @@ export class CommunitiesResolver implements ResolverInterface<Community> {
return await this.communitiesService.create(user.username, id, title, description);
}

/**
* Fetches the communities available at a host.
*
* @param host The host server to search
*
* @returns An array of communities.
*
* @internal
*/
@Query(() => [Community])
async getCommunities(@Arg("host") host: string): Promise<Community[]> {
return await this.communitiesService.getAll(await translateHost(host));
}

/**
* Fetches a community on the federated network.
*
* @param community Reference to the community.
*
* @returns The community if it exists.
*
* @internal
*/
@Query(() => Community, { nullable: true })
async getCommunity(@Arg("community") community: RemoteReferenceInput): Promise<Community | null> {
return await this.communitiesService.getOne(await translateHost(community.host), community.id);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,23 @@ import { InputType, Field } from "type-graphql";
import { RemoteReferenceInput } from "./remote-reference";
import { UpdatePostInput } from "./update-post";

/**
* Input used when creating a post.
*
* @internal
*/
@InputType()
export class CreatePostInput extends UpdatePostInput {
/**
* Reference to the community on which the post is made.
*/
@Field(() => RemoteReferenceInput)
community!: RemoteReferenceInput;

/**
* The post a comment is attach to.
* Null if the post is not a comment.
*/
@Field({ nullable: true })
parentPost!: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,22 @@

import { InputType, Field } from "type-graphql";

/**
* Input type for a reference in the federated network.
*
* @internal
*/
@InputType()
export class RemoteReferenceInput {
/**
* ID
*/
@Field()
id!: string;

/**
* Host server
*/
@Field()
host!: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,23 @@

import { InputType, Field } from "type-graphql";

/**
* Input used when updating a post.
*
* @internal
*/
@InputType()
export class UpdatePostInput {
/**
* Title of the post.
* Null if post is a comment.
*/
@Field({ nullable: true })
title!: string;

/**
* Main content of the post.
*/
@Field()
body!: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@

import { InputType, Field } from "type-graphql";

/**
* User profile input used in API.
*
* @internal
*/
@InputType()
export class UserProfileInput {
/**
* Name of the user.
*/
@Field()
name!: string;
}
110 changes: 110 additions & 0 deletions packages/backend-internal-server/src/resolvers/posts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ export class PostsResolver implements ResolverInterface<Post> {
private readonly usersService: UsersService,
) {}

/**
* Allows a user to create a new post.
*
* @param post The new post to make.
*
* @param user Currently logged in user.
*
* @returns The newly created post.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Post, { nullable: true })
async createPost(
Expand All @@ -42,6 +53,18 @@ export class PostsResolver implements ResolverInterface<Post> {
});
}

/**
* Allows the author of a post or an admin of the community the post was made on to delete
* the post.
*
* @param post Reference to the post on the federated network.
*
* @param user Currently logged in user.
*
* @returns True once the call is made.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Boolean)
async deletePost(
Expand All @@ -52,6 +75,22 @@ export class PostsResolver implements ResolverInterface<Post> {
return true;
}

/**
* Allows the author of a post or an admin of the community the post was made on to update
* the content of the post.
*
* @param post Reference to the post in the federated network.
*
* @param body The new body of the post.
*
* @param user Currently logged in user.
*
* @param title The new title of the post.
*
* @returns The updated post.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Post)
async updatePost(
Expand All @@ -67,6 +106,15 @@ export class PostsResolver implements ResolverInterface<Post> {
});
}

/**
* Allows a user to report a post and set its approved flag to false.
*
* @param post The post to report
*
* @returns True on report success.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Boolean)
async reportPost(@Arg("post") post: RemoteReferenceInput): Promise<boolean> {
Expand All @@ -76,6 +124,15 @@ export class PostsResolver implements ResolverInterface<Post> {
return false;
}

/**
* Fetches the list of posts from communities the user is subscribed to.
*
* @param user The currently logged in user.
*
* @returns Array of posts.
*
* @internal
*/
@AuthoriseUser()
@Query(() => [Post])
async getSubscribedPosts(@CurrentUser() user: User): Promise<Post[]> {
Expand All @@ -88,6 +145,17 @@ export class PostsResolver implements ResolverInterface<Post> {
return posts.flat();
}

/**
* Allows administrators to set the approved flag on the provided posts to true.
*
* @param user The admin making the approval.
*
* @param posts Array of post references to approve.
*
* @returns Returns true once the provided posts are approved.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Boolean)
async approvePosts(
Expand All @@ -103,6 +171,17 @@ export class PostsResolver implements ResolverInterface<Post> {
return true;
}

/**
* Allows administrators to delete an array of posts.
*
* @param user The admin deleting the posts.
*
* @param posts Array of post references to delete.
*
* @returns Returns true once the provided posts are deleted.
*
* @internal
*/
@AuthoriseUser()
@Mutation(() => Boolean)
async deletePosts(
Expand All @@ -115,6 +194,15 @@ export class PostsResolver implements ResolverInterface<Post> {
return true;
}

/**
* Fetches an array of unapproved posts from communities the user moderates (is an admin in).
*
* @param user A community administrator.
*
* @returns Array of of unapproved posts.
*
* @internal
*/
@AuthoriseUser()
@Query(() => [Post])
async getUnapprovedPosts(@CurrentUser() user: User): Promise<Post[]> {
Expand All @@ -132,6 +220,17 @@ export class PostsResolver implements ResolverInterface<Post> {
return unapprovedPosts;
}

/**
* Fetches all the posts from a community.
*
* @param community Community to fetch posts from.
*
* @param user The currently logged in user.
*
* @returns Array of posts.
*
* @internal
*/
@Query(() => [Post])
async getPosts(
@Arg("community") community: RemoteReferenceInput,
Expand All @@ -144,6 +243,17 @@ export class PostsResolver implements ResolverInterface<Post> {
);
}

/**
* Fetches a post from the federated network.
*
* @param post Post to fetch.
*
* @param user The currently logged in user.
*
* @returns Object representing the post.
*
* @internal
*/
@Query(() => Post)
async getPost(@Arg("post") post: RemoteReferenceInput, @CurrentUser() user: User): Promise<Post> {
return await this.postsService.getById(user.username, await translateHost(post.host), post.id);
Expand Down
Loading

0 comments on commit 551cd16

Please sign in to comment.