Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
ac9b3ed1
Commit
ac9b3ed1
authored
Nov 24, 2020
by
Zohten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small changes for preparing refactoring
parent
dcfb57f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
UserController.class.php
BackEnd/src/controller/UserController.class.php
+6
-7
No files found.
BackEnd/src/controller/UserController.class.php
View file @
ac9b3ed1
...
...
@@ -44,7 +44,7 @@ class UserController extends Controller
protected
function
getAllUsers
()
{
$users
=
User
::
getList
();
$response
=
Response
::
okResponse
(
json_encode
(
$users
));
$response
=
Response
::
okResponse
(
json_encode
(
$users
,
JSON_PRETTY_PRINT
));
return
$response
;
}
...
...
@@ -70,12 +70,6 @@ class UserController extends Controller
try
{
$jwt_token
=
$this
->
request
->
getJwtToken
();
$decodedJWT
=
JWT
::
decode
(
$jwt_token
,
JWT_BACKEND_KEY
,
array
(
'HS256'
));
if
(
$decodedJWT
->
data
->
id
!=
$array
[
'id'
])
{
throw
new
Exception
(
"You don't have access to this account."
,
1
);
}
User
::
updateUser
(
$array
);
}
catch
(
Exception
$e
)
{
header
(
'WWW-Authenticate: Bearer realm="'
.
JWT_ISSUER
.
'"'
);
...
...
@@ -85,6 +79,11 @@ class UserController extends Controller
));
return
Response
::
unauthorizedResponse
(
$jsonResult
);
}
if
(
$decodedJWT
->
data
->
id
!=
$array
[
'id'
])
{
return
Response
::
unauthorizedResponse
(
"You don't have access to this account."
);
}
User
::
updateUser
(
$array
);
$response
=
Response
::
okResponse
(
'User succesfully updated !'
);
return
$response
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment