File: timeline.cpp

package info (click to toggle)
dianara 1.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,896 kB
  • ctags: 2,005
  • sloc: cpp: 22,181; xml: 34; makefile: 3
file content (1561 lines) | stat: -rw-r--r-- 50,661 bytes parent folder | download | duplicates (2)
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
/*
 *   This file is part of Dianara
 *   Copyright 2012-2016  JanKusanagi JRR <jancoding@gmx.com>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the
 *   Free Software Foundation, Inc.,
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .
 */

#include "timeline.h"

TimeLine::TimeLine(PumpController::requestTypes timelineType,
                   PumpController *pumpController,
                   GlobalObject *globalObject,
                   FilterChecker *filterChecker,
                   QWidget *parent) :  QWidget(parent)
{
    this->timelineType = timelineType;
    this->pController = pumpController;
    this->globalObj = globalObject;
    this->fChecker = filterChecker;

    connect(pController, SIGNAL(timelineFailed(int)),
            this, SLOT(onUpdateFailed(int)));


    this->setMinimumSize(180, 180); // Ensure something's always visible

    this->favoritesTimeline = false; // Initialize

    // Simulated data for demo posts
    QVariantMap demoLocationData;
    demoLocationData.insert("displayName",  "Demoville");

    QVariantMap demoAuthorData;
    demoAuthorData.insert("displayName",    "Demo User");
    demoAuthorData.insert("id",             "demo@somepump.example");
    demoAuthorData.insert("url",            "https://jancoding.wordpress.com/dianara");
    demoAuthorData.insert("location",       demoLocationData);
    demoAuthorData.insert("summary",        "I am not a real user");

    QVariantMap demoGeneratorData;
    demoGeneratorData.insert("displayName", "Dianara");

    QVariantMap demoObjectData;
    demoObjectData.insert("objectType",     "note");
    demoObjectData.insert("id",             "demo-post-id");

    // Show date/time when latest stable version was released
    demoObjectData.insert("published",      "2016-12-17T21:00:00Z");


    QSettings settings; // FIXME: kinda tmp, until posts have "unread" status, etc.
    settings.beginGroup("TimelineStates");

    // Demo post content depends on timeline type; also, restore some feed values
    switch (this->timelineType)
    {
    case PumpController::MainTimelineRequest:
        demoObjectData.insert("displayName", tr("Welcome to Dianara"));
        demoObjectData.insert("content",
                              tr("Dianara is a <b>Pump.io</b> client.")
                              + "<br>"

                              + tr("If you don't have a Pump account yet, you can get one "
                                   "at the following address, for instance:")
                              + "<br>"
                                "<a href=\"http://pump.io/tryit.html\">"
                                "http://pump.io/tryit.html</a>"
                                "<br><br>"

                              + tr("Press <b>F1</b> if you want to open the Help window.")
                              + "<br><br>"

                              + tr("First, configure your account from the "
                                   "<b>Settings - Account</b> menu.")
                              + " "
                              + tr("After the process is done, your profile "
                                   "and timelines should update automatically.")
                              + "<br><br>"

                              + tr("Take a moment to look around the menus and "
                                   "the Configuration window.")
                              + "<br><br>"

                              + tr("You can also set your profile data and picture from "
                                   "the <b>Settings - Edit Profile</b> menu.")
                              + "<br><br>"

                              + tr("There are tooltips everywhere, so if you "
                                   "hover over a button or a text field with "
                                   "your mouse, you'll probably see some "
                                   "extra information.")
                              + "<br><br>"

                              + "<a href=\"https://jancoding.wordpress.com/dianara\">"
                              + tr("Dianara's blog") + "</a><br><br>"
                                "<a href=\"https://pumpio.readthedocs.io/en/latest/userguide.html\">"
                              + tr("Pump.io User Guide")
                              + "</a>"
                              + "<br><br>");

        this->previousNewestPostId = settings.value("previousNewestPostIdMain").toString();
        this->fullTimelinePostCount = settings.value("totalPostsMain").toInt();
        break;


    case PumpController::DirectTimelineRequest:
        demoObjectData.insert("displayName",  tr("Direct Messages Timeline"));
        demoObjectData.insert("content",      tr("Here, you'll see posts "
                                                 "specifically directed to you.")
                                              + "<br><br><br>");
        this->previousNewestPostId = settings.value("previousNewestPostIdDirect").toString();
        this->fullTimelinePostCount = settings.value("totalPostsDirect").toInt();
        break;


    case PumpController::ActivityTimelineRequest:
        demoObjectData.insert("displayName", tr("Activity Timeline"));
        demoObjectData.insert("content",     tr("You'll see your own posts here.")
                                             + "<br><br><br>");
        this->previousNewestPostId = settings.value("previousNewestPostIdActivity").toString();
        this->fullTimelinePostCount = settings.value("totalPostsActivity").toInt();
        break;


    case PumpController::FavoritesTimelineRequest:
        demoObjectData.insert("displayName", tr("Favorites Timeline"));
        demoObjectData.insert("content",     tr("Posts and comments you've liked.")
                                             + "<br><br><br>");
        this->previousNewestPostId = settings.value("previousNewestPostIdFavorites").toString();
        this->fullTimelinePostCount = settings.value("totalPostsFavorites").toInt();

        this->favoritesTimeline = true;
        break;



    default:
        demoObjectData.insert("content", "<h2>Empty timeline</h2>");

    }
    settings.endGroup();


    QVariantMap demoPostData;
    demoPostData.insert("actor",          demoAuthorData);
    demoPostData.insert("generator",      demoGeneratorData);
    demoPostData.insert("object",         demoObjectData);
    demoPostData.insert("id",             "demo-activity-id");


    this->firstLoad = true;
    this->gettingNew = true; // First time should be true

    this->unreadPostsCount = 0;
    this->timelineOffset = 0;
    this->oldTimelineOffset = 0;
    this->wasOnFirstPage = true;
    this->pendingToReceiveNextTime = 0;

    this->syncPostsPerPage();


    // Separator frame, to mark where new posts from the last batch end
    separatorFrame = new QFrame(this);
    separatorFrame->setFrameStyle(QFrame::HLine);
    separatorFrame->setMinimumHeight(28);
    separatorFrame->setContentsMargins(0, 8, 0, 8);
    separatorFrame->hide();


    // Info label, shown when there are no posts, or to indicate loading and such
    infoLabel = new QLabel(this);
    infoLabel->setAlignment(Qt::AlignCenter);
    infoLabel->setWordWrap(true);
    infoLabel->setSizePolicy(QSizePolicy::MinimumExpanding,
                             QSizePolicy::Expanding);
    infoLabel->hide();


    getNewPendingButton = new QPushButton(QIcon::fromTheme("view-refresh",
                                                           QIcon(":/images/menu-refresh.png")),
                                          "*get more pending messages*",
                                          this);
    getNewPendingButton->setFlat(true);
    connect(getNewPendingButton, SIGNAL(clicked()),
            this, SLOT(getNewPending()));
    getNewPendingButton->hide();


    // This will hold the posts and be hidden or disabled when needed
    postsWidget = new QWidget(this);
    postsWidget->setContentsMargins(0, 0, 0, 0);
    /*
     * Allow focus in the post holder itself, to avoid focus going to
     * the pagination buttons when cancelling post creation in the publisher
     *
     */
    postsWidget->setFocusPolicy(Qt::StrongFocus);
    if (this->timelineType == PumpController::UserTimelineRequest)
    {
        postsWidget->hide(); // Will be shown when ready
        // Hiding it now ensures the infoLabel messages appear well centered
    }


    firstPageButton = new QPushButton(QIcon::fromTheme("go-first",
                                                       QIcon(":/images/button-previous.png")),
                                      tr("Newest"),
                                      this);
    connect(firstPageButton, SIGNAL(clicked()),
            this, SLOT(goToFirstPage()));


    this->pageSelector = new PageSelector(this);
    connect(pageSelector, SIGNAL(pageJumpRequested(int)),
            this, SLOT(goToSpecificPage(int)));

    currentPageButton = new QPushButton(QIcon::fromTheme("go-next-view-page"),
                                        "1 / 1",  // Correct value will be set on real update
                                        this);
    currentPageButton->setSizePolicy(QSizePolicy::MinimumExpanding,
                                     QSizePolicy::Maximum);
    connect(currentPageButton, SIGNAL(clicked()),
            this, SLOT(showPageSelector()));



    previousPageButton = new QPushButton(QIcon::fromTheme("go-previous",
                                                          QIcon(":/images/button-previous.png")),
                                         tr("Newer"),
                                         this);
    connect(previousPageButton, SIGNAL(clicked()),
            this, SLOT(goToPreviousPage()));

    nextPageButton = new QPushButton(QIcon::fromTheme("go-next",
                                                      QIcon(":/images/button-next.png")),
                                     tr("Older"),
                                     this);
    connect(nextPageButton, SIGNAL(clicked()),
            this, SLOT(goToNextPage()));


    // Set reversed icons for bottom buttons if RTL language causes reversed layout
    if (qApp->layoutDirection() == Qt::RightToLeft)
    {
        this->firstPageButton->setIcon(QIcon::fromTheme("go-last",
                                                        QIcon(":/images/button-next.png")));
        this->previousPageButton->setIcon(QIcon::fromTheme("go-next",
                                                           QIcon(":/images/button-next.png")));
        this->nextPageButton->setIcon(QIcon::fromTheme("go-previous",
                                                       QIcon(":/images/button-previous.png")));
    }




    ///// Layout
    postsLayout = new QVBoxLayout();
    postsLayout->setContentsMargins(0, 0, 0, 0);
    this->postsWidget->setLayout(postsLayout);
    // Setting alignment of this layout to AlignTop caused all posts to be
    // compressed at the top when there were a lot of them; removed



    bottomLayout = new QHBoxLayout();
    bottomLayout->addSpacing(2);
    bottomLayout->addWidget(firstPageButton,    3);
    bottomLayout->addSpacing(2);
    bottomLayout->addStretch(1);
    bottomLayout->addSpacing(2);
    bottomLayout->addWidget(previousPageButton, 3);
    bottomLayout->addWidget(currentPageButton,  1);
    bottomLayout->addWidget(nextPageButton,     3);
    bottomLayout->addSpacing(2);


    mainLayout = new QVBoxLayout();
    mainLayout->setContentsMargins(0, 0, 0, 0);
    mainLayout->addWidget(getNewPendingButton);
    mainLayout->addWidget(infoLabel,   2);
    mainLayout->addWidget(postsWidget, 1);
    mainLayout->addStretch(0); // Ensure buttons are always at the bottom
    mainLayout->addSpacing(2);              // 2 pixel separation
    mainLayout->addLayout(bottomLayout, 0);

    this->setLayout(mainLayout);


    ////////////////////////////////////// QActions for better keyboard control

    // Single step
    scrollUpAction = new QAction(this);
    scrollUpAction->setShortcut(QKeySequence("Ctrl+Up"));
    connect(scrollUpAction, SIGNAL(triggered()),
            this, SLOT(scrollUp()));
    this->addAction(scrollUpAction);

    scrollDownAction = new QAction(this);
    scrollDownAction->setShortcut(QKeySequence("Ctrl+Down"));
    connect(scrollDownAction, SIGNAL(triggered()),
            this, SLOT(scrollDown()));
    this->addAction(scrollDownAction);

    // Pages
    scrollPageUpAction = new QAction(this);
    scrollPageUpAction->setShortcut(QKeySequence("Ctrl+PgUp"));
    connect(scrollPageUpAction, SIGNAL(triggered()),
            this, SLOT(scrollPageUp()));
    this->addAction(scrollPageUpAction);

    scrollPageDownAction = new QAction(this);
    scrollPageDownAction->setShortcut(QKeySequence("Ctrl+PgDown"));
    connect(scrollPageDownAction, SIGNAL(triggered()),
            this, SLOT(scrollPageDown()));
    this->addAction(scrollPageDownAction);

    // Top / Bottom
    scrollTopAction = new QAction(this);
    scrollTopAction->setShortcut(QKeySequence("Ctrl+Home"));
    connect(scrollTopAction, SIGNAL(triggered()),
            this, SLOT(scrollToTop()));
    this->addAction(scrollTopAction);

    scrollBottomAction = new QAction(this);
    scrollBottomAction->setShortcut(QKeySequence("Ctrl+End"));
    connect(scrollBottomAction, SIGNAL(triggered()),
            this, SLOT(scrollToBottom()));
    this->addAction(scrollBottomAction);


    // Previous/Next page in timeline
    previousPageAction = new QAction(this);
    previousPageAction->setShortcut(QKeySequence("Ctrl+Left"));
    connect(previousPageAction, SIGNAL(triggered()),
            previousPageButton, SLOT(click()));
    previousPageButton->setToolTip(previousPageAction->shortcut()
                                   .toString(QKeySequence::NativeText));
    this->addAction(previousPageAction);

    nextPageAction = new QAction(this);
    nextPageAction->setShortcut(QKeySequence("Ctrl+Right"));
    connect(nextPageAction, SIGNAL(triggered()),
            nextPageButton, SLOT(click()));
    nextPageButton->setToolTip(nextPageAction->shortcut() // FIXME: maybe add a clearer message
                               .toString(QKeySequence::NativeText));
    this->addAction(nextPageAction);

    // It's safer to use these QActions than setting shortcuts to buttons
    // The latter gets messed up when built with Qt 5 and run under Plasma 5.x
    showPageSelectorAction = new QAction(this);
    showPageSelectorAction->setShortcut(QKeySequence("Ctrl+G"));
    connect(showPageSelectorAction, SIGNAL(triggered()),
            currentPageButton, SLOT(click()));
    this->addAction(showPageSelectorAction);


    // Add the default "demo" post
    if (timelineType != PumpController::UserTimelineRequest)
    {
        ASActivity *demoActivity = new ASActivity(demoPostData, "", this);
        Post *demoPost = new Post(demoActivity,
                                  false, // Not highlighted
                                  false, // Not standalone
                                  pController,
                                  globalObj,
                                  this);
        postsInTimeline.append(demoPost);
        postsLayout->addWidget(demoPost);
    }
    else
    {
        this->showMessage(tr("Requesting..."));
    }



    // Sync avatar's follow state for every post when there are changes in the Following list
    connect(pController, SIGNAL(followingListChanged()),
            this, SLOT(updateAvatarFollowStates()));

    // Disable buttons initially, until something is received
    this->disablePaginationButtons();

    qDebug() << "TimeLine created";
}


/*
 * Destructor stores timeline states in the settings
 *
 */
TimeLine::~TimeLine()
{
    QSettings settings;
    settings.beginGroup("TimelineStates");

    switch (timelineType)
    {
    case PumpController::MainTimelineRequest:
        settings.setValue("previousNewestPostIdMain",
                          this->previousNewestPostId);
        settings.setValue("totalPostsMain",
                          this->fullTimelinePostCount);
        break;

    case PumpController::DirectTimelineRequest:
        settings.setValue("previousNewestPostIdDirect",
                          this->previousNewestPostId);
        settings.setValue("totalPostsDirect",
                          this->fullTimelinePostCount);
        break;

    case PumpController::ActivityTimelineRequest:
        settings.setValue("previousNewestPostIdActivity",
                          this->previousNewestPostId);
        settings.setValue("totalPostsActivity",
                          this->fullTimelinePostCount);
        break;

    case PumpController::FavoritesTimelineRequest:
        settings.setValue("previousNewestPostIdFavorites",
                          this->previousNewestPostId);
        settings.setValue("totalPostsFavorites",
                          this->fullTimelinePostCount);
        break;

    case PumpController::UserTimelineRequest:
        break;

    default:
        qDebug() << "Timeline destructor: timelineType is invalid!";
    }
    settings.endGroup();


    qDebug() << "TimeLine destroyed; Type:" << this->timelineType;
}




void TimeLine::setCustomUrl(QString url)
{
    this->customUrl = url;
}



/*
 * Remove all widgets (Post *) from the timeline
 *
 */
void TimeLine::clearTimeLineContents(bool showMessage)
{
    foreach (Post *oldPost, postsInTimeline)
    {
        this->mainLayout->removeWidget(oldPost);
        delete oldPost;
    }
    this->postsInTimeline.clear();
    this->objectsIdList.clear();

    this->pendingToReceiveNextTime = 0;

    this->postsLayout->removeWidget(separatorFrame);
    separatorFrame->hide();

    if (showMessage)
    {
        this->showMessage(tr("Loading..."));
    }

    qApp->processEvents(); // So GUI gets updated
}


/*
 * Remove oldest posts from current page, to avoid ever-increasing memory usage.
 * Called after updating the timeline, only when getting newer posts on the
 * first page.
 *
 * At the very least, keep as many posts as were received in last update.
 *
 */
void TimeLine::removeOldPosts(int minimumToKeep)
{
    int maxPosts = qMax(this->postsPerPage * 2, // TMP FIXME
                        minimumToKeep);

    if (postsInTimeline.count() <= maxPosts)
    {
        // Not too many posts yet, so do nothing
        return;
    }

    int postCounter = 0;
    foreach (Post *post, postsInTimeline)
    {
        if (postCounter >= maxPosts)
        {
            if (!post->isNew()             // Don't remove if it's unread
             && !post->isBeingCommented()) // or currently being commented on
            {
                this->postsLayout->removeWidget(post);
                this->postsInTimeline.removeOne(post);
                this->objectsIdList.removeAt(postCounter);
                delete post;
            }
        }

        ++postCounter;
    }

    // Update "next" link manually, based on the last post present in the page
    QByteArray lastPostId = postsInTimeline.last()->getActivityId().toLocal8Bit();
    lastPostId = lastPostId.toPercentEncoding(); // Needs to be percent-encoded

    this->nextPageLink = this->pController->getFeedApiUrl(this->timelineType)
                       + "?before=" + lastPostId;
}



void TimeLine::insertSeparator(int position)
{
    this->postsLayout->insertWidget(position,
                                    this->separatorFrame);
    this->separatorFrame->show();
}



int TimeLine::getCurrentPage()
{
    if (this->postsPerPage == 0)
    {
        this->postsPerPage = 1;
    }

    return (this->timelineOffset / this->postsPerPage) + 1;
}


int TimeLine::getTotalPages()
{
    if (this->postsPerPage == 0)
    {
        this->postsPerPage = 1;
    }

    int totalPages = qCeil(this->fullTimelinePostCount / (float)this->postsPerPage);

    return qMax(totalPages, 1); // 1 is the minimum
}


int TimeLine::getTotalPosts()
{
    return this->fullTimelinePostCount;
}


/*
 *  Update the button at the bottom of the page, indicating current "page"
 *
 */
void TimeLine::updateCurrentPageNumber()
{
    int currentPage = this->getCurrentPage();
    int totalPages = this->getTotalPages();
    QString currentPageString = QLocale::system().toString(currentPage);
    QString totalPagesString = QLocale::system().toString(totalPages);
    QString totalPostsString = QLocale::system()
                               .toString(this->fullTimelinePostCount);

    this->currentPageButton->setText(QString("%1 / %2")
                                     .arg(currentPageString)
                                     .arg(totalPagesString));

    this->currentPageButton->setToolTip(tr("Page %1 of %2.")
                                        .arg(currentPageString)
                                        .arg(totalPagesString)
                                        + "<br>"
                                        + tr("Showing %1 posts per page.")
                                          .arg(this->postsPerPage)
                                        + "<br>"
                                        + tr("%1 posts in total.")
                                          .arg(totalPostsString)
                                        + "<hr>"
                                          "<b><i>"
                                        + tr("Click here or press Control+G to "
                                             "jump to a specific page")
                                        + "</i></b>");

    this->previousPageButton->setDisabled(currentPage == 1); // Disabled on 1st page
    this->nextPageButton->setDisabled(currentPage == totalPages); // Disabled on last page
}



void TimeLine::syncPostsPerPage()
{
    if (this->timelineType == PumpController::MainTimelineRequest
     || this->timelineType == PumpController::UserTimelineRequest)
    {
        this->postsPerPage = this->globalObj->getPostsPerPageMain();
    }
    else
    {
        this->postsPerPage = this->globalObj->getPostsPerPageOther();
    }
}


void TimeLine::enablePaginationButtons()
{
    this->firstPageButton->setEnabled(true);
    this->currentPageButton->setEnabled(true);
    this->updateCurrentPageNumber(); // Will re-enable prev/next buttons as needed
}


void TimeLine::disablePaginationButtons()
{
    this->firstPageButton->setDisabled(true);

    this->previousPageButton->setDisabled(true);
    this->currentPageButton->setDisabled(true);
    this->nextPageButton->setDisabled(true);

    this->getNewPendingButton->setDisabled(true);
}




/*
 * Resize all posts in timeline
 *
 */
void TimeLine::resizePosts(QList<Post *> postsToResize, bool resizeAll)
{
    if (resizeAll)
    {
        postsToResize = this->postsInTimeline;
    }

    foreach (Post *post, postsToResize)
    {
        // Call setPostContents() and setPostHeight()

        // New method, disabled for 1.3.1; has some drawbacks
        //post->onResizeOrShow();

        /* -- Old method, forcing a resize */
        post->resize(post->width() - 1,
                     post->height() - 1);
        /* re-enabled for 1.3.1 */
    }
}

void TimeLine::markPostsAsRead()
{
    foreach (Post *post, postsInTimeline)
    {
        // Mark post as read without informing the timeline
        post->setPostAsRead(false);
    }

    unreadPostsCount = 0;
    highlightedPostsCount = 0;

    emit unreadPostsCountChanged(this->timelineType,
                                 this->unreadPostsCount,
                                 this->highlightedPostsCount,
                                 this->fullTimelinePostCount);
}


void TimeLine::updateFuzzyTimestamps()
{
    foreach (Post *post, postsInTimeline)
    {
        post->setFuzzyTimestamps();
    }
}


bool TimeLine::commentingOnAnyPost()
{
    foreach (Post *post, postsInTimeline)
    {
        if (post->isBeingCommented())
        {
            return true;
        }
    }

    return false;
}

void TimeLine::notifyBlockedUpdates()
{
    QString tlName = PumpController::getFeedNameAndPath(timelineType).first();
    this->globalObj->setStatusMessage(tr("'%1' cannot be updated "
                                         "because a comment is currently "
                                         "being composed.",
                                         "%1 = feed's name").arg(tlName));
}


/*
 * Return list of pointers to Post() objects currently in the timeline
 *
 */
QList<Post *> TimeLine::getPostsInTimeline()
{
    return this->postsInTimeline;
}


QFrame *TimeLine::getSeparatorFrame()
{
    return this->separatorFrame;
}


void TimeLine::showMessage(QString message)
{
    this->infoLabel->setText("<big><b>"
                             + message
                             + "</b></big>");
    this->infoLabel->show();
}



/*****************************************************************************/
/*****************************************************************************/
/********************************** SLOTS ************************************/
/*****************************************************************************/
/*****************************************************************************/


void TimeLine::setTimeLineContents(QVariantList postList, QString previousLink,
                                   QString nextLink, int totalItems)
{
    qDebug() << "TimeLine::setTimeLineContents()";
    if (this->commentingOnAnyPost())
    {
        // Extra protection, see https://gitlab.com/dianara/dianara-dev/issues/35
        qDebug() << "Aborting timeline update due to comment in progress";
        this->notifyBlockedUpdates();
        return;
    }

    int postListSize = postList.size();

    // Disable to avoid clicks to posts (which would mark them as read)
    if (postListSize > 0)   // until fully updated
    {
        this->setDisabled(true);
    }

    // Remove all previous posts in timeline, when switching pages
    if (firstLoad || !wasOnFirstPage || favoritesTimeline || timelineOffset > 0)
    {
        // Hide the posts while TL reloads; helps performance a lot
        this->postsWidget->hide();

        qDebug() << "Removing previous posts from timeline";
        this->clearTimeLineContents();
        this->unreadPostsCount = 0;
        this->highlightedPostsCount = 0;

        // Ask mainWindow to scroll the QScrollArea containing the timeline to the top
        //  emit scrollTo(QAbstractSlider::SliderToMinimum);
        ////////// TMP FIXME: don't scroll to top; make it optional

        this->previousPageLink = previousLink;
        this->nextPageLink = nextLink;
        qDebug() << "Prev/Next links:" << previousPageLink << nextPageLink;
    }
    else
    {
        if (!previousLink.isEmpty())
        {
            this->previousPageLink = previousLink;
            // Just the previousLink; don't store nextLink, keep the old one
        }
    }


    int totalPostDifference = totalItems - this->fullTimelinePostCount;
    this->fullTimelinePostCount = totalItems;


    // Check how many more posts need to be received, if more than max are pending
    pendingToReceiveNextTime += totalPostDifference;
    pendingToReceiveNextTime -= postListSize;
    if (pendingToReceiveNextTime > 0)
    {
        if (firstLoad)
        {
            // The difference in pending posts is in the older pages, so doesn't count
            this->pendingToReceiveNextTime = 0;

            // FIXME 1.3.6: On first load, should display the "pending" number
            // at the bottom or at the "older" button
        }
        else
        {
            // Button at the top to fetch the pending messages, even more new stuff
            this->getNewPendingButton->setText(tr("%1 more posts pending for "
                                                  "next update.")
                                               .arg(pendingToReceiveNextTime)
                                               + "   " // 3 spaces, then an alarm clock
                                               + QString::fromUtf8("\342\217\260")
                                               + "\n"
                                               + tr("Click here to receive "
                                                    "them now."));
            this->getNewPendingButton->setEnabled(true);
            this->getNewPendingButton->show();
        }
    }
    else
    {
        this->pendingToReceiveNextTime = 0; // In case it was less than 0
        this->getNewPendingButton->hide();
    }

    // Remove the current separator line
    this->postsLayout->removeWidget(separatorFrame);
    separatorFrame->hide();


    ////////////////////////////////////// Start adding content to the timeline

    int newPostCount = 0;
    int newHighlightedPostsCount = 0;
    int newDirectPostsCount = 0;
    int newHLByFilterPostsCount = 0;
    int newDeletedPostsCount = 0;
    int newFilteredPostsCount = 0;
    bool allNewPostsCounted = false;
    int insertedPosts = 0;
    bool needToInsertSeparator = false;

    // Here we'll store the post ID for the first (newest) post in the timeline
    QString newestPostId; // (actually activity ID)
    // With it, we can know how many new posts (if any) we receive next time

    QList<Post *> postsInsertedThisTime;

    // Fill timeline with new contents
    foreach (QVariant singlePost, postList)
    {
        if (singlePost.type() == QVariant::Map)
        {
            bool postIsNew = false;

            QVariantMap activityMap;
            // Since "Favorites" is a collection of objects, not activities,
            // we need to put "Favorites" posts into fake activities
            if (!favoritesTimeline)
            {
                // Data is already an activity
                activityMap = singlePost.toMap();
            }
            else
            {
                // Put object into the empty/fake VariantMap for the activity
                activityMap.insert("object", singlePost.toMap());
                activityMap.insert("actor",  singlePost.toMap()
                                                       .value("author").toMap());
                activityMap.insert("id",     singlePost.toMap()
                                                       .value("id").toString());
            }

            ASActivity *activity = new ASActivity(activityMap,
                                                  pController->currentUserId(),
                                                  this);

            // See if it's deleted
            QString postDeletedTime = activity->object()->getDeletedTime();

            // See if we have to filter it out (or highlight it)
            int filtered = this->fChecker->validateActivity(activity);


            // See if we hide the post if a copy is already visible in the timeline
            bool postIsDuplicated = false;
            if (globalObj->getHideDuplicates()) // Depending on the setting
            {
                if (this->objectsIdList.contains(activity->object()->getId()))
                {
                    postIsDuplicated = true;
                }
            }

            if (newestPostId.isEmpty()) // only first time, for newest post
            {
                if (gettingNew)
                {
                    newestPostId = activity->getId();
                }
                else
                {
                    newestPostId = this->previousNewestPostId;
                    allNewPostsCounted = true;
                }
            }


            if (!allNewPostsCounted)
            {
                if (activity->getId() == this->previousNewestPostId)
                {
                    allNewPostsCounted = true;
                    if (newPostCount > 0)
                    {
                        needToInsertSeparator = true;
                    }
                }
                else
                {
                    // If post is NOT deleted or filtered, not ours, and
                    // this is not the Favorites timeline, add it to the count
                    if (postDeletedTime.isEmpty()
                        && filtered != FilterChecker::FilterOut
                        && !postIsDuplicated
                        && activity->author()->getId() != pController->currentUserId()
                        && activity->object()->author()->getId() != pController->currentUserId()
                        && !favoritesTimeline
                        && this->timelineType != PumpController::UserTimelineRequest)
                    {
                        ++newPostCount;

                        // Mark current post as new
                        postIsNew = true;
                    }
                    else
                    {
                        if (!postDeletedTime.isEmpty())
                        {
                            ++newDeletedPostsCount;
                        }
                        else if (filtered == FilterChecker::FilterOut
                              || postIsDuplicated)
                        {
                            ++newFilteredPostsCount;
                        }
                    }
                }
            }



            bool highlightedByFilter = false;
            if (filtered == FilterChecker::Highlight)
            {
                highlightedByFilter = true;
            }

            Post *newPost = new Post(activity,
                                     highlightedByFilter,
                                     false,  // NOT standalone
                                     pController,
                                     globalObj,
                                     this);
            if (postIsNew)
            {
                newPost->setPostAsNew();
                connect(newPost, SIGNAL(postRead(bool)),
                        this, SLOT(decreaseUnreadPostsCount(bool)));

                int highlightType = newPost->getHighlightType();
                if (highlightType != Post::NoHighlight)
                {
                    ++newHighlightedPostsCount;

                    if (highlightType == Post::MessageForUserHighlight)
                    {
                        ++newDirectPostsCount;
                    }

                    if (highlightType == Post::FilterRulesHighlight)
                    {
                        ++newHLByFilterPostsCount;
                    }
                }
            }


            if (needToInsertSeparator)  // -------
            {
                this->insertSeparator(insertedPosts);
                ++insertedPosts;
                needToInsertSeparator = false;
            }


            this->objectsIdList.insert(insertedPosts, newPost->getObjectId());
            postsInsertedThisTime.append(newPost);
            this->postsLayout->insertWidget(insertedPosts, newPost);
            this->postsInTimeline.insert(insertedPosts, newPost);
            ++insertedPosts;

            // FIXME: this signal should go directly via GlobalObject instead
            connect(newPost, SIGNAL(commentingOnPost(QWidget*)),
                    this, SIGNAL(commentingOnPost(QWidget*)));


            // If post has been filtered out or hidden because it's a duplicate
            if (filtered == FilterChecker::FilterOut || postIsDuplicated)
            {
                newPost->hide(); // For now; maybe make it so that it can be clicked to show - FIXME
                qDebug() << "Post filtered out or hidden because it's a duplicate\n"
                         << "Filter action:" << filtered
                         << "(0=filter out; 1=highlight, 999=no filtering)\n"
                         << "Duplicated:" << postIsDuplicated;
            }
        }
        else  // singlePost.type() is not a QVariant::Map
        {
            qDebug() << "Expected a Map, got something else";
            qDebug() << postList;
        }
    } // end foreach

    qApp->processEvents(); // pre-resize posts

    this->firstLoad = false;


    // If there were new posts, and separator not already added, add it: -----
    if (newPostCount > 0 && this->separatorFrame->isHidden())
    {
        this->insertSeparator(insertedPosts);
    }

    if (!newestPostId.isEmpty())
    {
        this->previousNewestPostId = newestPostId;
    }

    this->unreadPostsCount += newPostCount;
    this->highlightedPostsCount += newHighlightedPostsCount;
    qDebug() << "-----------\nNew posts:" << newPostCount
             << "\nActual total new from previous update:" << totalPostDifference
             << "\nNewest post ID:" << previousNewestPostId
             << "\nNew highlighted:" << newHighlightedPostsCount
             << "\n------ New direct:" << newDirectPostsCount
             << "\n------ New HL by filter:" << newHLByFilterPostsCount
             << "\nNew deleted: " << newDeletedPostsCount
             << "\nNew filtered out: " << newFilteredPostsCount
             << "\nTotal posts:" << fullTimelinePostCount
             << "\nTotal currently loaded posts:" << this->postsInTimeline.size();


    if (postListSize > 0)
    {
        // Resize the posts, but only the ones added in this update
        this->resizePosts(postsInsertedThisTime);
    }

    if (gettingNew)
    {
        emit timelineRendered(this->timelineType,
                              newPostCount, newHighlightedPostsCount,
                              newDirectPostsCount, newHLByFilterPostsCount,
                              newDeletedPostsCount, newFilteredPostsCount,
                              pendingToReceiveNextTime);

        emit unreadPostsCountChanged(this->timelineType,
                                     unreadPostsCount,
                                     highlightedPostsCount,
                                     fullTimelinePostCount);

        // Clean up, keeping at least the posts that were just received
        if (postListSize > 0)  // but only if there was _something_
        {
            this->removeOldPosts(postListSize);
        }
    }
    else
    {
        emit timelineRendered(this->timelineType,
                              postListSize, -1, // Highlighted counts (direct and by filter)
                              -1, -1,           // are irrelevant in this case
                              newDeletedPostsCount, newFilteredPostsCount,
                              -1);

        emit unreadPostsCountChanged(this->timelineType,
                                     0, 0,
                                     fullTimelinePostCount);
    }


    if (postsInTimeline.length() == 0)
    {
        this->showMessage(tr("There are no posts"));
        this->postsWidget->hide();
    }
    else
    {
        this->infoLabel->hide();
        this->postsWidget->show(); // Show posts again
    }

    // Enable timeline again, since everything is added and drawn
    this->setEnabled(true);
    this->enablePaginationButtons();

    qDebug() << "setTimeLineContents() /END";
}


void TimeLine::onUpdateFailed(int requestType)
{
    if (requestType == this->timelineType)
    {
        this->setEnabled(true); // Just in case

        this->timelineOffset = this->oldTimelineOffset;
        this->enablePaginationButtons();
    }
}


/*
 * Update data in all currently-visible posts matching the object ID sent
 * by the minor feed
 *
 */
void TimeLine::updatePostsFromMinorFeed(ASObject *object)
{
    /* FIXME: This should handle cases where a comment might be visible as a
     * post in the timeline (shared) _and_ be a comment in a visible post
     *
     * Also, something could be a note, therefore visible in the timeline,
     * but also be in reply to something else.
     *
     */

    if (object->getInReplyToId().isEmpty()) // Parent object
    {
        foreach (Post *post, postsInTimeline)
        {
            if (post->getObjectId() == object->getId())
            {
                post->updateDataFromObject(object);
            }
        }
    }
    else                                    // Reply to something
    {
        foreach (Post *post, postsInTimeline)
        {
            if (post->getObjectId() == object->getInReplyToId())
            {
                post->updateCommentFromObject(object);
            }
        }
    }
}



void TimeLine::addLikesFromMinorFeed(QString objectId, QString objectType,
                                     QString actorId, QString actorName,
                                     QString actorUrl)
{
    // FIXME 1.3.6: handle updating likes in comments
    foreach (Post *post, postsInTimeline)
    {
        if (post->getObjectId() == objectId)
        {
            post->appendLike(actorId, actorName, actorUrl);
        }
    }
}

void TimeLine::removeLikesFromMinorFeed(QString objectId, QString objectType,
                                        QString actorId)
{
    // FIXME 1.3.6: handle updating likes in comments
    foreach (Post *post, postsInTimeline)
    {
        if (post->getObjectId() == objectId)
        {
            post->removeLike(actorId);
        }
    }
}


/*
 * Add one single comment read from a minor feed, to the
 * corresponding parent post in this timeline
 *
 */
void TimeLine::addReplyFromMinorFeed(ASObject *object)
{
    QString parentPostId = object->getInReplyToId();

    foreach (Post *post, postsInTimeline)
    {
        if (post->getObjectId() == parentPostId)
        {
            post->appendComment(object);
        }
    }
}

void TimeLine::setPostsDeletedFromMinorFeed(ASObject *object)
{
    foreach (Post *post, postsInTimeline)
    {
        if (post->getObjectId() == object->getId())
        {
            post->setPostAsRead(true); // Just in case, and notifying timeline
            post->setPostDeleted(object->getDeletedOnString());
        }
    }

    // If the object has a parent, find it in the comments
    if (!object->getInReplyToId().isEmpty())
    {
        foreach (Post *post, postsInTimeline)
        {
            if (post->getObjectId() == object->getInReplyToId())
            {
                post->setCommentDeletedFromObject(object);
            }
        }
    }
}





/*
 * Add the full list of likes to a post
 *
 */
void TimeLine::setLikesInPost(QVariantList likesList, QString originatingPostURL)
{
    //qDebug() << "TimeLine::setLikesInPost()";
    QString originatingPostCleanUrl = originatingPostURL.split("?").first();
    //qDebug() << "Originating post URL:" << originatingPostCleanUrl;


    // Look for the originating Post() object
    qDebug() << "Looking for the originating Post() object";
    foreach (Post *post, postsInTimeline)
    {
        if (post->likesUrl() == originatingPostCleanUrl)
        {
            qDebug() << "Found originating Post; setting likes on it...";
            post->setLikes(likesList);
            /* Don't break, so likes get set in other
             * visible copies of the post too */
        }
    }
}


/*
 * Add the full list of comments to a post
 *
 */
void TimeLine::setCommentsInPost(QVariantList commentsList,
                                 QString originatingPostURL)
{
    qDebug() << "TimeLine::setCommentsInPost()";
    QString originatingPostCleanUrl = originatingPostURL.split("?").first();
    //qDebug() << "Originating post URL:" << originatingPostCleanUrl;


    // Look for the originating Post() object
    qDebug() << "Looking for the originating Post() object";
    foreach (Post *post, postsInTimeline)
    {
        if (post->commentsUrl() == originatingPostCleanUrl)
        {
            qDebug() << "Found originating Post; setting comments on it...";
            post->setComments(commentsList);

            // break;
            /* Don't break, so comments get set in copies of the post too,
               like if JohnDoe posted something and JaneDoe shared it soon
               after, so both the original post and its shared copy are visible
               in the timeline. */
        }
    }
}





void TimeLine::goToFirstPage()
{
    qDebug() << "TimeLine::goToFirstPage()";

    if (this->commentingOnAnyPost())
    {
        // Update is blocked because a post is being commented
        this->notifyBlockedUpdates();
        return;
    }

    this->syncPostsPerPage();

    this->gettingNew = true;

    if (timelineOffset == 0) // On page 1
    {
        this->wasOnFirstPage = true;
    }
    else
    {
        this->wasOnFirstPage = false;

        this->previousPageLink.clear();  // Full reload of newest stuff
        this->oldTimelineOffset = this->timelineOffset;
        this->timelineOffset = 0;

        this->setDisabled(true); // Disable soon, to avoid wrong clicks
    }

    // Disable pagination buttons to avoid double-clicking problems, in case
    // the whole timeline isn't disabled (whenever we're in the first page)
    this->disablePaginationButtons();
    // The ones that make sense will be re-enabled later

    /*
     * If this is the favorites timeline, previousPageLink will be empty,
     * which means the first posts at offset 0 will be loaded anyway
     *
     */
    pController->getFeed(this->timelineType,
                         this->postsPerPage,
                         this->previousPageLink);
}



void TimeLine::goToPreviousPage()
{
    qDebug() << "TimeLine::goToPreviousPage()";
    if (this->commentingOnAnyPost())
    {
        this->notifyBlockedUpdates();
        return;
    }

    this->syncPostsPerPage();

    this->gettingNew = false;

    this->setDisabled(true); // Disable soon, to avoid wrong clicks

    this->oldTimelineOffset = this->timelineOffset;
    this->timelineOffset -= this->postsPerPage;
    if (timelineOffset < 0)
    {
        timelineOffset = 0;
    }

    if (!favoritesTimeline) // Not favorites, use PreviousLink
    {
        pController->getFeed(this->timelineType,
                             this->postsPerPage,
                             this->previousPageLink);
    }
    else
    {
        pController->getFeed(this->timelineType,
                             this->postsPerPage,
                             "",
                             this->timelineOffset);
    }
}



void TimeLine::goToNextPage()
{
    qDebug() << "TimeLine::goToNextPage()";
    if (this->commentingOnAnyPost())
    {
        this->notifyBlockedUpdates();
        return;
    }

    this->syncPostsPerPage();

    this->gettingNew = false;

    this->setDisabled(true); // Disable soon, to avoid wrong clicks

    this->oldTimelineOffset = this->timelineOffset;
    this->timelineOffset += this->postsPerPage;

    if (!favoritesTimeline) // Not favorites, use NextLink
    {
        pController->getFeed(this->timelineType,
                             this->postsPerPage,
                             this->nextPageLink);
    }
    else // Use offset
    {
        pController->getFeed(this->timelineType,
                             this->postsPerPage,
                             "",
                             this->timelineOffset);
    }
}


void TimeLine::goToSpecificPage(int pageNumber)
{
    qDebug() << "TimeLine::goToSpecificPage(): " << pageNumber;
    if (this->commentingOnAnyPost())
    {
        this->notifyBlockedUpdates();
        return;
    }

    this->syncPostsPerPage();

    this->gettingNew = false;

    this->setDisabled(true); // Disable soon, to avoid wrong clicks

    this->oldTimelineOffset = this->timelineOffset;
    this->timelineOffset = (pageNumber - 1) * this->postsPerPage;

    /* Workaround for Pump.io core bug:
     *
     *    Ensure that timelineOffset is NOT greater
     *    than fullTimelinePostCount - postsPerPage
     *
     * Otherwise, when requesting the last page, the server might return
     * ALL posts, even beyond API limits, instead of the last (oldest) few
     * posts.
     *
     * https://github.com/pump-io/pump.io/issues/1087
     *
     */
    if (this->timelineType == PumpController::UserTimelineRequest)
    {
        int maxTimelineOffset = this->fullTimelinePostCount - this->postsPerPage;
        this->timelineOffset = qMin(this->timelineOffset, maxTimelineOffset);
    }

    pController->getFeed(this->timelineType,
                         this->postsPerPage,
                         this->customUrl, // No prev/next links, use possible customUrl or empty
                         this->timelineOffset); // And use offset instead
}

/*
 * Get newest posts that were pending, explicitly from the "get pending" button.
 *
 * Needed to set focus on another widget first.
 *
 */
void TimeLine::getNewPending()
{
    // Avoid annoying focus changes when 'get pending' button is disabled
    this->postsWidget->setFocus();

    this->goToFirstPage();
}


void TimeLine::showPageSelector()
{
    this->pageSelector->showForPage(this->getCurrentPage(),
                                    this->getTotalPages());
}



void TimeLine::scrollUp()
{
    emit scrollTo(QAbstractSlider::SliderSingleStepSub);
}

void TimeLine::scrollDown()
{
    emit scrollTo(QAbstractSlider::SliderSingleStepAdd);
}

void TimeLine::scrollPageUp()
{
    emit scrollTo(QAbstractSlider::SliderPageStepSub);
}

void TimeLine::scrollPageDown()
{
    emit scrollTo(QAbstractSlider::SliderPageStepAdd);
}

void TimeLine::scrollToTop()
{
    emit scrollTo(QAbstractSlider::SliderToMinimum);
}

void TimeLine::scrollToBottom()
{
    emit scrollTo(QAbstractSlider::SliderToMaximum);
}



/*
 * Decrease internal counter of unread posts (by 1), and inform
 * the parent window, so it can update its tab titles
 *
 */
void TimeLine::decreaseUnreadPostsCount(bool wasHighlighted)
{
    --unreadPostsCount;

    if (wasHighlighted)
    {
        --highlightedPostsCount;
    }

    emit unreadPostsCountChanged(this->timelineType,
                                 this->unreadPostsCount,
                                 this->highlightedPostsCount,
                                 this->fullTimelinePostCount);
}

void TimeLine::updateAvatarFollowStates()
{
    foreach (Post *post, postsInTimeline)
    {
        post->syncAvatarFollowState();
    }
}