aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/users/user.service.ts
blob: 742fb0728243c717a925116af11c6bdf5c9d8c4a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                 
                                          

                                
                                                                

                                                               
                                   

             
                          
                                                               
 
               
                                 

                                        
 
                                        

                                                 
                           
     
 

                                                                
                                                                          
   
 

                                                 


                                                                
                                                                          
   
 






                                                              
                                   
                                                                                  
                                                                
                                                                          
   
 

                                                                   

                                 

                                                        
 
import { HttpClient } from '@angular/common/http'
import { Injectable } from '@angular/core'
import 'rxjs/add/operator/catch'
import 'rxjs/add/operator/map'
import { UserCreate, UserUpdateMe } from '../../../../../shared'
import { environment } from '../../../environments/environment'
import { RestExtractor } from '../rest'
import { User } from './user.model'

@Injectable()
export class UserService {
  static BASE_USERS_URL = environment.apiUrl + '/api/v1/users/'

  constructor (
    private authHttp: HttpClient,
    private restExtractor: RestExtractor
  ) {}

  changePassword (newPassword: string) {
    const url = UserService.BASE_USERS_URL + 'me'
    const body: UserUpdateMe = {
      password: newPassword
    }

    return this.authHttp.put(url, body)
                        .map(this.restExtractor.extractDataBool)
                        .catch(res => this.restExtractor.handleError(res))
  }

  updateMyDetails (details: UserUpdateMe) {
    const url = UserService.BASE_USERS_URL + 'me'

    return this.authHttp.put(url, details)
                        .map(this.restExtractor.extractDataBool)
                        .catch(res => this.restExtractor.handleError(res))
  }

  changeAvatar (avatarForm: FormData) {
    const url = UserService.BASE_USERS_URL + 'me/avatar/pick'

    return this.authHttp.post(url, avatarForm)
                        .catch(this.restExtractor.handleError)
  }

  signup (userCreate: UserCreate) {
    return this.authHttp.post(UserService.BASE_USERS_URL + 'register', userCreate)
                        .map(this.restExtractor.extractDataBool)
                        .catch(res => this.restExtractor.handleError(res))
  }

  getMyVideoQuotaUsed () {
    const url = UserService.BASE_USERS_URL + '/me/video-quota-used'

    return this.authHttp.get(url)
      .catch(res => this.restExtractor.handleError(res))
  }
}