Compare commits
No commits in common. "2067bb9c5525f45e7021399d9b0b7bceb969f9e1" and "8672ca711227ed31ec327d9aa71421ef07a024a7" have entirely different histories.
2067bb9c55
...
8672ca7112
|
|
@ -20,14 +20,10 @@ export class AuthController {
|
|||
throw new UnauthorizedException('Пользователь не аутентифицирован');
|
||||
}
|
||||
|
||||
const user = req.user as { userId: number; username: string; login?: string; role?: string };
|
||||
const userWithoutPassword = {
|
||||
id: user.userId,
|
||||
login: user.login || user.username,
|
||||
role: user.role
|
||||
};
|
||||
const user = req.user as { userId: number; username: string; login?: string };
|
||||
const userWithoutPassword = { ...user };
|
||||
|
||||
this.logger.log(`Аутентифицированный пользователь: ${user.username}, роль: ${user.role}`);
|
||||
this.logger.log(`Аутентифицированный пользователь: ${user.username}`);
|
||||
return {
|
||||
isAuthenticated: true,
|
||||
user: userWithoutPassword
|
||||
|
|
@ -62,8 +58,7 @@ export class AuthController {
|
|||
success: true,
|
||||
user: {
|
||||
id: user.id,
|
||||
login: user.login,
|
||||
role: user.role // Добавляем роль в ответ
|
||||
login: user.login
|
||||
},
|
||||
access_token
|
||||
};
|
||||
|
|
|
|||
|
|
@ -17,10 +17,7 @@ export class AuthService {
|
|||
|
||||
if (user && user.password === password) {
|
||||
const { password, ...result } = user;
|
||||
return {
|
||||
...result,
|
||||
role: user.role
|
||||
};
|
||||
return result;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
@ -28,8 +25,7 @@ export class AuthService {
|
|||
async login(user: any) {
|
||||
const payload = {
|
||||
username: user.login,
|
||||
sub: user.id,
|
||||
role: user.role
|
||||
sub: user.id
|
||||
};
|
||||
return {
|
||||
access_token: this.jwtService.sign(payload),
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@ export class JwtStrategy extends PassportStrategy(Strategy) {
|
|||
return {
|
||||
userId: payload.sub,
|
||||
username: payload.username,
|
||||
login: payload.username,
|
||||
role: payload.role
|
||||
login: payload.username
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
@ -10,7 +10,4 @@ export class User {
|
|||
|
||||
@Column()
|
||||
password: string;
|
||||
|
||||
@Column({ default: 'user' })
|
||||
role: 'user' | 'admin';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -225,13 +225,10 @@ export class PrometheusService {
|
|||
|
||||
async fetchAllMetricsWithValues(): Promise<any[]> {
|
||||
const metricNames = await this.fetchAllMetrics();
|
||||
const zvksMetrics = metricNames.filter(metric => metric.startsWith('zvks'));
|
||||
|
||||
const promises = zvksMetrics.map(async (metric) => {
|
||||
const promises = metricNames.map(async (metric) => {
|
||||
const data = await this.fetchMetrics(metric);
|
||||
return { metric, data };
|
||||
});
|
||||
|
||||
return Promise.all(promises);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue