Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Coscine
backend
apis
Project
Commits
9b86d483
Commit
9b86d483
authored
Jul 01, 2021
by
Kimia Beheshti
Committed by
Benedikt Heinrichs
Jul 01, 2021
Browse files
Update: Improve invitation handling
parent
302af7a0
Changes
1
Show whitespace changes
Inline
Side-by-side
src/Project/Controllers/ProjectController.cs
View file @
9b86d483
...
@@ -600,7 +600,7 @@ namespace Coscine.Api.Project.Controllers
...
@@ -600,7 +600,7 @@ namespace Coscine.Api.Project.Controllers
return
Unauthorized
(
$"You are not an owner of the project."
);
return
Unauthorized
(
$"You are not an owner of the project."
);
}
}
var
invitations
=
_invitationModel
.
GetAllWhere
(
x
=>
x
.
Project
==
projectId
&&
x
.
Expiration
>
DateTime
.
UtcNow
)
var
invitations
=
_invitationModel
.
GetAllWhere
(
x
=>
x
.
Project
==
projectId
)
.
Select
(
x
=>
new
InvitationReturnObject
.
Select
(
x
=>
new
InvitationReturnObject
{
{
Id
=
x
.
Id
,
Id
=
x
.
Id
,
...
@@ -652,11 +652,22 @@ namespace Coscine.Api.Project.Controllers
...
@@ -652,11 +652,22 @@ namespace Coscine.Api.Project.Controllers
x
.
Expiration
>
DateTime
.
UtcNow
x
.
Expiration
>
DateTime
.
UtcNow
);
);
if
(
invitations
!=
null
&&
invitations
.
Any
())
if
(
invitations
.
Any
())
{
{
return
BadRequest
(
"This invitee already has a valid invitation to this project."
);
return
BadRequest
(
"This invitee already has a valid invitation to this project."
);
}
}
var
expiredInvitations
=
_invitationModel
.
GetAllWhere
(
x
=>
x
.
Project
==
sendInvitationObject
.
Project
&&
x
.
InviteeEmail
==
sendInvitationObject
.
Email
&&
x
.
Expiration
<=
DateTime
.
UtcNow
);
foreach
(
var
expiredInvitation
in
expiredInvitations
)
{
_invitationModel
.
Delete
(
expiredInvitation
);
}
var
token
=
_invitationModel
.
CreateInvitation
(
sendInvitationObject
.
Project
,
user
.
Id
,
sendInvitationObject
.
Role
,
sendInvitationObject
.
Email
);
var
token
=
_invitationModel
.
CreateInvitation
(
sendInvitationObject
.
Project
,
user
.
Id
,
sendInvitationObject
.
Role
,
sendInvitationObject
.
Email
);
var
body
=
new
JObject
var
body
=
new
JObject
...
...
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