forked from HuijunXu/CUMT-Daily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeLine.cpp
377 lines (334 loc) · 10.3 KB
/
TimeLine.cpp
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
#include "TimeLine.h"
#include <QObject>
#include <QApplication>
#include <QQmlEngine>
#include <QScreen>
#include <QDir>
#include <QtQml>
#include <QtSql/QtSql>
#include <QDebug>
#include <QDir>
#include <QDateTime>
#include <QApplication>
#include <QScreen>
#include <QDesktopWidget>
#include <qjsonarray.h>
static TimeLine* timeline = NULL;
static QObject* getTimeLine(QQmlEngine *engine, QJSEngine *scriptEngine)
{
Q_UNUSED(engine)
return timeline;
}
extern void Initalize()
{
qmlRegisterSingletonType<TimeLine>("TimeLine", 1, 0, "TL", getTimeLine);
qmlRegisterType<News>("TimeLine",1,0,"News");
qmlRegisterType<MainNews>("TimeLine",1,0,"MainNews");
qmlRegisterType<Reply>("TimeLine",1,0,"Reply");
qmlRegisterType<User>("TimeLine",1,0,"User");
Q_ASSERT(timeline==NULL);
timeline = new TimeLine();
}
TimeLine::TimeLine()
{
this->connSqlite();
_currentUser=new User();
// emit newsCollectedChanged();
}
TimeLine::~TimeLine()
{
}
bool TimeLine::connSqlite()
{
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName("/D:/wamp/www/timeline/database.db");
// db = QSqlDatabase::addDatabase("QODBC");
// db.setHostName("192.168.191.1:Mysql");
// db.setDatabaseName("Mysql");
// db.setUserName("root");
// db.setPassword("");
//此处填写数据库连接信息
if(!db.open()){
qDebug()<<"Failed!!!";
qDebug()<<db.lastError().text();
db.setDatabaseName("/mnt/sdcard/Download/database.db");
if(!db.open()){
qDebug()<<"Failed!!!";
return false;
}
else return true;
}
else {
qDebug()<<"success";
return true;
}
}
QList<QObject *> TimeLine::getNewsByType(QString type)
{
QString sql="SELECT * FROM News where news_index='"+type+"'";
QSqlQuery query;
query.exec(sql);
QList<QObject *> newsList;
while (query.next())
{
newsList.append(new News(query.value("nid").toString(),
query.value("title").toString(),
query.value("discribe").toString(),
query.value("thumbnail").toString()
));
}
return newsList;
}
QList<QObject *> TimeLine::getReadNews()
{
QString sql="SELECT * FROM News,reads where News.nid="
"reads.nid and reads.uid='"+_currentUser->uid()
+"' order by read_time desc limit 20 ";
QSqlQuery query;
query.exec(sql);
QList<QObject *> newsList;
while (query.next())
{
newsList.append(new News(query.value("nid").toString(),
query.value("title").toString(),
query.value("discribe").toString(),
query.value("thumbnail").toString()
));
}
return newsList;
}
QList<QObject *> TimeLine::getCollectNews()
{
QString sql="SELECT * FROM News,collect where News.nid=collect.nid and collect.uid='"+_currentUser->uid()+"' order by collect_time desc";
QSqlQuery query;
query.exec(sql);
QList<QObject *> newsList;
while (query.next())
{
newsList.append(new News(query.value("nid").toString(),
query.value("title").toString(),
query.value("discribe").toString(),
query.value("thumbnail").toString()
));
}
return newsList;
}
QList<QObject *> TimeLine::getReplyList()
{
QString uid;
QString nicName;
QString userIco;
QString content;
QDateTime replyTime;
QList<QObject *> replyList;
QString sql="select * from user,reply where user.uid=reply.uid and reply.uid='"+_currentUser->uid()+"' order by replyTime desc";
QSqlQuery query;
query.exec(sql);
while (query.next())
{
uid=query.value("uid").toString();
nicName=query.value("nicName").toString();
userIco=QString(HOME)+QString("/timeline/pic/")+query.value("userIcon").toString();
content=query.value("content").toString();
replyTime=query.value("replyTime").toDateTime();
replyList.append(new Reply( uid,
nicName,
userIco,
content,
replyTime
));
}
return replyList;
}
bool TimeLine::setMainNewsByID(QString id)
{
QString title;
QString videoPath="";
QString picPath="";
QString source;
QString content;
QDateTime time;
QString sql="SELECT * FROM News where nid='"+id+"'";
QSqlQuery query;
query.exec(sql);
if (query.next())
{
title=query.value("title").toString();
content=query.value("content").toString();
source=query.value("source").toString();
time=query.value("time").toDateTime();
sql="SELECT * FROM Video where nid='"+id+"'";
query.exec(sql);
if (query.next())
{
videoPath=QString(HOME)+QString("/timeline/video/")+query.value("videoPath").toString();
}
sql="SELECT * FROM Picture where nid='"+id+"'";
query.exec(sql);
if (query.next())
{
picPath=QString(HOME)+QString("/timeline/pic/")+query.value("picPath").toString();
}
_mainNews=new MainNews( id,
title,
videoPath,
picPath,
source,
content,
time
);
emit mainNewsChanged();
_mainNews->setReplyCount(0);
sql="SELECT count(*) FROM reply where nid='"+id+"'";
query.exec(sql);
if (query.next())
{
_mainNews->setReplyCount(query.value("count(*)").toInt());
}
sql="SELECT * FROM COLLECT where nid='"+id+"' and uid='"+_currentUser->uid()+"'";
query.exec(sql);
qDebug()<<sql;
if (query.next())
{
_newsCollected=true;
}
else _newsCollected=false;
emit newsCollectedChanged();
QString time=QDateTime::currentDateTime().toString("yyyy.MM.dd:hh:mm:ss");
if(_currentUser->loginState())
{
sql="DELETE FROM READS where nid='"+id+"' and uid='"+_currentUser->uid()+"'";
query.exec(sql);
sql="INSERT INTO READS (nid,uid,read_time) VALUES ('"+id+"','"+ _currentUser->uid()+"','"+time+"')";
query.exec(sql);
}
return true;
}
else return false;
}
bool TimeLine::setReplyListByID(QString id)
{
QString uid;
QString nicName;
QString userIco;
QString content;
QDateTime replyTime;
_replyList.clear();
QString sql="select * from user,reply where user.uid=reply.uid and reply.nid='"+id+"' order by replyTime desc";
QSqlQuery query;
query.exec(sql);
while (query.next())
{
uid=query.value("uid").toString();
nicName=query.value("nicName").toString();
userIco=QString(HOME)+QString("/timeline/pic/")+query.value("userIcon").toString();
content=query.value("content").toString();
replyTime=query.value("replyTime").toDateTime();
_replyList.append(new Reply( uid,
nicName,
userIco,
content,
replyTime
));
}
emit replyListChanged();
return true;
}
bool TimeLine::setReplyListByUID(QString id)
{
QString uid;
QString nicName;
QString userIco;
QString content;
QDateTime replyTime;
_replyList.clear();
QString sql="select * from user,reply where user.uid=reply.uid and reply.uid='"+id+"'";
QSqlQuery query;
query.exec(sql);
while (query.next())
{
uid=query.value("uid").toString();
nicName=query.value("nicName").toString();
userIco=QString(HOME)+QString("/timeline/pic/")+query.value("userIcon").toString();
content=query.value("content").toString();
replyTime=query.value("replyTime").toDateTime();
_replyList.append(new Reply( uid,
nicName,
userIco,
content,
replyTime
));
}
emit replyListChanged();
return true;
}
bool TimeLine::collectNews(QString nid)
{
if(!_currentUser->loginState())
{
return false;
}
QString time=QDateTime::currentDateTime().toString("yyyy.MM.dd:hh:mm:ss");
QString sql="INSERT INTO collect (nid,uid,collect_time) VALUES ('"+nid+"','"+ _currentUser->uid()+"','"+time+"')";
QSqlQuery query;
if(query.exec(sql) ){
_newsCollected=true;
emit newsCollectedChanged();
return true;
}
else return false;
}
bool TimeLine::unCollectNews(QString nid)
{
if(!_currentUser->loginState())
{
return false;
}
QString sql="DELETE FROM collect where nid='"+nid+"' and uid='"+ _currentUser->uid()+"'";
QSqlQuery query;
if(query.exec(sql) ){
_newsCollected=false;
emit newsCollectedChanged();
return true;
}
else return false;
}
bool TimeLine::commitReply(QString nid, QString content)
{
if(!_currentUser->loginState())
{
return false;
}
QString time=QDateTime::currentDateTime().toString("yyyy.MM.dd:hh:mm:ss");
QString sql="INSERT INTO reply (nid,uid,content,replyTime) VALUES ('"+nid+"','"+ _currentUser->uid()+"','"+content+"','"+time+"')";
QSqlQuery query;
if(query.exec(sql) ){
sql="SELECT count(*) FROM reply where nid='"+nid+"'";
query.exec(sql);
if (query.next())
{
_mainNews->setReplyCount(query.value("count(*)").toInt());
}
return true;
}
else return false;
}
MainNews* TimeLine::mainNews()
{
return _mainNews;
}
QList<QObject *> TimeLine::replyList()
{
QList<QObject*> r;
foreach(QObject* o,_replyList)
r.append(o);
return r;
}
QObject* TimeLine::currentUser()
{
return _currentUser;
}
bool TimeLine::newsCollected()
{
return _newsCollected;
}