feat: db schema update from string to json column type

This commit is contained in:
Mir Arif Hasan
2023-01-24 15:10:54 +06:00
parent 33e4a15830
commit ebbe015bbc
7 changed files with 84 additions and 50 deletions

View File

@@ -1,10 +1,11 @@
import { Injectable } from '@nestjs/common';
import { PrismaService } from '../prisma/prisma.service';
import { User } from './user.model';
import { UpdateUserInput, User } from './user.model';
import { User as DbUser, Prisma } from '@prisma/client';
import * as E from 'fp-ts/lib/Either';
import { USER_NOT_FOUND } from 'src/errors';
import { UpdateUserInput } from './dtos/update-user-input.dto';
import { USER_UPDATE_FAILED } from 'src/errors';
import { PubSubService } from 'src/pubsub/pubsub.service';
import { stringToJson } from 'src/utils';
@Injectable()
export class UserService {
@@ -16,22 +17,53 @@ export class UserService {
/**
* Update a user's information
* @param user User object
* @param updateUserData Properties to update
* @param updateData Properties to update
* @returns a Either of User or error
*/
async updateUser(user: User, updateUserData: UpdateUserInput) {
async updateUser(
user: User,
updateData: UpdateUserInput,
): Promise<E.Either<string, User>> {
let { currentGQLSession, currentRESTSession, ...rest } = updateData;
let updateUserObj: Partial<DbUser> = rest;
// Convert stringified JSON to JSON
if (updateData?.currentGQLSession !== undefined) {
const jsonGql = stringToJson(updateData.currentGQLSession);
if (E.isLeft<string>(jsonGql)) return jsonGql;
updateUserObj.currentGQLSession = jsonGql?.right ?? Prisma.DbNull;
}
if (updateData?.currentRESTSession !== undefined) {
const jsonRest = stringToJson(updateData.currentRESTSession);
if (E.isLeft<string>(jsonRest)) return jsonRest;
updateUserObj.currentRESTSession = jsonRest?.right ?? Prisma.DbNull;
}
// Update user
try {
const updatedUser = await this.prisma.user.update({
const dbUpdatedUser = await this.prisma.user.update({
where: { uid: user.uid },
data: updateUserData,
data: updateUserObj,
});
const updatedUser: User = {
...dbUpdatedUser,
currentGQLSession: dbUpdatedUser.currentGQLSession
? JSON.stringify(dbUpdatedUser.currentGQLSession)
: null,
currentRESTSession: dbUpdatedUser.currentRESTSession
? JSON.stringify(dbUpdatedUser.currentRESTSession)
: null,
};
// Publish subscription for user updates
await this.pubsub.publish(`user/${user.uid}/updated`, updatedUser);
await this.pubsub.publish(`user/${updatedUser.uid}/updated`, updatedUser);
return E.right(updatedUser);
} catch (e) {
return E.left(USER_NOT_FOUND);
return E.left(USER_UPDATE_FAILED);
}
}
}