Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
99a66695
Commit
99a66695
authored
Jul 30, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改api重定向
parent
3260ceaa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
21 deletions
+20
-21
swagger.py
apps/jumpserver/swagger.py
+10
-1
urls.py
apps/jumpserver/urls.py
+3
-10
views.py
apps/jumpserver/views.py
+7
-10
No files found.
apps/jumpserver/swagger.py
View file @
99a66695
...
...
@@ -35,7 +35,16 @@ class CustomSwaggerAutoSchema(SwaggerAutoSchema):
def
get_swagger_view
(
version
=
'v1'
):
from
.urls
import
api_v1_patterns
,
api_v2_patterns
from
.urls
import
api_v1
,
api_v2
from
django.urls
import
path
,
include
api_v1_patterns
=
[
path
(
'api/v1/'
,
include
(
api_v1
))
]
api_v2_patterns
=
[
path
(
'api/v2/'
,
include
(
api_v2
))
]
if
version
==
"v2"
:
patterns
=
api_v2_patterns
else
:
...
...
apps/jumpserver/urls.py
View file @
99a66695
...
...
@@ -55,19 +55,12 @@ js_i18n_patterns = i18n_patterns(
path
(
'jsi18n/'
,
JavaScriptCatalog
.
as_view
(),
name
=
'javascript-catalog'
),
)
api_v1_patterns
=
[
path
(
'api/v1/'
,
include
(
api_v1
))
]
api_v2_patterns
=
[
path
(
'api/v2/'
,
include
(
api_v2
))
]
urlpatterns
=
[
path
(
''
,
IndexView
.
as_view
(),
name
=
'index'
),
path
(
'
'
,
include
(
api_v2_patterns
)),
path
(
'
'
,
include
(
api_v1_patterns
)),
re_path
(
'api/(?P<
version>
\
w+)/(?P<app>
\
w+
)/.*'
,
redirect_format_api
),
path
(
'
api/v1/'
,
include
(
api_v1
)),
path
(
'
api/v2/'
,
include
(
api_v2
)),
re_path
(
'api/(?P<
app>
\
w+)/(?P<version>v
\
d
)/.*'
,
redirect_format_api
),
path
(
'api/health/'
,
HealthCheckView
.
as_view
(),
name
=
"health"
),
path
(
'luna/'
,
LunaView
.
as_view
(),
name
=
'luna-view'
),
path
(
'i18n/<str:lang>/'
,
I18NView
.
as_view
(),
name
=
'i18n-switch'
),
...
...
apps/jumpserver/views.py
View file @
99a66695
...
...
@@ -2,14 +2,13 @@ import datetime
import
re
import
time
from
django.http
import
HttpResponseRedirect
from
django.http
import
HttpResponseRedirect
,
JsonResponse
from
django.conf
import
settings
from
django.views.generic
import
TemplateView
,
View
from
django.utils
import
timezone
from
django.utils.translation
import
ugettext_lazy
as
_
from
django.db.models
import
Count
from
django.shortcuts
import
redirect
from
rest_framework.response
import
Response
from
rest_framework.views
import
APIView
from
django.views.decorators.csrf
import
csrf_exempt
from
django.http
import
HttpResponse
...
...
@@ -208,7 +207,7 @@ class I18NView(View):
return
response
api_url_pattern
=
re
.
compile
(
r'^/api/(?P<
version>\w+)/(?P<app>\w+
)/(?P<extra>.*)$'
)
api_url_pattern
=
re
.
compile
(
r'^/api/(?P<
app>\w+)/(?P<version>v\d
)/(?P<extra>.*)$'
)
@csrf_exempt
...
...
@@ -216,18 +215,16 @@ def redirect_format_api(request, *args, **kwargs):
_path
,
query
=
request
.
path
,
request
.
GET
.
urlencode
()
matched
=
api_url_pattern
.
match
(
_path
)
if
matched
:
version
,
app
,
extra
=
matched
.
groups
()
_path
=
'/api/{app}/{version}/{extra}?{query}'
.
format
(
**
{
"app"
:
app
,
"version"
:
version
,
"extra"
:
extra
,
"query"
:
query
})
kwargs
=
matched
.
groupdict
()
kwargs
[
"query"
]
=
query
_path
=
'/api/{version}/{app}/{extra}?{query}'
.
format
(
**
kwargs
)
.
rstrip
(
"?"
)
return
HttpResponseTemporaryRedirect
(
_path
)
else
:
return
Response
({
"msg"
:
"Redirect url failed: {}"
.
format
(
_path
)},
status
=
404
)
return
Json
Response
({
"msg"
:
"Redirect url failed: {}"
.
format
(
_path
)},
status
=
404
)
class
HealthCheckView
(
APIView
):
permission_classes
=
()
def
get
(
self
,
request
):
return
Response
({
"status"
:
1
,
"time"
:
int
(
time
.
time
())})
return
Json
Response
({
"status"
:
1
,
"time"
:
int
(
time
.
time
())})
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