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 {
findById = (id: string): Promise<Group | void> =>
new Promise((resolve, reject) => {
this._groupModel.findOne({ id: id }, {}, {}, (err, value) => {
this._groupModel.findById(id, {}, {}, (err, value) => {
if (err) reject(err.message);
if (!value) reject(new NotFoundException());
resolve(value);
......@@ -48,8 +48,8 @@ export class GroupsDao {
group: UpdateGroupDto,
): Promise<Group | void> =>
new Promise((resolve, reject) => {
this._groupModel.updateOne(
{ id: id },
this._groupModel.findByIdAndUpdate(
id,
group,
{
new: true,
......@@ -57,7 +57,6 @@ export class GroupsDao {
},
(err, value) => {
if (err) reject(err.message);
if (value.matchedCount === 0) reject(new NotFoundException());
resolve(value);
},
);
......@@ -65,7 +64,7 @@ export class GroupsDao {
findByIdAndRemove = (id: string): Promise<Group | void> =>
new Promise((resolve, reject) => {
this._groupModel.deleteOne({ id: id }, {}, (err) => {
this._groupModel.findByIdAndDelete(id, {}, (err) => {
if (err) reject(err.message);
resolve();
});
......
......@@ -3,7 +3,7 @@ import { IsBoolean, IsString, IsNotEmpty } from 'class-validator';
export class CreateGroupDto {
@IsString()
@IsNotEmpty()
id: string;
name: string;
@IsBoolean()
final: boolean;
......
......@@ -2,7 +2,7 @@ import { Group } from '../schemas/group.schema';
export class GroupEntity {
_id: string;
id: string;
name: string;
final: boolean;
responsibles: string[];
secretaries: string[];
......
......@@ -8,7 +8,6 @@ import {
Body,
UseInterceptors,
} from '@nestjs/common';
import { Observable } from 'rxjs';
import { HttpInterceptor } from '../interceptors/http.interceptor';
import { CreateGroupDto } from './dto/create-group.dto';
import { UpdateGroupDto } from './dto/update-group.dto';
......
export type Group = {
_id: any;
id: string;
final: boolean;
responsibles: string[];
secretaries: string[];
......
......@@ -24,7 +24,7 @@ export class Group {
required: true,
trim: true,
})
id: string;
name: string;
@Prop({
type: Boolean,
......@@ -63,5 +63,3 @@ export class 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 { randomInt } from 'crypto';
import { Model } from 'mongoose';
......@@ -31,9 +35,8 @@ export class PeopleDao {
});
});
save (people: CreatePeopleDto): Promise<People> {
var password = this.secret();
people.passwordHash = password;
save = (people: CreatePeopleDto): Promise<People> => {
people.passwordHash = this.secret();
return new Promise((resolve, reject) => {
new this._peopleModel(people).save((err, value) => {
if (err) reject(err.message);
......@@ -41,7 +44,7 @@ export class PeopleDao {
resolve(value);
});
});
}
};
findByIdAndUpdate = (
id: string,
......@@ -71,20 +74,19 @@ export class PeopleDao {
});
});
secret = (length = 10) => {
const upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const lowerCase = "abcdefghijklmnopqrstuvwxyz";
const digits = "0123456789";
const minus = "-";
const underLine = "_";
const special = "!\"#$%&'*+,./:;=?@\\^`|~";
const brackets = "[]{}()<>";
const alphabet =
upperCase + lowerCase + digits + minus + underLine + special + brackets;
let secret = "";
for (let index = 0; index < length; index++)
secret += alphabet.charAt(randomInt(alphabet.length));
return secret;
};
secret = (length = 10) => {
const upperCase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const lowerCase = 'abcdefghijklmnopqrstuvwxyz';
const digits = '0123456789';
const minus = '-';
const underLine = '_';
const special = '!"#$%&\'*+,./:;=?@\\^`|~';
const brackets = '[]{}()<>';
const alphabet =
upperCase + lowerCase + digits + minus + underLine + special + brackets;
let secret = '';
for (let index = 0; index < length; index++)
secret += alphabet.charAt(randomInt(alphabet.length));
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