All files / ask ask.service.ts

66.37% Statements 154/232
72.22% Branches 13/18
66.66% Functions 8/12
66.37% Lines 154/232

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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 2331x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 1x 9x 9x 9x 9x 9x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 1x 1x 1x 1x                                             1x 1x                                                     1x 1x                                                 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 2x 2x 2x 2x 1x 1x             1x  
import { Inject, Injectable, forwardRef } from "@nestjs/common";
import { CreateAskDto } from "./dto/create-ask.dto";
import { UpdateAskDto } from "./dto/update-ask.dto";
import { Ask } from "./entities/ask.entity";
import { InjectRepository } from "@nestjs/typeorm";
import { ILike, Repository } from "typeorm";
import { ScoreService } from "src/score/score.service";
import { ExpertiseException } from "src/expertise/expertise.service";
import { Expertise } from "src/expertise/entities/expertise.entity";
import { User } from "src/user/entities/user.entity";
 
type AskError =
    | "ASK DOESNT EXIST";
 
export class AskException extends Error {
    name: AskError;
 
    constructor(name: AskError) {
        super();
        this.name = name;
    }
}
 
@Injectable()
export class AskService {
    constructor(
        @InjectRepository(Ask)
        private askRespository: Repository<Ask>,
        @Inject(forwardRef(() => ScoreService))
        private scoreService: ScoreService,
    ) { }
 
    async create(
        { title, content, expertise, postDate, hasImage} : CreateAskDto,
        username: string
    ): Promise<Ask> {
        try {
            const { id } = await this.askRespository.save({
                user: { username },
                title,
                content,
                hasImage,
                postDate,
                expertise: {
                    title: expertise,
                    users: [],
                },
            });
 
            return this.findOne(id, username);
        } catch (error) {
            throw new ExpertiseException("EXPERTISE DOESNT EXIST");
        }
    }
 
    async findAll(username: string) {
        const asks = await this.askRespository.find({
            relations: {
                expertise: true,
                user: {
                    badges: true,
                    currentBadge: true,
                    expertises: true,
                }
            }
        });
 
        return Promise.all(
            asks.map(async ask => ({
                ...ask,
                score: await this.scoreService.getPostScore(ask.id),
                userScore: await this.scoreService.getUserScoreOnPost(ask.id, username) ?? 0
            }))
        );
    }
 
    async find(username: string, pattern: string) {
        const asks = await this.askRespository.find({
            relations: {
                expertise: true,
                user: {
                    badges: true,
                    currentBadge: true,
                    expertises: true,
                }
            },
            where: {
                title: ILike(`%${pattern}%`)
            }
        });
 
        return Promise.all(
            asks.map(async ask => ({
                ...ask,
                score: await this.scoreService.getPostScore(ask.id),
                userScore: await this.scoreService.getUserScoreOnPost(ask.id, username) ?? 0
            }))
        );
    }
 
    async getRecents(username: string) {
        const asks = await this.askRespository.find({
            relations: {
                expertise: true,
                user: {
                    badges: true,
                    currentBadge: true,
                    expertises: true,
                },
            },
            order: {
                postDate: "DESC"
            }
        });

        return Promise.all(
            asks.map(async ask => ({
                ...ask,
                score: await this.scoreService.getPostScore(ask.id),
                userScore: await this.scoreService.getUserScoreOnPost(ask.id, username) ?? 0
            }))
        );
    }
 
    async getForYou(username: string) {
        const asks = await this.askRespository.createQueryBuilder("ask")
            .select()
            .leftJoinAndSelect("ask.expertise", "expertise")
            .leftJoinAndSelect("ask.user", "user")
            .leftJoinAndSelect("user.currentBadge", "badge")
            .leftJoinAndSelect("user.badges", "badges")
            .leftJoinAndSelect("user.expertises", "expertises")
            .where(qb => {
                const subquery = qb.subQuery()
                    .select()
                    .from(User, "user")
                    .leftJoinAndSelect("user.expertises", "expertises")
                    .where("user.username = :username", { username })
                    .getQuery();
                return "ask.expertise in " + subquery;
            })
            .getMany();
        
        return (await Promise.all(
            asks.map(async ask => ({
                ...ask,
                score: await this.scoreService.getPostScore(ask.id),
                userScore: await this.scoreService.getUserScoreOnPost(ask.id, username) ?? 0
            }))
        )).sort((a, b) => b.score - a.score);
    }
 
    async findByUser(usernameTarget: string, usernameViewer: string) {
        const asks = await this.askRespository.find({
            where: {
                user: {
                    username: usernameTarget,
                }
            },
            relations: {
                expertise: true,
                user: {
                    badges: true,
                    currentBadge: true,
                    expertises: true,
                },
            },
        });

        return Promise.all(
            asks.map(async ask => ({
                ...ask,
                score: await this.scoreService.getPostScore(ask.id),
                userScore: await this.scoreService.getUserScoreOnPost(ask.id, usernameViewer) ?? 0
            }))
        );
    }
 
    async findOne(id: number, username: string) {
        const ask = await this.askRespository.findOne({
            where: {
                id
            },
            relations: {
                expertise: true,
                user : {
                    badges: true,
                    currentBadge: true,
                    expertises: true,
                }
            }
        });
 
        if (ask) {
            return {
                ...ask,
                score: await this.scoreService.getPostScore(id),
                userScore: await this.scoreService.getUserScoreOnPost(id, username) ?? 0
            };
        } else {
            throw new AskException("ASK DOESNT EXIST");
        }
    }
 
    async update(id: number, username: string, updateAskDto: UpdateAskDto) {
        const expertiseEntity = new Expertise();
        expertiseEntity.title = updateAskDto.expertise ?? "";
 
        const parsedDto = {
            ...updateAskDto,
            expertise: expertiseEntity,
        };
 
        return (
            await this.askRespository.update({ id, user: { username } }, parsedDto)
        )!.affected! > 0;
    }
 
    async remove(id: number, username: string) {
        return (
            await this.askRespository.delete({ id, user: { username } })
        )!.affected! > 0;
    }
 
    async updateHasBestAnswer(id: number, hasBestAnswer: boolean) {
        console.log(id, hasBestAnswer);

        return (
            await this.askRespository.update({ id }, { hasBestAnswer })
        )!.affected! > 0;
    }
}