Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
planner-team-one
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
21
Issues
21
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
Евгений Положенцев
planner-team-one
Commits
85008743
Commit
85008743
authored
Dec 05, 2022
by
Евгений Положенцев
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#90
edit auth of task Author Executor checker
parent
96603a34
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
helpers.ts
planner-api/src/helpers.ts
+14
-10
No files found.
planner-api/src/helpers.ts
View file @
85008743
...
@@ -25,7 +25,14 @@ export const auth = async(req: Request,res: Response, next:NextFunction):Promise
...
@@ -25,7 +25,14 @@ export const auth = async(req: Request,res: Response, next:NextFunction):Promise
/**Check if user with the given token is executor or author of task with the given Id(taskId) */
/**Check if user with the given token is executor or author of task with the given Id(taskId) */
export
const
authAuthorOrExecutorOfTask
=
async
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
):
Promise
<
void
|
express
.
Response
<
Response
>>=>
{
export
const
authAuthorOrExecutorOfTask
=
async
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
):
Promise
<
void
|
express
.
Response
<
Response
>>=>
{
const
token
=
req
.
get
(
'Authorization'
);
const
token
=
req
.
get
(
'Authorization'
);
const
{
taskId
}
=
req
.
body
let
taskId
=
null
taskId
=
req
.
body
.
taskId
if
(
req
.
body
?.
taskId
)
{
taskId
=
req
.
body
.
taskId
}
else
if
(
req
.
params
?.
taskId
){
taskId
=
req
.
params
.
taskId
}
else
return
res
.
send
({
vessage
:
"there are no taskId found"
})
if
(
!
token
)
return
res
.
status
(
401
).
send
({
Message
:
'token not exists'
})
if
(
!
token
)
return
res
.
status
(
401
).
send
({
Message
:
'token not exists'
})
req
.
body
=
{...
req
.
body
,
executorStatus
:
false
}
req
.
body
=
{...
req
.
body
,
executorStatus
:
false
}
...
@@ -53,15 +60,17 @@ export const authAuthorOrExecutorOfTask = async(req: Request,res: Response, next
...
@@ -53,15 +60,17 @@ export const authAuthorOrExecutorOfTask = async(req: Request,res: Response, next
},
},
]})
]})
if
(
!
task
)
return
res
.
status
(
404
).
send
({
message
:
'task with possible user involved is not found'
})
if
(
!
task
)
return
res
.
status
(
404
).
send
({
message
:
'task with possible user involved is not found'
})
if
(
task
?.
executor
?.
token
===
token
)
{
req
.
body
=
{...
req
.
body
,
executorStatus
:
true
}
}
if
(
task
?.
author
?.
token
===
token
)
{
if
(
task
?.
author
?.
token
===
token
)
{
req
.
body
=
{...
req
.
body
,
authorStatus
:
true
}
req
.
body
=
{...
req
.
body
,
authorStatus
:
true
}
}
else
if
(
task
?.
executor
?.
token
===
token
)
{
req
.
body
=
{...
req
.
body
,
executorStatus
:
true
}
}
else
{
}
}
next
()
next
()
};
};
/**Check if user with the given token is executor or author of task with the given dateTimeTaskId */
export
const
authAuthorOrExecutorOfDateTimeTask
=
async
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
):
Promise
<
void
|
express
.
Response
<
Response
>>=>
{
export
const
authAuthorOrExecutorOfDateTimeTask
=
async
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
):
Promise
<
void
|
express
.
Response
<
Response
>>=>
{
const
token
=
req
.
get
(
'Authorization'
);
const
token
=
req
.
get
(
'Authorization'
);
let
dateTimeTaskId
=
null
let
dateTimeTaskId
=
null
...
@@ -69,10 +78,8 @@ export const authAuthorOrExecutorOfDateTimeTask = async(req: Request,res: Respon
...
@@ -69,10 +78,8 @@ export const authAuthorOrExecutorOfDateTimeTask = async(req: Request,res: Respon
req
.
body
=
{...
req
.
body
,
authorStatus
:
false
}
req
.
body
=
{...
req
.
body
,
authorStatus
:
false
}
dateTimeTaskId
=
req
.
body
.
dateTimeTaskId
dateTimeTaskId
=
req
.
body
.
dateTimeTaskId
if
(
req
.
body
?.
dateTimeTaskId
)
{
if
(
req
.
body
?.
dateTimeTaskId
)
{
console
.
log
(
'gotin rebody'
)
dateTimeTaskId
=
req
.
body
.
dateTimeTaskId
dateTimeTaskId
=
req
.
body
.
dateTimeTaskId
}
else
if
(
req
.
params
?.
dateTimeTaskId
){
}
else
if
(
req
.
params
?.
dateTimeTaskId
){
console
.
log
(
'gotin params'
)
dateTimeTaskId
=
req
.
params
.
dateTimeTaskId
dateTimeTaskId
=
req
.
params
.
dateTimeTaskId
}
else
return
res
.
send
({
vessage
:
"there are no dateTimeTaskId found"
})
}
else
return
res
.
send
({
vessage
:
"there are no dateTimeTaskId found"
})
const
task
=
await
dataSource
const
task
=
await
dataSource
...
@@ -84,15 +91,12 @@ export const authAuthorOrExecutorOfDateTimeTask = async(req: Request,res: Respon
...
@@ -84,15 +91,12 @@ export const authAuthorOrExecutorOfDateTimeTask = async(req: Request,res: Respon
.
leftJoinAndSelect
(
"task.author"
,
"users"
)
.
leftJoinAndSelect
(
"task.author"
,
"users"
)
.
where
(
"dateTimeTask.id = :dateTimeTaskId"
,
{
dateTimeTaskId
})
.
where
(
"dateTimeTask.id = :dateTimeTaskId"
,
{
dateTimeTaskId
})
.
getOne
()
.
getOne
()
console
.
log
(
'task'
,
task
)
if
(
!
task
)
return
res
.
status
(
404
).
send
({
message
:
'task with possible user involved is not found'
})
if
(
!
task
)
return
res
.
status
(
404
).
send
({
message
:
'task with possible user involved is not found'
})
if
(
task
?.
executor
?.
token
===
token
)
{
if
(
task
?.
executor
?.
token
===
token
)
{
console
.
log
(
'executorStatus:trues'
)
req
.
body
=
{...
req
.
body
,
executorStatus
:
true
}
req
.
body
=
{...
req
.
body
,
executorStatus
:
true
}
}
}
if
(
task
?.
author
?.
token
===
token
)
{
if
(
task
?.
author
?.
token
===
token
)
{
console
.
log
(
'authorStatus:true'
)
req
.
body
=
{...
req
.
body
,
authorStatus
:
true
}
req
.
body
=
{...
req
.
body
,
authorStatus
:
true
}
}
}
next
()
next
()
...
...
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