Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Progark gruppe 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Tobias Ingebrigt Ørstad
Progark gruppe 3
Commits
707bc27f
Commit
707bc27f
authored
5 years ago
by
Turid Cecilie Dahl
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/dev' into 97-last-day-changes
parents
edef33e7
88523cc7
Branches
master
No related tags found
2 merge requests
!104
Dev
,
!100
Resolve "Last day changes"
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
backend/api/rounds.js
+1
-1
1 addition, 1 deletion
backend/api/rounds.js
backend/api/tournament.js
+40
-0
40 additions, 0 deletions
backend/api/tournament.js
frontend/core/src/com/gameware/game/QueryIntermediate.java
+9
-0
9 additions, 0 deletions
frontend/core/src/com/gameware/game/QueryIntermediate.java
with
50 additions
and
1 deletion
backend/api/rounds.js
+
1
−
1
View file @
707bc27f
...
...
@@ -449,7 +449,7 @@ function roundcheck(client, tournament, roundid) {
// fetched the round objects of the active round
let
activePlayer
;
for
(
let
i
=
0
;
i
<
rounds
.
length
;
i
++
)
{
if
(
rounds
[
i
].
_id
.
str
==
roundid
.
str
)
{
if
(
String
(
rounds
[
i
].
_id
)
==
String
(
roundid
)
)
{
activePlayer
=
rounds
[
i
].
playerId
;
break
;
}
...
...
This diff is collapsed.
Click to expand it.
backend/api/tournament.js
+
40
−
0
View file @
707bc27f
...
...
@@ -309,6 +309,46 @@ router.get("/playeractive/:userid", (req, res) => {
);
});
router
.
get
(
"
/specific/:id
"
,
(
req
,
res
)
=>
{
MongoClient
.
connect
(
connectionUrl
,
{
useNewUrlParser
:
true
,
useUnifiedTopology
:
true
},
(
err
,
client
)
=>
{
// Unable to connect to database
if
(
err
)
{
res
.
sendStatus
(
500
);
// Internal server error
return
;
}
let
id
;
if
(
!
req
.
params
.
id
)
{
res
.
sendStatus
(
400
);
}
try
{
id
=
mongo
.
ObjectID
(
req
.
params
.
id
);
}
catch
(
err
)
{
res
.
sendStatus
(
400
);
}
// Using the database gameWare and collection tournaments
const
db
=
client
.
db
(
"
gameWare
"
);
const
collection
=
"
tournaments
"
;
db
.
collection
(
collection
)
.
find
({
_id
:
id
,
})
.
toArray
((
err
,
result
)
=>
{
if
(
err
)
{
res
.
sendStatus
(
500
);
client
.
close
();
return
;
}
res
.
json
(
result
[
0
]);
client
.
close
();
});
}
);
});
router
.
get
(
"
/player/:userid/:active
"
,
(
req
,
res
)
=>
{
// Returns the tournaments of player with active field matching parameter
// Also checks the state of all tournaments
...
...
This diff is collapsed.
Click to expand it.
frontend/core/src/com/gameware/game/QueryIntermediate.java
+
9
−
0
View file @
707bc27f
...
...
@@ -160,6 +160,15 @@ public class QueryIntermediate {
return
tournaments
;
}
public
static
Tournament
getSpecificTournament
(
String
tournamentID
)
throws
IOException
,
NoSuchElementException
{
String
route
=
"tournament/specific/"
+
tournamentID
;
String
[]
response
=
sendGetRequest
(
route
);
checkStatusCode
(
response
);
Tournament
tournament
=
json
.
fromJson
(
Tournament
.
class
,
response
[
1
]);
checkObjectNotNull
(
tournament
);
return
tournament
;
}
public
static
Tournament
joinATournament
(
String
playerId
)
throws
IOException
,
NoSuchElementException
{
String
route
=
"tournament/join/"
;
Map
<
String
,
String
>
params
=
new
HashMap
<>();
...
...
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