All files / src/server/router/project index.ts

0% Statements 0/53
0% Branches 0/28
0% Functions 0/5
0% Lines 0/53

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184                                                                                                                                                                                                                                                                                                                                                                               
import { AudioBookRepositoryPromise } from "@/repository/AudioBookRepository";
import { AudioBookSchema } from "@/schemas/AudioBook";
import { tRPCRouter, tRPCProcedure } from "@/server/tRPC";
import { TRPCError } from "@trpc/server";
import { ObjectId } from "mongodb";
import z from "zod";
import { omit } from "lodash";
 
export const projectRouter = tRPCRouter({
    create: tRPCProcedure.input(AudioBookSchema).mutation(async ({ input }) => {
        const AudioBookRepositoryResult = await AudioBookRepositoryPromise;
 
        if (AudioBookRepositoryResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to init 'AudioBookRepository'",
                cause: AudioBookRepositoryResult.error.cause,
            });
        }
 
        const AudioBookRepository = AudioBookRepositoryResult.value;
        const insertOneResult = await AudioBookRepository.insertOne({
            ...input,
            createdAt: new Date(),
            updatedAt: new Date(),
            lastAccessedAt: new Date(),
            status: "ACTIVE",
        });
 
        if (insertOneResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to insert 'audioBook'",
                cause: insertOneResult.error.cause,
            });
        }
 
        return insertOneResult.value.insertedId.toString("hex");
    }),
    get: tRPCProcedure.input(z.hex().length(24)).query(async ({ input }) => {
        const AudioBookRepositoryResult = await AudioBookRepositoryPromise;
 
        if (AudioBookRepositoryResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to init 'AudioBookRepository'",
                cause: AudioBookRepositoryResult.error.cause,
            });
        }
 
        const AudioBookRepository = AudioBookRepositoryResult.value;
        const findOneResult = await AudioBookRepository.findOneByID(ObjectId.createFromHexString(input));
 
        if (findOneResult.isErr()) {
            throw new TRPCError({
                code: "NOT_FOUND",
                message: `No 'active' project with ID: '${input}' found in database`,
                cause: findOneResult.error.cause,
            });
        }
 
        return findOneResult.value;
    }),
    update: tRPCProcedure.input(AudioBookSchema.extend({ id: z.hex().length(24) })).mutation(async ({ input }) => {
        const AudioBookRepositoryResult = await AudioBookRepositoryPromise;
 
        if (AudioBookRepositoryResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to init 'AudioBookRepository'",
                cause: AudioBookRepositoryResult.error.cause,
            });
        }
 
        const AudioBookRepository = AudioBookRepositoryResult.value;
        const id = ObjectId.createFromHexString(input.id);
        const findOneResult = await AudioBookRepository.findOneByID(id);
 
        if (findOneResult.isErr()) {
            throw new TRPCError({
                code: "NOT_FOUND",
                message: `No 'active' project with ID: ${input.id} found in database`,
                cause: findOneResult.error.cause,
            });
        }
 
        const updateOneResult = await AudioBookRepository.replaceOneByID(id, {
            ...omit(input, "id"),
            createdAt: findOneResult.value.createdAt,
            updatedAt: new Date(),
            lastAccessedAt: new Date(),
            status: "ACTIVE",
        });
 
        if (updateOneResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: `Failed to update 'active' project with ID: ${input.id}`,
                cause: updateOneResult.error,
            });
        }
 
        if (updateOneResult.value.modifiedCount !== 1) {
            throw new TRPCError({
                code: "NOT_FOUND",
                message: `Failed to update 'active' project with ID: ${input.id}`,
            });
        }
 
        return;
    }),
    archive: tRPCProcedure.input(z.hex().length(24)).mutation(async ({ input }) => {
        const AudioBookRepositoryResult = await AudioBookRepositoryPromise;
 
        if (AudioBookRepositoryResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to init 'AudioBookRepository'",
                cause: AudioBookRepositoryResult.error.cause,
            });
        }
 
        const AudioBookRepository = AudioBookRepositoryResult.value;
        const id = ObjectId.createFromHexString(input);
 
        const updateOneResult = await AudioBookRepository.updateOne(
            { _id: id, status: "ACTIVE" },
            { $set: { status: "ARCHIVED" } },
        );
 
        if (updateOneResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: `Failed to update 'active' project with ID: ${input}`,
                cause: updateOneResult.error.cause,
            });
        }
 
        if (updateOneResult.value.modifiedCount !== 1) {
            throw new TRPCError({
                code: "NOT_FOUND",
                message: `Failed to update 'active' project with ID: ${input}`,
            });
        }
 
        return;
    }),
    delete: tRPCProcedure.input(z.hex().length(24)).mutation(async ({ input }) => {
        const AudioBookRepositoryResult = await AudioBookRepositoryPromise;
 
        if (AudioBookRepositoryResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: "Failed to init 'AudioBookRepository'",
                cause: AudioBookRepositoryResult.error.cause,
            });
        }
 
        const AudioBookRepository = AudioBookRepositoryResult.value;
        const id = ObjectId.createFromHexString(input);
 
        const updateOneResult = await AudioBookRepository.updateOne(
            { _id: id, status: "ACTIVE" },
            { $set: { status: "DELETED" } },
        );
 
        if (updateOneResult.isErr()) {
            throw new TRPCError({
                code: "INTERNAL_SERVER_ERROR",
                message: `Failed to update 'active' project with ID: ${input}`,
            });
        }
 
        if (updateOneResult.value.modifiedCount !== 1) {
            throw new TRPCError({
                code: "NOT_FOUND",
                message: `Failed to update 'active' project with ID: ${input}`,
            });
        }
 
        return;
    }),
});