Skip to content
Snippets Groups Projects
Commit d646f889 authored by Ivan Alglave's avatar Ivan Alglave
Browse files

Changed groups format to use unique id and non-unique name

parent 70240c07
No related branches found
No related tags found
1 merge request!4Changed groups format to use unique id and non-unique name
...@@ -27,7 +27,7 @@ export class GroupsDao { ...@@ -27,7 +27,7 @@ export class GroupsDao {
findById = (id: string): Promise<Group | void> => findById = (id: string): Promise<Group | void> =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
this._groupModel.findOne({ id: id }, {}, {}, (err, value) => { this._groupModel.findById(id, {}, {}, (err, value) => {
if (err) reject(err.message); if (err) reject(err.message);
if (!value) reject(new NotFoundException()); if (!value) reject(new NotFoundException());
resolve(value); resolve(value);
...@@ -48,8 +48,8 @@ export class GroupsDao { ...@@ -48,8 +48,8 @@ export class GroupsDao {
group: UpdateGroupDto, group: UpdateGroupDto,
): Promise<Group | void> => ): Promise<Group | void> =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
this._groupModel.updateOne( this._groupModel.findByIdAndUpdate(
{ id: id }, id,
group, group,
{ {
new: true, new: true,
...@@ -57,7 +57,6 @@ export class GroupsDao { ...@@ -57,7 +57,6 @@ export class GroupsDao {
}, },
(err, value) => { (err, value) => {
if (err) reject(err.message); if (err) reject(err.message);
if (value.matchedCount === 0) reject(new NotFoundException());
resolve(value); resolve(value);
}, },
); );
...@@ -65,7 +64,7 @@ export class GroupsDao { ...@@ -65,7 +64,7 @@ export class GroupsDao {
findByIdAndRemove = (id: string): Promise<Group | void> => findByIdAndRemove = (id: string): Promise<Group | void> =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
this._groupModel.deleteOne({ id: id }, {}, (err) => { this._groupModel.findByIdAndDelete(id, {}, (err) => {
if (err) reject(err.message); if (err) reject(err.message);
resolve(); resolve();
}); });
......
...@@ -3,7 +3,7 @@ import { IsBoolean, IsString, IsNotEmpty } from 'class-validator'; ...@@ -3,7 +3,7 @@ import { IsBoolean, IsString, IsNotEmpty } from 'class-validator';
export class CreateGroupDto { export class CreateGroupDto {
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()
id: string; name: string;
@IsBoolean() @IsBoolean()
final: boolean; final: boolean;
......
...@@ -2,7 +2,7 @@ import { Group } from '../schemas/group.schema'; ...@@ -2,7 +2,7 @@ import { Group } from '../schemas/group.schema';
export class GroupEntity { export class GroupEntity {
_id: string; _id: string;
id: string; name: string;
final: boolean; final: boolean;
responsibles: string[]; responsibles: string[];
secretaries: string[]; secretaries: string[];
......
...@@ -8,7 +8,6 @@ import { ...@@ -8,7 +8,6 @@ import {
Body, Body,
UseInterceptors, UseInterceptors,
} from '@nestjs/common'; } from '@nestjs/common';
import { Observable } from 'rxjs';
import { HttpInterceptor } from '../interceptors/http.interceptor'; import { HttpInterceptor } from '../interceptors/http.interceptor';
import { CreateGroupDto } from './dto/create-group.dto'; import { CreateGroupDto } from './dto/create-group.dto';
import { UpdateGroupDto } from './dto/update-group.dto'; import { UpdateGroupDto } from './dto/update-group.dto';
......
export type Group = { export type Group = {
_id: any; _id: any;
id: string;
final: boolean; final: boolean;
responsibles: string[]; responsibles: string[];
secretaries: string[]; secretaries: string[];
......
...@@ -24,7 +24,7 @@ export class Group { ...@@ -24,7 +24,7 @@ export class Group {
required: true, required: true,
trim: true, trim: true,
}) })
id: string; name: string;
@Prop({ @Prop({
type: Boolean, type: Boolean,
...@@ -63,5 +63,3 @@ export class Group { ...@@ -63,5 +63,3 @@ export class Group {
} }
export const GroupSchema = SchemaFactory.createForClass(Group); export const GroupSchema = SchemaFactory.createForClass(Group);
GroupSchema.index({ id: 1 }, { unique: true });
import { Injectable, InternalServerErrorException, NotFoundException } from '@nestjs/common'; import {
Injectable,
InternalServerErrorException,
NotFoundException,
} from '@nestjs/common';
import { InjectModel } from '@nestjs/mongoose'; import { InjectModel } from '@nestjs/mongoose';
import { randomInt } from 'crypto'; import { randomInt } from 'crypto';
import { Model } from 'mongoose'; import { Model } from 'mongoose';
...@@ -31,9 +35,8 @@ export class PeopleDao { ...@@ -31,9 +35,8 @@ export class PeopleDao {
}); });
}); });
save (people: CreatePeopleDto): Promise<People> { save = (people: CreatePeopleDto): Promise<People> => {
var password = this.secret(); people.passwordHash = this.secret();
people.passwordHash = password;
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
new this._peopleModel(people).save((err, value) => { new this._peopleModel(people).save((err, value) => {
if (err) reject(err.message); if (err) reject(err.message);
...@@ -41,7 +44,7 @@ export class PeopleDao { ...@@ -41,7 +44,7 @@ export class PeopleDao {
resolve(value); resolve(value);
}); });
}); });
} };
findByIdAndUpdate = ( findByIdAndUpdate = (
id: string, id: string,
...@@ -71,20 +74,19 @@ export class PeopleDao { ...@@ -71,20 +74,19 @@ export class PeopleDao {
}); });
}); });
secret = (length = 10) => { secret = (length = 10) => {
const upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const upperCase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const lowerCase = "abcdefghijklmnopqrstuvwxyz"; const lowerCase = 'abcdefghijklmnopqrstuvwxyz';
const digits = "0123456789"; const digits = '0123456789';
const minus = "-"; const minus = '-';
const underLine = "_"; const underLine = '_';
const special = "!\"#$%&'*+,./:;=?@\\^`|~"; const special = '!"#$%&\'*+,./:;=?@\\^`|~';
const brackets = "[]{}()<>"; const brackets = '[]{}()<>';
const alphabet = const alphabet =
upperCase + lowerCase + digits + minus + underLine + special + brackets; upperCase + lowerCase + digits + minus + underLine + special + brackets;
let secret = ""; let secret = '';
for (let index = 0; index < length; index++) for (let index = 0; index < length; index++)
secret += alphabet.charAt(randomInt(alphabet.length)); secret += alphabet.charAt(randomInt(alphabet.length));
return secret; return secret;
}; };
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment