Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SMART
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UNI-KLU
SMART
Commits
6c2940b5
Commit
6c2940b5
authored
4 years ago
by
Manuel Herold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extracted host information in their own files
parent
c0d4a8b3
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
13 deletions
+30
-13
usergraph.dart
src/dashboard/lib/graphing/usergraph.dart
+1
-1
clustergetter.dart
src/dashboard/lib/querying/clustergetter.dart
+4
-4
communitygetter.dart
src/dashboard/lib/querying/communitygetter.dart
+4
-4
host_provider.dart
src/dashboard/lib/querying/host_provider.dart
+17
-0
community_graph_view_page.dart
...rd/lib/ui/graphs/community/community_graph_view_page.dart
+1
-1
cluster_graph.dart
...dashboard/lib/ui/graphs/community_meta/cluster_graph.dart
+1
-1
cluster_view_page.dart
...board/lib/ui/graphs/community_meta/cluster_view_page.dart
+1
-1
index.dart
src/dashboard/lib/ui/graphs/community_meta/index.dart
+1
-1
No files found.
src/dashboard/lib/graphing/usergraph.dart
View file @
6c2940b5
import
'package:circlegraph/circlegraph.dart'
;
import
'package:dashboard/loading.dart'
;
import
'package:dashboard/querying/
data
getter.dart'
;
import
'package:dashboard/querying/
community
getter.dart'
;
import
'package:dashboard/ui/theme/color_holder.dart'
;
import
'package:dashboard/ui/util/logged_in_appbar.dart'
;
import
'package:enhanced_future_builder/enhanced_future_builder.dart'
;
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/querying/clustergetter.dart
View file @
6c2940b5
import
'package:dashboard/data/cluster.dart'
;
import
'package:dashboard/data/community.dart'
;
import
'package:dashboard/data/post.dart'
;
import
'package:dashboard/querying/datagetter.dart'
;
import
'package:dashboard/querying/communitygetter.dart'
;
import
'package:dashboard/querying/host_provider.dart'
;
import
'package:dashboard/util/loginhelper.dart'
;
import
'package:dashboard/util/user.dart'
;
import
'package:logger/logger.dart'
;
...
...
@@ -11,7 +12,7 @@ class ClusterGetter {
Future
<
List
<
Community
>>
getNodesfromLayer
(
String
layerName
)
async
{
String
url
=
"
https://articonf1.itec.aau.at:30101
/api/use-cases/reddit/tables/reddit/layers/
$layerName
/nodes"
;
"
${HostProvider.articonfHost}
/api/use-cases/reddit/tables/reddit/layers/
$layerName
/nodes"
;
BackendUser
user
=
await
LoginHelper
().
loggedInUser
;
String
token
=
user
.
token
;
...
...
@@ -21,7 +22,6 @@ class ClusterGetter {
List
<
dynamic
>
nodeList
=
await
DataGetter
.
getJsonList
(
url
,
headers:
headers
);
Map
<
String
,
List
<
Post
>>
resultMap
=
{};
List
<
Community
>
communityList
=
[];
for
(
Map
<
String
,
dynamic
>
entry
in
nodeList
)
{
...
...
@@ -70,7 +70,7 @@ class ClusterGetter {
Future
<
List
<
Cluster
>>
getClustersFromLayer
(
String
layerName
)
async
{
String
url
=
"
https://articonf1.itec.aau.at:30103
/api/use-cases/reddit/tables/reddit/layers/
$layerName
/clusters"
;
"
${HostProvider.articonfHost}
/api/use-cases/reddit/tables/reddit/layers/
$layerName
/clusters"
;
BackendUser
user
=
await
LoginHelper
().
loggedInUser
;
String
token
=
user
.
token
;
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/querying/
data
getter.dart
→
src/dashboard/lib/querying/
community
getter.dart
View file @
6c2940b5
import
'dart:convert'
;
import
'dart:io'
;
import
'package:dashboard/querying/host_provider.dart'
;
import
'package:dashboard/util/loginhelper.dart'
;
import
'package:dashboard/util/user.dart'
;
import
'package:http/http.dart'
as
http
;
...
...
@@ -78,7 +79,7 @@ class DataGetter {
}
static
Future
<
User
>
getUser
(
String
username
)
async
{
String
url
=
"
http://live.nope-api.systems:81
/users/
$username
"
;
String
url
=
"
${HostProvider.manuelHost}
/users/
$username
"
;
Map
<
String
,
dynamic
>
json
=
await
getJson
(
url
);
...
...
@@ -100,8 +101,7 @@ class DataGetter {
}
static
Future
<
Community
>
getCommunity
(
String
communityname
)
async
{
String
url
=
"http://live.nope-api.systems:81/communities/
$communityname
/posts"
;
String
url
=
"
${HostProvider.manuelHost}
/communities/
$communityname
/posts"
;
Map
<
String
,
dynamic
>
json
=
await
getJson
(
url
);
...
...
@@ -133,7 +133,7 @@ class DataGetter {
static
Future
<
List
<
Community
>>
getCommunities
()
async
{
Map
<
String
,
dynamic
>
communities
=
await
DataGetter
.
getJson
(
"
http://live.nope-api.systems:81
/communities"
);
await
DataGetter
.
getJson
(
"
${HostProvider.manuelHost}
/communities"
);
List
<
Community
>
communityList
=
[];
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/querying/host_provider.dart
0 → 100644
View file @
6c2940b5
import
'package:flutter/foundation.dart'
;
class
HostProvider
{
static
String
_hostArticonfDebug
=
"https://articonf1.itec.aau.at:30101"
;
static
String
_hostArticonfRelease
=
"https://articonf1"
;
static
String
_hostManuelDebug
=
"http://test.nope-api.systems:81"
;
static
String
_hostManuelRelease
=
"http://manuel"
;
static
String
get
articonfHost
{
return
kReleaseMode
?
_hostArticonfRelease
:
_hostArticonfDebug
;
}
static
String
get
manuelHost
{
return
kReleaseMode
?
_hostManuelRelease
:
_hostManuelDebug
;
}
}
This diff is collapsed.
Click to expand it.
src/dashboard/lib/ui/graphs/community/community_graph_view_page.dart
View file @
6c2940b5
...
...
@@ -2,7 +2,7 @@ import 'dart:math';
import
'package:dashboard/data/community.dart'
;
import
'package:dashboard/loading.dart'
;
import
'package:dashboard/querying/
data
getter.dart'
;
import
'package:dashboard/querying/
community
getter.dart'
;
import
'package:dashboard/ui/graphs/community/circle/communitygraph.dart'
;
import
'package:dashboard/ui/graphs/community/list/community_list.dart'
;
import
'package:dashboard/ui/graphs/community_meta/cluster_view_page.dart'
;
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/ui/graphs/community_meta/cluster_graph.dart
View file @
6c2940b5
...
...
@@ -7,7 +7,7 @@ import 'package:dashboard/data/community.dart';
import
'package:dashboard/graphing/trustcolorcalculator.dart'
;
import
'package:dashboard/loading.dart'
;
import
'package:dashboard/querying/clustergetter.dart'
;
import
'package:dashboard/querying/
data
getter.dart'
;
import
'package:dashboard/querying/
community
getter.dart'
;
import
'package:dashboard/ui/graphs/community/community_graph_view_page.dart'
;
import
'package:dashboard/ui/graphs/community/list/cluster_list.dart'
;
import
'package:dashboard/ui/theme/color_holder.dart'
;
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/ui/graphs/community_meta/cluster_view_page.dart
View file @
6c2940b5
import
'package:dashboard/querying/clustergetter.dart'
;
import
'package:dashboard/querying/
data
getter.dart'
;
import
'package:dashboard/querying/
community
getter.dart'
;
import
'package:dashboard/ui/theme/color_holder.dart'
;
import
'package:dashboard/ui/util/logged_in_appbar.dart'
;
import
'package:enhanced_future_builder/enhanced_future_builder.dart'
;
...
...
This diff is collapsed.
Click to expand it.
src/dashboard/lib/ui/graphs/community_meta/index.dart
View file @
6c2940b5
...
...
@@ -6,7 +6,7 @@ import 'package:dashboard/data/community.dart';
import
'package:dashboard/graphing/trustcolorcalculator.dart'
;
import
'package:dashboard/loading.dart'
;
import
'package:dashboard/querying/clustergetter.dart'
;
import
'package:dashboard/querying/
data
getter.dart'
;
import
'package:dashboard/querying/
community
getter.dart'
;
import
'package:dashboard/ui/graphs/community/community_graph_view_page.dart'
;
import
'package:dashboard/ui/theme/color_holder.dart'
;
import
'package:dashboard/ui/util/logged_in_appbar.dart'
;
...
...
This diff is collapsed.
Click to expand it.
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