article.js
4.53 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/**
* 文章model
* @author: leo <qi.li@yoho.cn>
* @date: 28/06/2017
*/
const _ = require('lodash');
const mysqlCli = global.yoho.utils.mysqlCli;
const TABLE_USER = 'user';
const TABLE_ACT_ARTICLE = 'act_article';
const TABLE_ACT_ARTICLE_IMG = 'act_article_img';
const TABLE_ACT_ARTICLE_GOOD = 'act_article_good';
class ArticleModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 获取文章列表
* @returns {*}
*/
articleList({actId, pageNo, pageSize, orderBy, order}) {
const orderMapping = {
goodCount: 'good_count',
createTime: 'create_time'
};
let limitSql;
let orderSql;
let whereSql;
whereSql = 'WHERE AA.act_id = :actId';
orderSql = `ORDER BY AA.${orderMapping[orderBy]} ${order}`;
limitSql = 'LIMIT :start, :page';
return mysqlCli.query(
`SELECT
AA.id,
AA.good_count,
AAI.img_url,
AA.content,
AA.create_time,
USR.user_name
FROM ${TABLE_ACT_ARTICLE} AA
INNER JOIN ${TABLE_ACT_ARTICLE_IMG} AAI
INNER JOIN ${TABLE_USER} USR
ON AA.id = AAI.article_id AND AA.user_id = USR.id
${whereSql} ${orderSql} ${limitSql};`, {
actId,
start: (pageNo - 1) * pageSize,
page: _.parseInt(pageSize)
}
);
}
/**
* 获取文章总数
* @returns {*}
*/
allArticlesNum(actId) {
return mysqlCli.query(
`SELECT COUNT(*) AS total FROM ${TABLE_ACT_ARTICLE} WHERE act_id = :actId;`, {
actId
}
).then(res => {
return res[0].total;
});
}
/**
* 发表文章
* @param actId 活动ID
* @param content 文章内容
* @param imgUrl 图片链接
* @returns {*}
*/
createArticle({actId, content, imgUrl}) {
const session = this.ctx.req.session;
const userId = _.get(session, 'user.id');
return mysqlCli.insert(
`insert into ${TABLE_ACT_ARTICLE} (act_id, user_id, content) values (:actId, :userId, :content);`,
{
actId,
userId,
imgUrl,
content
}
);
}
/**
* 文章图片插入
* @param articleId
* @param imgUrl
* @returns {*}
*/
insertArticleImg(articleId, imgUrl) {
return mysqlCli.insert(
`insert into ${TABLE_ACT_ARTICLE_IMG} (article_id, img_url) values (:articleId, :imgUrl);`,
{
imgUrl,
articleId
}
);
}
/**
* 获取单个文章详情
* @param articleId
* @returns {*}
*/
getSingleArticle(actId, articleId) {
return mysqlCli.query(`SELECT AA.id AS id,
AA.content AS content,
AA.good_count AS good_count,
AA.user_id as user_id,
U.user_name as user_name,
AA.create_time AS create_time,
AAI.img_url
FROM act_article AS AA
LEFT JOIN act_article_img AS AAI ON AA.id = AAI.article_id
LEFT JOIN user AS U ON AA.user_id = U.id
WHERE AA.act_id = :actId
AND AA.id = :articleId;`,
{
actId,
articleId
}
);
}
/**
* 文章点赞
* @param actId
* @param articleId
* @returns {*}
*/
likeArticle(actId, articleId) {
return mysqlCli.update(
`UPDATE ${TABLE_ACT_ARTICLE} AA
SET good_count = good_count + 1
WHERE AA.act_id = :actId
AND AA.id = :articleId;`,
{
actId,
articleId
}
);
}
/**
* 插入点赞详情
* @param actId
* @param articleId
* @returns {*}
*/
insertLikeDetail(actId, articleId) {
const userId = _.get(this.ctx.req.session, 'user.id', 0);
const ip = this.header['X-Forwarded-For'] || this.ctx.req.ip || this.ctx.req.connection.remoteAddress;
return mysqlCli.insert(
`INSERT INTO ${TABLE_ACT_ARTICLE_GOOD} (act_id, article_id, user_id, ip)
VALUES (:actId, :articleId, :userId, :ip);`,
{
ip,
userId,
actId,
articleId
}
);
}
}
module.exports = ArticleModel;