-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuser_posts.js
178 lines (108 loc) · 2.75 KB
/
user_posts.js
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
const express = require('express')
const app = express.Router()
const { Unix_timestamp, Is_number, knex, t_mail, is_Empty } = require('./funcs.js')
app.get("/show/:id", async(req, res) => {
if (tusert == 0) {
return res.redirect('/')
}
const rquid = Math.abs(parseInt(req.params.id))
if (isNaN(rquid) === true || rquid == 0) {
return res.redirect('/')
}
let qz221a = await knex('user_posts').where("pid",rquid).select('*').first()
if (!qz221a) {
return res.redirect('/')
}
let dflst = await
knex.select(
'user.uid',
'user.name',
'user.surn',
'user_posts.when_posted as time',
'user_posts.title as title',
'user_posts.message as text'
)
.from('user_posts')
.where('user_posts.pid', rquid)
.innerJoin('user', 'user.uid', 'user_posts.author').first()
let dflstcnt = await knex.from('user_posts')
.where('user_posts.pid', rquid)
.innerJoin('user', 'user.uid', 'user_posts.author')
.count()
let psrq = {
title:'User posts',
user: tdatausr,
data: dflst,
cnt: dflstcnt[0]['count(*)']
}
res.render('posts.html', psrq)
//const rquid = tdatausr.uid
//return res.redirect(`/my`)
res.end()
})
app.post("/add", async(req, res) => {
if (tusert == 0) {
return res.redirect('/wqeqw')
}
const qtext = req.body.text || ""
const qsbmt = req.body.sbmt || ""
//console.log(qtext)
//console.log(qsbmt)
if (qtext.length<3) {
return res.redirect(`/my/`)
} else if (qsbmt.length<3) {
return res.redirect(`/my/`)
} else {
const czdata = await knex('user_posts').insert({
message: qtext,
title: '',
author: tdatausr.uid,
when_posted: new Date().getTime()
}).returning('pid');
//console.log(czdata)
return res.redirect(`/user_post/${tdatausr.uid}`)
}
res.end();
});
app.get("/:id", async(req, res) => {
if (tusert == 0) {
return res.redirect('/')
}
const rquid = Math.abs(parseInt(req.params.id))
if (isNaN(rquid) === true || rquid == 0) {
return res.redirect('/')
}
let qz221a = await knex('user').where("uid",rquid).select('*').first()
if (!qz221a) {
return res.redirect('/')
}
let dflst = await
knex.select(
'user.uid',
'user.name',
'user.surn',
'user_posts.when_posted as time',
'user_posts.pid as pid',
'user_posts.title as title',
'user_posts.message as text'
)
.from('user_posts')
.where('user_posts.author', qz221a.uid)
.innerJoin('user', 'user.uid', 'user_posts.author')
.orderBy('user_posts.when_posted', 'desc')
.limit(10)
let dflstcnt = await knex.from('user_posts')
.where('user_posts.author', qz221a.uid)
.innerJoin('user', 'user.uid', 'user_posts.author')
.count()
let psrq = {
title:'User posts',
user: tdatausr,
author: qz221a,
pstlst: dflst,
cnt: dflstcnt[0]['count(*)']
}
res.render('my_posts.html', psrq)
res.end()
})
module.exports = app