api-map.js
2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
const URI_PACKAGE_ARTICLE = 'guang/service/v2/article/';
const URI_PACKAGE_AUTHOR = 'guang/service/v1/author/';
module.exports = {
'/api/grass/labelRealtedArticleDetail': {
api: 'app.grass.labelRealtedArticleDetail',
cache: true,
params: {
page: {type: Number, require: false},
limit: {type: Number, require: false},
labelId: {type: Number},
lastedTime: {type: Number},
}
},
'/api/grass/columnArticleDetail': {
api: 'app.grass.columnArticleDetail',
cache: true,
params: {
page: {type: Number, require: false},
limit: {type: Number, require: false},
articleId: {type: Number},
columnType: {type: Number}
}
},
'/api/grass/updateAttention': {
api: 'app.grass.updateAttention',
params: {
topicId: {type: Number, require: false},
followUid: {type: Number, require: false},
status: {type: Number},
attentionType: {type: Number}
}
},
'/api/guang/article/detail': {
service: true,
api: URI_PACKAGE_ARTICLE,
path: 'getArticle',
params: {
article_id: {type: String}
}
},
'/api/guang/article/author': {
service: true,
api: URI_PACKAGE_AUTHOR,
path: 'getAuthor',
params: {
author_id: {type: String}
}
},
'/api/guang/article/content': {
service: true,
api: URI_PACKAGE_ARTICLE,
path: 'getArticleContent',
params: {
article_id: {type: String}
}
},
'/api/favorite/add': {
api: 'app.favorite.add',
params: {
id: {type: Number},
type: {type: Number},
}
},
'/api/favorite/cancel': {
api: 'app.favorite.cancel',
params: {
fav_id: {type: Number},
type: {type: Number},
}
},
'/api/grass/queryArticleComments': {
api: 'app.grass.queryArticleComments',
params: {
page: {type: Number, require: false},
limit: {type: Number, require: false},
destId: {type: Number},
columnType: {type: Number},
}
},
'/api/grass/queryArticleCommentReply': {
api: 'app.grass.queryArticleCommentReply',
params: {
page: {type: Number, require: false},
limit: {type: Number, require: false},
commentId: {type: Number},
}
},
'/api/grass/addArticleComment': {
api: 'app.grass.addArticleComment',
params: {
content: {type: String},
destId: {type: Number},
commentId: {type: Number},
addType: {type: Number},
columnType: {type: Number},
}
},
'/api/favorite/batchCheckIsFavorite': {
api: 'app.favorite.batchCheckIsFavorite',
params: {
favIds: {type: Array},
}
},
'/api/ufo/user/isFavoriteBatch': {
api: 'ufo.user.isFavoriteBatch',
ufo: true,
params: {
content: {type: String},
destId: {type: Number},
commentId: {type: Number},
addType: {type: Number},
columnType: {type: Number},
}
}
};