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 | 1x 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 11x 11x 11x 11x 1x 1x 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 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 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 | import { Injectable } from "@nestjs/common"; import { CreateMaterialDto } from "./dto/create-material.dto"; import { UpdateMaterialDto } from "./dto/update-material.dto"; import { InjectRepository } from "@nestjs/typeorm"; import { Material } from "./entities/material.entity"; import { ExpertiseException } from "src/expertise/expertise.service"; import { Repository } from "typeorm"; import { Expertise } from "src/expertise/entities/expertise.entity"; import { ScoreService } from "src/score/score.service"; import { User } from "src/user/entities/user.entity"; type MaterialError = | "MATERIAL DOESNT EXIST"; export class MaterialException extends Error { name: MaterialError; constructor(name: MaterialError) { super(); this.name = name; } } @Injectable() export class MaterialService { constructor( @InjectRepository(Material) private materialRepository: Repository<Material>, private scoreService: ScoreService, ) { } async create( { title, content, expertise, postDate }: CreateMaterialDto, username: string, ): Promise<Material> { try { const { id } = await this.materialRepository.save({ user: { username }, title, content, postDate, expertise: { title: expertise, users: [], }, }); return this.findOne(id, username); } catch (error) { throw new ExpertiseException("EXPERTISE DOESNT EXIST"); } } async findAll(username: string) { const materials = await this.materialRepository.find({ relations: { expertise: true, user: { badges: true, currentBadge: true, expertises: true, }, } }); return Promise.all( materials.map(async material => ({ ...material, score: await this.scoreService.getPostScore(material.id), userScore: await this.scoreService.getUserScoreOnPost(material.id, username) ?? 0, })) ); } async getRecents(username: string) { const materials = await this.materialRepository.find({ relations: { expertise: true, user: { badges: true, currentBadge: true, expertises: true, }, }, order: { postDate: "DESC" } }); return Promise.all( materials.map(async material => ({ ...material, score: await this.scoreService.getPostScore(material.id), userScore: await this.scoreService.getUserScoreOnPost(material.id, username) ?? 0 })) ); } async getForYou(username: string) { const materials = await this.materialRepository.createQueryBuilder("material") .select() .leftJoinAndSelect("material.expertise", "expertise") .leftJoinAndSelect("material.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 "material.expertise in " + subquery; }) .getMany(); return (await Promise.all( materials.map(async material => ({ ...material, score: await this.scoreService.getPostScore(material.id), userScore: await this.scoreService.getUserScoreOnPost(material.id, username) ?? 0 })) )).sort((a, b) => b.score - a.score); } async find(usernameTarget: string, usernameViewer: string) { const materials = await this.materialRepository.find({ where: { user: { username: usernameTarget, }, }, relations: { expertise: true, user: { badges: true, currentBadge: true, expertises: true, }, }, }); return Promise.all( materials.map(async material => ({ ...material, score: await this.scoreService.getPostScore(material.id), userScore: await this.scoreService.getUserScoreOnPost(material.id, usernameViewer) ?? 0, })) ); } async findOne(id: number, username: string) { const material = await this.materialRepository.findOne({ where: { id }, relations: { expertise: true, user: { badges: true, currentBadge: true, expertises: true, }, }, }); if (material) { return { ...material, score: await this.scoreService.getPostScore(id), userScore: await this.scoreService.getUserScoreOnPost(id, username) ?? 0, }; } else { throw new MaterialException("MATERIAL DOESNT EXIST"); } } async update(id: number, username: string, updateMaterialDto: UpdateMaterialDto) { const expertiseEntity = new Expertise(); expertiseEntity.title = updateMaterialDto.expertise ?? ""; const parsedDto = { ...updateMaterialDto, expertise: expertiseEntity, }; return ( await this.materialRepository.update({ id, user: { username } }, parsedDto) )!.affected! > 0; } async remove(id: number, username: string) { return ( await this.materialRepository.delete({ id, user: { username } }) )!.affected! > 0; } } |