# 关注&取消关注
# 建立模型,一个关系表
const seq = require('../seq')
const { INTEGER } = require('../types')
const UserRelation = seq.define('userRelation', {
userId: {
type: INTEGER,
allowNull: false,
comment: '用户 id'
},
followerId: {
type: INTEGER,
allowNull: false,
comment: '被关注用户的 id'
}
})
module.exports = UserRelation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 关联外键
UserRelation.belongsTo(User, {
foreignKey: 'followerId'
})
User.hasMany(UserRelation, {
foreignKey: 'userId'
})
1
2
3
4
5
6
7
2
3
4
5
6
7
# 关注&取消关注
# api
// 关注
router.post('/follow', loginCheck, async (ctx, next) => {
const { id: myUserId } = ctx.session.userInfo
const { userId: curUserId } = ctx.request.body
ctx.body = await follow(myUserId, curUserId)
})
// 取消关注
router.post('/unFollow', loginCheck, async (ctx, next) => {
const { id: myUserId } = ctx.session.userInfo
const { userId: curUserId } = ctx.request.body
ctx.body = await unFollow(myUserId, curUserId)
})
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# controller
/**
* 关注
* @param {number} myUserId 当前登录的用户 id
* @param {number} curUserId 要被关注的用户 id
*/
async function follow(myUserId, curUserId) {
try {
await addFollower(myUserId, curUserId)
return new SuccessModel()
} catch (ex) {
console.error(ex)
return new ErrorModel(addFollowerFailInfo)
}
}
/**
* 取消关注
* @param {number} myUserId 当前登录的用户 id
* @param {number} curUserId 要被关注的用户 id
*/
async function unFollow(myUserId, curUserId) {
const result = await deleteFollower(myUserId, curUserId)
if (result) {
return new SuccessModel()
}
return new ErrorModel(deleteFollowerFailInfo)
}
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
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
# services
/**
* 添加关注关系
* @param {number} userId 用户 id
* @param {number} followerId 被关注用户 id
*/
async function addFollower(userId, followerId) {
const result = await UserRelation.create({
userId,
followerId
})
return result.dataValues
}
/**
* 删除关注关系
* @param {number} userId 用户 id
* @param {number} followerId 被关注用户 id
*/
async function deleteFollower(userId, followerId) {
const result = await UserRelation.destroy({
where: {
userId,
followerId
}
})
return result > 0
}
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
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
# 获取关注粉丝列表
# view
在个人主页显示我的粉丝列表
router.get('/profile/:userName', loginRedirect, async (ctx, next) => {
// 已登录用户的信息
const myUserInfo = ctx.session.userInfo
const myUserName = myUserInfo.userName
let curUserInfo
const { userName: curUserName } = ctx.params
const isMe = myUserName === curUserName
if (isMe) {
// 是当前登录用户
curUserInfo = myUserInfo
} else {
// 不是当前登录用户
const existResult = await isExist(curUserName)
if (existResult.errno !== 0) {
// 用户名不存在
return
}
// 用户名存在
curUserInfo = existResult.data
}
// 获取微博第一页数据
const result = await getProfileBlogList(curUserName, 0)
const { isEmpty, blogList, pageSize, pageIndex, count } = result.data
// 获取粉丝
const fansResult = await getFans(curUserInfo.id)
const { count: fansCount, fansList } = fansResult.data
// 获取关注人列表
const followersResult = await getFollowers(curUserInfo.id)
const { count: followersCount, followersList } = followersResult.data
// 我是否关注了此人?
const amIFollowed = fansList.some(item => {
return item.userName === myUserName
})
await ctx.render('profile', {
blogData: {
isEmpty,
blogList,
pageSize,
pageIndex,
count
},
userData: {
userInfo: curUserInfo,
isMe,
fansData: {
count: fansCount,
list: fansList
},
followersData: {
count: followersCount,
list: followersList
},
amIFollowed
}
})
})
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
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
# controller
/**
* 根据 userid 获取粉丝列表
* @param {number} userId 用户 id
*/
async function getFans(userId) {
const { count, userList } = await getUsersByFollower(userId)
// 返回
return new SuccessModel({
count,
fansList: userList
})
}
/**
* 获取关注人列表
* @param {number} userId userId
*/
async function getFollowers(userId) {
const { count, userList } = await getFollowersByUser(userId)
return new SuccessModel({
count,
followersList: userList
})
}
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
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
# services
/**
* 获取关注该用户的用户列表,即该用户的粉丝
* @param {number} followerId 被关注人的 id
*/
async function getUsersByFollower(followerId) {
const result = await User.findAndCountAll({
attributes: ['id', 'userName', 'nickName', 'picture'],
order: [
['id', 'desc']
],
include: [
{
model: UserRelation,
where: {
followerId,
// userId: {
// [Sequelize.Op.ne]: followerId
// }
}
}
]
})
// result.count 总数
// result.rows 查询结果,数组
// 格式化
let userList = result.rows.map(row => row.dataValues)
userList = formatUser(userList)
return {
count: result.count,
userList
}
}
/**
* 获取关注人列表
* @param {number} userId userId
*/
async function getFollowersByUser(userId) {
const result = await UserRelation.findAndCountAll({
order: [
['id', 'desc']
],
include: [
{
model: User,
attributes: ['id', 'userName', 'nickName', 'picture']
}
],
where: {
userId,
// followerId: {
// [Sequelize.Op.ne]: userId
// }
}
})
// result.count 总数
// result.rows 查询结果,数组
let userList = result.rows.map(row => row.dataValues)
userList = userList.map(item => {
let user = item.user
user = user.dataValues
user = formatUser(user)
return user
})
return {
count: result.count,
userList
}
}
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
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
# 测试用例
const server = require('../server')
const { getFans, getFollowers } = require('../../src/controller/user-relation')
const {
Z_ID,
Z_USER_NAME,
Z_COOKIE,
L_ID,
L_USER_NAME
} = require('../testUserInfo')
// 先让张三取消关注李四(为了避免现在张三关注了李四)
test('无论如何,先取消关注', async () => {
const res = await server
.post('/api/profile/unFollow')
.send({ userId: L_ID })
.set('cookie', Z_COOKIE)
expect(1).toBe(1)
})
// 添加关注
test('张三关注李四,应该成功', async () => {
const res = await server
.post('/api/profile/follow')
.send({ userId: L_ID })
.set('cookie', Z_COOKIE)
expect(res.body.errno).toBe(0)
})
// 获取粉丝
test('获取李四的粉丝,应该有张三', async () => {
const result = await getFans(L_ID)
const { count, fansList } = result.data
const hasUserName = fansList.some(fanInfo => {
return fanInfo.userName === Z_USER_NAME
})
expect(count > 0).toBe(true)
expect(hasUserName).toBe(true)
})
// 获取关注人
test('获取张三的关注人,应该有李四', async () => {
const result = await getFollowers(Z_ID)
const { count, followersList } = result.data
const hasUserName = followersList.some(followerInfo => {
return followerInfo.userName === L_USER_NAME
})
expect(count > 0).toBe(true)
expect(hasUserName).toBe(true)
})
// 取消关注
test('张三取消关注李四,应该成功', async () => {
const res = await server
.post('/api/profile/unFollow')
.send({ userId: L_ID })
.set('cookie', Z_COOKIE)
expect(res.body.errno).toBe(0)
})
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
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