Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
indicators-parser-saas
backend
Commits
394bfc58
Verified
Commit
394bfc58
authored
2 years ago
by
Власов Иван Юрьевич
Browse files
Options
Download
Patches
Plain Diff
Added /getIndicatorGroups endpoint
parent
09274e49
master
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
endpoints/__init__.py
+1
-1
endpoints/__init__.py
endpoints/indicators.py
+11
-0
endpoints/indicators.py
endpoints/routes.py
+2
-1
endpoints/routes.py
with
14 additions
and
2 deletions
+14
-2
endpoints/__init__.py
+
1
−
1
View file @
394bfc58
...
...
@@ -2,5 +2,5 @@ from .oauth import github_oauth_callback, github_oauth_redirect
from
.service
import
ping
from
.user
import
get_me
,
create_bot_token
,
get_bot_tokens
,
delete_bot_token
from
.parser
import
load_report
from
.indicators
import
get_indicators_from_group
from
.indicators
import
get_indicators_from_group
,
get_indicator_groups
from
.watcher
import
create_watcher
This diff is collapsed.
Click to expand it.
endpoints/indicators.py
+
11
−
0
View file @
394bfc58
...
...
@@ -3,6 +3,7 @@ from tortoise.exceptions import DoesNotExist
from
models
import
IndicatorGroup
,
Indicator
from
models.indicator
import
IndicatorPD
,
IndicatorGroupPD
from
models.users
import
UserPD
from
responses.errors
import
IndicatorGroupDoesNotExist
from
responses.responses
import
OkResponse
...
...
@@ -25,3 +26,13 @@ async def get_indicators_from_group(request: Request):
indicator
.
report
=
None
indicators_pd
.
append
(
IndicatorPD
.
from_orm
(
indicator
))
return
OkResponse
({
"indicators"
:
indicators_pd
,
"group"
:
group_pd
})
async
def
get_indicator_groups
(
request
:
Request
):
""" Get all groups that belongs to user """
groups
=
await
IndicatorGroup
.
filter
(
owner
=
request
.
state
.
user
).
all
()
groups_pd
=
[]
for
group
in
groups
:
group
.
owner
=
request
.
state
.
user
groups_pd
.
append
(
IndicatorGroupPD
.
from_orm
(
group
))
return
OkResponse
(
groups_pd
)
This diff is collapsed.
Click to expand it.
endpoints/routes.py
+
2
−
1
View file @
394bfc58
...
...
@@ -17,7 +17,8 @@ api_routes = [
Route
(
"/createBotToken"
,
create_bot_token
,
methods
=
[
"GET"
]),
Route
(
"/getBotTokens"
,
get_bot_tokens
,
methods
=
[
"GET"
]),
Route
(
"/deleteBotToken"
,
delete_bot_token
,
methods
=
[
"GET"
]),
Route
(
"/createWatcher"
,
create_watcher
,
methods
=
[
"POST"
])
Route
(
"/createWatcher"
,
create_watcher
,
methods
=
[
"POST"
]),
Route
(
"/getIndicatorGroups"
,
get_indicator_groups
,
methods
=
[
"GET"
])
]
admin_routes
=
[]
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets