Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106-v23-03
backend
Commits
19e47d58
Commit
19e47d58
authored
1 year ago
by
Anders Austlid
Browse files
Options
Downloads
Patches
Plain Diff
Working on refactor/bugfix for group post endpoint
parent
c05ae9ab
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/ntnu/idatt2016/v233/SmartMat/controller/group/GroupController.java
+20
-17
20 additions, 17 deletions
...t2016/v233/SmartMat/controller/group/GroupController.java
with
20 additions
and
17 deletions
src/main/java/ntnu/idatt2016/v233/SmartMat/controller/group/GroupController.java
+
20
−
17
View file @
19e47d58
...
...
@@ -59,26 +59,30 @@ public class GroupController {
* @param groupRequest the group to create
* @return a ResponseEntity containing the created group if it was created successfully, or a 400 if it wasn't
*/
@PostMapping
(
"/{username}"
)
public
ResponseEntity
<
Group
>
createGroup
(
@RequestBody
Group
group
,
@PathVariable
(
"username"
)
String
username
)
{
@PostMapping
(
"/group"
)
public
ResponseEntity
<
GroupResponse
>
createGroup
(
@RequestBody
GroupRequest
groupRequest
)
{
if
(
group
.
getG
roupName
().
equals
(
""
)
||
userService
.
getUserFromUsername
(
username
).
isEmpty
()
||
groupService
.
getGroupBy
Id
(
group
.
getGroupId
()).
isPresent
())
{
if
(
group
Request
.
g
roupName
().
equals
(
""
)
||
userService
.
getUserFromUsername
(
groupRequest
.
username
()
).
isEmpty
()
||
groupService
.
getGroupBy
Name
(
group
Request
.
groupName
()).
isPresent
())
{
return
ResponseEntity
.
badRequest
().
build
();
}
Group
group
=
new
Group
();
group
.
setGroupName
(
groupRequest
.
groupName
());
Group
g
roup
1
=
groupService
.
createGroup
(
group
);
g
roup
1
.
addUser
(
UserGroupAsso
.
builder
()
Group
createdG
roup
=
groupService
.
createGroup
(
group
);
createdG
roup
.
addUser
(
UserGroupAsso
.
builder
()
.
groupAuthority
(
"ADMIN"
)
.
group
(
g
roup
1
)
.
user
(
userService
.
getUserFromUsername
(
username
).
get
())
.
group
(
createdG
roup
)
.
user
(
userService
.
getUserFromUsername
(
groupRequest
.
username
()
).
get
())
.
build
());
return
groupService
.
updateGroup
(
group1
).
map
(
ResponseEntity:
:
ok
)
.
orElseGet
(()
->
ResponseEntity
.
badRequest
().
build
());
GroupResponse
groupResponse
=
new
GroupResponse
(
createdGroup
.
getGroupId
(),
createdGroup
.
getLinkCode
());
groupService
.
updateGroup
(
createdGroup
);
return
ResponseEntity
.
ok
(
groupResponse
);
}
/**
...
...
@@ -184,11 +188,10 @@ public class GroupController {
* @return a ResponseEntity object containing an HTTP status code and the newly created UserGroupAsso object,
* or a ResponseEntity object with an HTTP status code indicating that the request was not successful
*/
@PostMapping
(
"/connection/{username}/{linkCode}"
)
public
ResponseEntity
<?>
addConnection
(
@PathVariable
(
"username"
)
String
username
,
@PathVariable
(
"linkCode"
)
String
linkCode
){
return
groupService
.
getGroupByLinkCode
(
linkCode
)
.
flatMap
(
group
->
userService
.
getUserFromUsername
(
username
)
@PostMapping
(
"/connection"
)
public
ResponseEntity
<?>
addConnection
(
@RequestBody
GroupConnectionRequest
groupConnectionRequest
){
return
groupService
.
getGroupByLinkCode
(
groupConnectionRequest
.
linkCode
())
.
flatMap
(
group
->
userService
.
getUserFromUsername
(
groupConnectionRequest
.
username
())
.
flatMap
(
user
->
{
UserGroupAsso
userGroupAsso
=
UserGroupAsso
.
builder
()
.
group
(
group
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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