Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
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
钟尚武
sun
Commits
365834a6
Commit
365834a6
authored
Mar 28, 2019
by
张永
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.wanmeizhensuo.com:alpha/sun
parents
62d18d1c
66b9ef7d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
pictorial.py
api/pictorial.py
+1
-1
push.py
api/push.py
+1
-1
search.py
api/search.py
+2
-2
tag.py
api/tag.py
+1
-1
No files found.
api/pictorial.py
View file @
365834a6
...
@@ -23,7 +23,7 @@ class PictorialListView(APIView):
...
@@ -23,7 +23,7 @@ class PictorialListView(APIView):
def
post
(
self
,
request
):
def
post
(
self
,
request
):
ids
=
json
.
loads
(
request
.
POST
.
get
(
'ids'
,
'[]'
))
ids
=
json
.
loads
(
request
.
POST
.
get
(
'ids'
,
'[]'
))
updates
=
json
.
loads
(
request
.
POST
.
get
(
'update
s
'
,
'{}'
))
updates
=
json
.
loads
(
request
.
POST
.
get
(
'update'
,
'{}'
))
try
:
try
:
self
.
rpc
[
'venus/sun/pictorial/batch/update'
](
updates
=
updates
,
ids
=
ids
)
.
unwrap
()
self
.
rpc
[
'venus/sun/pictorial/batch/update'
](
updates
=
updates
,
ids
=
ids
)
.
unwrap
()
except
Exception
as
e
:
except
Exception
as
e
:
...
...
api/push.py
View file @
365834a6
...
@@ -41,7 +41,7 @@ class PushUpdateOrCreateView(APIView):
...
@@ -41,7 +41,7 @@ class PushUpdateOrCreateView(APIView):
url
=
request
.
POST
.
get
(
'url'
,
''
)
url
=
request
.
POST
.
get
(
'url'
,
''
)
if
url
==
'推送帖子'
:
if
url
==
'推送帖子'
:
url
=
'alpha://topic_detail?topic_id='
url
=
'alpha://topic_detail?topic_id='
elif
url
==
'推送
小组
'
:
elif
url
==
'推送
画报
'
:
url
=
'alpha://pictorial_detail?pictorial_id='
url
=
'alpha://pictorial_detail?pictorial_id='
full_url
=
url
+
pictorial_topic_id
full_url
=
url
+
pictorial_topic_id
...
...
api/search.py
View file @
365834a6
...
@@ -35,7 +35,7 @@ class TagSearchView(APIView):
...
@@ -35,7 +35,7 @@ class TagSearchView(APIView):
def
get
(
self
,
request
):
def
get
(
self
,
request
):
offset
,
count
=
get_offset_count
(
request
)
offset
,
count
=
get_offset_count
(
request
)
name
=
request
.
GET
.
get
(
'name'
)
name
=
request
.
GET
.
get
(
'name'
)
platform
=
request
.
GET
.
get
(
'platform'
)
platform
=
None
#
request.GET.get('platform')
collection
=
request
.
GET
.
get
(
'collection'
)
collection
=
request
.
GET
.
get
(
'collection'
)
try
:
try
:
data
=
self
.
rpc
[
'venus/sun/tag/search'
](
offset
=
offset
,
count
=
count
,
name
=
name
,
platform
=
platform
,
collection
=
collection
)
.
unwrap
()
data
=
self
.
rpc
[
'venus/sun/tag/search'
](
offset
=
offset
,
count
=
count
,
name
=
name
,
platform
=
platform
,
collection
=
collection
)
.
unwrap
()
...
@@ -93,7 +93,7 @@ class TagTypeSearchView(APIView):
...
@@ -93,7 +93,7 @@ class TagTypeSearchView(APIView):
'data'
:
[
'{id}:{name}'
.
format
(
id
=
search_data
[
'id'
],
name
=
search_data
[
'name'
])
for
search_data
in
data
]
'data'
:
[
'{id}:{name}'
.
format
(
id
=
search_data
[
'id'
],
name
=
search_data
[
'name'
])
for
search_data
in
data
]
}
}
class
PictorialSearchView
(
APIView
):
class
PictorialSearchView
(
APIView
):
def
get
(
self
,
request
):
def
get
(
self
,
request
):
name
=
request
.
GET
.
get
(
'name'
)
name
=
request
.
GET
.
get
(
'name'
)
...
...
api/tag.py
View file @
365834a6
...
@@ -67,7 +67,7 @@ class TagUpdateOrCreateView(APIView):
...
@@ -67,7 +67,7 @@ class TagUpdateOrCreateView(APIView):
try
:
try
:
data
=
self
.
rpc
[
'venus/sun/tag/edit'
](
id
=
id
,
data
=
data
)
.
unwrap
()
data
=
self
.
rpc
[
'venus/sun/tag/edit'
](
id
=
id
,
data
=
data
)
.
unwrap
()
except
Exception
as
e
:
except
Exception
as
e
:
error_logger
.
error
(
u'创建/编辑标签
%
d
信息失败
%
s'
%
(
id
,
e
))
error_logger
.
error
(
u'创建/编辑标签
%
s
信息失败
%
s'
%
(
id
,
e
))
raise
raise
return
data
return
data
...
...
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