1
- import { HttpService } from '@nestjs/axios' ;
2
- import { Injectable } from '@nestjs/common' ;
3
- import { PassportStrategy } from '@nestjs/passport' ;
4
- import { Strategy } from 'passport-oauth2' ;
5
- import { firstValueFrom } from 'rxjs' ;
6
- import { UsersService } from 'src/users/users.service' ;
7
- import { OAuthUser } from './oauthuser' ;
1
+ import { HttpService } from '@nestjs/axios'
2
+ import { Injectable } from '@nestjs/common'
3
+ import { PassportStrategy } from '@nestjs/passport'
4
+ import { Strategy } from 'passport-oauth2'
5
+ import { firstValueFrom } from 'rxjs'
6
+ import { UsersService } from 'src/users/users.service'
7
+ import { OAuthUser } from './oauthuser'
8
8
9
- const AUTH_SCH_URL = 'https://auth.sch.bme.hu' ;
9
+ const AUTH_SCH_URL = 'https://auth.sch.bme.hu'
10
10
11
11
@Injectable ( )
12
12
export class AuthschStrategy extends PassportStrategy ( Strategy , 'authsch' ) {
@@ -22,7 +22,7 @@ export class AuthschStrategy extends PassportStrategy(Strategy, 'authsch') {
22
22
callbackURL : '/auth/callback' ,
23
23
scope : [ 'basic' , 'sn' , 'givenName' , 'mail' ] , // ?? niifEduPersonAttendedCourse = hallgatott tárgyak
24
24
// Hallgató által jelenleg hallgatott kurzusok kódjai. Példa: "BMEVIAUA218;BMEVIIIA316"
25
- } ) ;
25
+ } )
26
26
}
27
27
28
28
async validate ( accessToken : string ) : Promise < any > {
@@ -32,22 +32,20 @@ export class AuthschStrategy extends PassportStrategy(Strategy, 'authsch') {
32
32
`${ AUTH_SCH_URL } /api/profile?access_token=${ accessToken } ` ,
33
33
) ,
34
34
)
35
- ) . data ;
35
+ ) . data
36
36
37
37
const user = await this . usersService . findByAuthSchId (
38
38
responseUser . internal_id ,
39
- ) ;
40
- if ( user ) return user ;
39
+ )
40
+ if ( user ) return user
41
41
else {
42
- const newUser = await this . usersService . create (
43
- {
44
- authSchId : responseUser . internal_id ,
45
- firstName : responseUser . givenName ,
46
- lastName : responseUser . sn ,
47
- email : responseUser . mail
48
- }
49
- ) ;
50
- return newUser ;
42
+ const newUser = await this . usersService . create ( {
43
+ authSchId : responseUser . internal_id ,
44
+ firstName : responseUser . givenName ,
45
+ lastName : responseUser . sn ,
46
+ email : responseUser . mail ,
47
+ } )
48
+ return newUser
51
49
}
52
50
}
53
51
}
0 commit comments