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
ca716b5d
Commit
ca716b5d
authored
Feb 26, 2019
by
王浩
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into 'test'
Dev See merge request
alpha/sun!73
parents
57ccac06
9d02403e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
9 deletions
+13
-9
commons.py
api/commons.py
+2
-3
search.py
api/search.py
+2
-1
tag.py
api/tag.py
+5
-4
topic.py
api/topic.py
+3
-0
urls.py
api/urls.py
+1
-1
No files found.
api/commons.py
View file @
ca716b5d
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# __author__ = "chenwei"
# Date: 2019/2/1
4
# Date: 2019/2/1
5
from
utils.base
import
APIView
from
utils.logger
import
error_logger
...
...
@@ -17,4 +17,4 @@ class SuggestionListView(APIView):
except
Exception
as
e
:
error_logger
.
error
(
u'获取建议列表失败
%
s'
,
e
)
raise
return
data
\ No newline at end of file
return
data
api/search.py
View file @
ca716b5d
...
...
@@ -48,8 +48,9 @@ class TagSearchView(APIView):
offset
,
count
=
get_offset_count
(
request
)
name
=
request
.
GET
.
get
(
'name'
)
platform
=
request
.
GET
.
get
(
'platform'
)
collection
=
request
.
GET
.
get
(
'collection'
)
try
:
data
=
self
.
rpc
[
'venus/sun/tag/search'
](
offset
=
offset
,
count
=
count
,
name
=
name
,
platform
=
platform
)
.
unwrap
()
data
=
self
.
rpc
[
'venus/sun/tag/search'
](
offset
=
offset
,
count
=
count
,
name
=
name
,
platform
=
platform
,
collection
=
collection
)
.
unwrap
()
except
Exception
as
e
:
raise
e
return
{
...
...
api/tag.py
View file @
ca716b5d
...
...
@@ -39,7 +39,7 @@ class TagUpdateOrCreateView(APIView):
try
:
data
=
self
.
rpc
[
'venus/sun/tag/get'
](
id
=
id
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'获取标签
%
d信息失败
%
s'
%
(
i
d
,
e
))
error_logger
.
error
(
u'获取标签
%
d信息失败
%
s'
%
(
i
nt
(
id
)
,
e
))
raise
if
not
data
:
data
=
{}
...
...
@@ -59,7 +59,9 @@ class TagUpdateOrCreateView(APIView):
'up_tags'
:
up_tags
,
'tagtypes'
:
tagtypes
,
'icon_url'
:
request
.
POST
.
get
(
'icon_url'
,
''
)[:
-
2
],
'platform'
:
request
.
POST
.
get
(
'platform'
)
'platform'
:
request
.
POST
.
get
(
'platform'
),
'collection'
:
request
.
POST
.
get
(
'collection'
),
'alias'
:
request
.
POST
.
get
(
'alias'
)
}
try
:
data
=
self
.
rpc
[
'venus/sun/tag/edit'
](
id
=
id
,
data
=
data
)
.
unwrap
()
...
...
@@ -119,4 +121,4 @@ class TagTypeUpdateOrCreateView(APIView):
except
Exception
as
e
:
error_logger
.
error
(
u'创建/编辑标签类型
%
d信息失败
%
s'
%
(
id
,
e
))
raise
return
data
\ No newline at end of file
return
data
api/topic.py
View file @
ca716b5d
...
...
@@ -48,6 +48,8 @@ class TopicUpdateOrCreateView(APIView):
id
=
request
.
POST
.
get
(
'id'
,
''
)
topic_images
=
list
(
map
(
lambda
x
:
x
[:
-
2
],
json
.
loads
(
request
.
POST
.
get
(
'topic_images'
,
[]))))
tag_ids
=
list
(
map
(
lambda
x
:
x
.
split
(
':'
)[
0
],
json
.
loads
(
request
.
POST
.
get
(
'tags'
,
'[]'
))))
collection_tag_ids
=
list
(
map
(
lambda
x
:
x
.
split
(
':'
)[
0
],
json
.
loads
(
request
.
POST
.
get
(
'collection_tags'
,
'[]'
))))
data
=
{
'topic_images'
:
topic_images
,
'video_url'
:
request
.
POST
.
get
(
'video_url'
,
''
),
...
...
@@ -58,6 +60,7 @@ class TopicUpdateOrCreateView(APIView):
'user_id'
:
request
.
POST
.
get
(
'user'
,
''
)
.
split
(
':'
)[
0
],
'star_id'
:
request
.
POST
.
get
(
'star'
,
''
)
.
split
(
':'
)[
0
],
'tag_ids'
:
tag_ids
,
'collection_tag_ids'
:
collection_tag_ids
,
'is_online'
:
int
(
request
.
POST
.
get
(
'is_online'
)),
'drop_score'
:
int
(
request
.
POST
.
get
(
'drop_score'
)),
'has_image'
:
1
if
topic_images
else
0
,
...
...
api/urls.py
View file @
ca716b5d
...
...
@@ -97,6 +97,7 @@ urlpatterns = [
url
(
r'^tag/tagtype/create$'
,
TagTypeUpdateOrCreateView
.
as_view
()),
url
(
r'^tag/tagtype/detail$'
,
TagTypeUpdateOrCreateView
.
as_view
()),
# 扫脸相关
url
(
r'^face/star/create$'
,
FaceStarEdit
.
as_view
()),
url
(
r'^face/star/list$'
,
StarListView
.
as_view
()),
url
(
r'^face/star/list/update$'
,
StarListView
.
as_view
()),
...
...
@@ -107,7 +108,6 @@ urlpatterns = [
url
(
r'^face/part/list/update$'
,
FacePartListView
.
as_view
()),
url
(
r'^face/part/type_list$'
,
FacePartTypeListView
.
as_view
()),
# 文案相关
url
(
r'^advertise/edit'
,
AdvertiseCreateView
.
as_view
()),
url
(
r'^advertise/list$'
,
AdvertiseListView
.
as_view
()),
...
...
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