Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
19e75710
Commit
19e75710
authored
7 years ago
by
David Noah Donges
Browse files
Options
Downloads
Patches
Plain Diff
Make user observable
parent
7914d1d4
1 merge request
!98
Resolve "navigation (login/logout)"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/services/http/authentication.service.ts
+13
-9
13 additions, 9 deletions
src/app/services/http/authentication.service.ts
with
13 additions
and
9 deletions
src/app/services/http/authentication.service.ts
+
13
−
9
View file @
19e75710
...
@@ -6,11 +6,12 @@ import { UserRole } from '../../models/user-roles.enum';
...
@@ -6,11 +6,12 @@ import { UserRole } from '../../models/user-roles.enum';
import
{
DataStoreService
}
from
'
../util/data-store.service
'
;
import
{
DataStoreService
}
from
'
../util/data-store.service
'
;
import
{
HttpClient
,
HttpHeaders
}
from
'
@angular/common/http
'
;
import
{
HttpClient
,
HttpHeaders
}
from
'
@angular/common/http
'
;
import
{
ClientAuthentication
}
from
'
../../models/client-authentication
'
;
import
{
ClientAuthentication
}
from
'
../../models/client-authentication
'
;
import
{
BehaviorSubject
}
from
'
rxjs/BehaviorSubject
'
;
@
Injectable
()
@
Injectable
()
export
class
AuthenticationService
{
export
class
AuthenticationService
{
private
readonly
STORAGE_KEY
:
string
=
'
USER
'
;
private
readonly
STORAGE_KEY
:
string
=
'
USER
'
;
private
user
:
User
;
private
user
=
new
BehaviorSubject
<
User
>
(
undefined
)
;
private
apiUrl
=
{
private
apiUrl
=
{
base
:
'
https://arsnova-staging.mni.thm.de/api
'
,
base
:
'
https://arsnova-staging.mni.thm.de/api
'
,
v2
:
'
https://arsnova-staging.mni.thm.de/api/v2
'
,
v2
:
'
https://arsnova-staging.mni.thm.de/api/v2
'
,
...
@@ -30,7 +31,7 @@ export class AuthenticationService {
...
@@ -30,7 +31,7 @@ export class AuthenticationService {
private
http
:
HttpClient
)
{
private
http
:
HttpClient
)
{
if
(
dataStoreService
.
has
(
this
.
STORAGE_KEY
))
{
if
(
dataStoreService
.
has
(
this
.
STORAGE_KEY
))
{
// Load user data from local data store if available
// Load user data from local data store if available
this
.
user
=
JSON
.
parse
(
dataStoreService
.
get
(
this
.
STORAGE_KEY
));
this
.
user
.
next
(
JSON
.
parse
(
dataStoreService
.
get
(
this
.
STORAGE_KEY
))
)
;
}
}
}
}
...
@@ -74,28 +75,28 @@ export class AuthenticationService {
...
@@ -74,28 +75,28 @@ export class AuthenticationService {
logout
()
{
logout
()
{
// Destroy the persisted user data
// Destroy the persisted user data
this
.
dataStoreService
.
remove
(
this
.
STORAGE_KEY
);
this
.
dataStoreService
.
remove
(
this
.
STORAGE_KEY
);
this
.
user
=
undefined
;
this
.
user
.
next
(
undefined
)
;
}
}
getUser
():
User
{
getUser
():
User
{
return
this
.
user
;
return
this
.
user
.
getValue
()
;
}
}
private
setUser
(
user
:
User
):
void
{
private
setUser
(
user
:
User
):
void
{
this
.
user
=
user
;
this
.
user
.
next
(
user
)
;
this
.
dataStoreService
.
set
(
this
.
STORAGE_KEY
,
JSON
.
stringify
(
this
.
user
));
this
.
dataStoreService
.
set
(
this
.
STORAGE_KEY
,
JSON
.
stringify
(
user
));
}
}
isLoggedIn
():
boolean
{
isLoggedIn
():
boolean
{
return
this
.
user
!==
undefined
;
return
this
.
user
.
getValue
()
!==
undefined
;
}
}
getRole
():
UserRole
{
getRole
():
UserRole
{
return
this
.
isLoggedIn
()
?
this
.
user
.
role
:
undefined
;
return
this
.
isLoggedIn
()
?
this
.
user
.
getValue
().
role
:
undefined
;
}
}
getToken
():
string
{
getToken
():
string
{
return
this
.
user
.
token
;
return
this
.
isLoggedIn
()
?
this
.
user
.
getValue
().
token
:
undefined
;
}
}
private
checkLogin
(
clientAuthentication
:
Observable
<
ClientAuthentication
>
,
userRole
:
UserRole
):
Observable
<
boolean
>
{
private
checkLogin
(
clientAuthentication
:
Observable
<
ClientAuthentication
>
,
userRole
:
UserRole
):
Observable
<
boolean
>
{
...
@@ -115,4 +116,7 @@ export class AuthenticationService {
...
@@ -115,4 +116,7 @@ export class AuthenticationService {
});
});
}
}
get
watchUser
()
{
return
this
.
user
.
asObservable
();
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment