14 changed files with 151 additions and 25 deletions
@ -0,0 +1,5 @@ |
|||
export interface SteamData { |
|||
avatar: string; |
|||
nickname: string; |
|||
time:number; |
|||
} |
@ -0,0 +1,7 @@ |
|||
export interface SteamIDs { |
|||
steam3: string; |
|||
steam2: string; |
|||
steam64: string; |
|||
community_url: string; |
|||
account_id: number; |
|||
} |
@ -0,0 +1,24 @@ |
|||
import {Component} from "@angular/core"; |
|||
import {AuthService} from "../../services/auth.service"; |
|||
|
|||
@Component({ |
|||
selector: 'app-need-auth-to-continue', |
|||
template: ` |
|||
<div style="display: flex; justify-content: center"> |
|||
<div> |
|||
<img style="height: 200px" src="assets/images/stop.png"> |
|||
<h4>Нужно сначала авторизоваться</h4> |
|||
|
|||
<button style="width: 100%" mat-button mat-raised-button (click)="login()">Войти</button> |
|||
</div> |
|||
</div> |
|||
` |
|||
}) |
|||
export class NeedAuthToContinue { |
|||
constructor(private authService: AuthService) { |
|||
} |
|||
|
|||
login() { |
|||
this.authService.login() |
|||
} |
|||
} |
@ -1,7 +1,21 @@ |
|||
<div class="content-in-center-header" style="flex-direction: column;"> |
|||
<h1>Вася убийца 2007</h1> |
|||
<h3>бибики</h3> |
|||
<div *ngIf="authService.steamdata == null && loading == null"> |
|||
<h1>Профиль</h1> |
|||
<h3>Здесь можно увидеть профиль игрока на наших серверах с подробной информации о нем</h3> |
|||
</div> |
|||
<div *ngIf="loading == false && profile != null && profile.steam_data != null"> |
|||
<h1>{{profile.steam_data.nickname}}</h1> |
|||
<h3>Открыть профиль в стиме</h3> |
|||
</div> |
|||
<div *ngIf="loading == true"> |
|||
<h1>Загрузка данных о профиле</h1> |
|||
<h3>Пожалуйста подождите</h3> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="content-in-center"> |
|||
<app-need-auth-to-continue *ngIf="authService.steamdata == null && loading == null"></app-need-auth-to-continue> |
|||
<div *ngIf="loading == false"> |
|||
<p>Профиль малютки</p> |
|||
</div> |
|||
</div> |
|||
|
@ -0,0 +1,30 @@ |
|||
import {Injectable, OnInit} from '@angular/core'; |
|||
import {PlayerServiceService} from "./player-service.service"; |
|||
import {ProfileRequestData} from "../entities/profile/ProfileRequestData"; |
|||
import {SteamData} from "../entities/profile/SteamData"; |
|||
import {SteamIDs} from "../entities/profile/SteamIDs"; |
|||
|
|||
@Injectable({ |
|||
providedIn: 'root' |
|||
}) |
|||
export class AuthService { |
|||
static KEY: string = "steam_data"; |
|||
steamdata: SteamData | null = null; |
|||
steamIds: SteamIDs | null = null; |
|||
|
|||
constructor(private playerService: PlayerServiceService) { |
|||
this.playerService.getProfile(null, [ProfileRequestData.STEAM_DATA]) |
|||
.subscribe((res) => { |
|||
this.steamdata = res.steam_data; |
|||
this.steamIds = res.steamids |
|||
}) |
|||
} |
|||
|
|||
login() { |
|||
window.open("api/auth/login?subdomain=tf2") |
|||
} |
|||
|
|||
logout() { |
|||
window.open("api/auth/logout") |
|||
} |
|||
} |
After Width: | Height: | Size: 163 KiB |
Loading…
Reference in new issue