mirror of https://github.com/procxx/kepka.git
Support poll closing by date.
This commit is contained in:
parent
6882093ed1
commit
3cb76fb80b
|
@ -43,6 +43,15 @@ PollData::PollData(not_null<Data::Session*> owner, PollId id)
|
|||
, _owner(owner) {
|
||||
}
|
||||
|
||||
bool PollData::closeByTimer() {
|
||||
if (closed()) {
|
||||
return false;
|
||||
}
|
||||
_flags |= Flag::Closed;
|
||||
++version;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool PollData::applyChanges(const MTPDpoll &poll) {
|
||||
Expects(poll.vid().v == id);
|
||||
|
||||
|
@ -51,6 +60,8 @@ bool PollData::applyChanges(const MTPDpoll &poll) {
|
|||
| (poll.is_public_voters() ? Flag::PublicVotes : Flag(0))
|
||||
| (poll.is_multiple_choice() ? Flag::MultiChoice : Flag(0))
|
||||
| (poll.is_quiz() ? Flag::Quiz : Flag(0));
|
||||
const auto newCloseDate = poll.vclose_date().value_or_empty();
|
||||
const auto newClosePeriod = poll.vclose_period().value_or_empty();
|
||||
auto newAnswers = ranges::view::all(
|
||||
poll.vanswers().v
|
||||
) | ranges::view::transform([](const MTPPollAnswer &data) {
|
||||
|
@ -65,6 +76,8 @@ bool PollData::applyChanges(const MTPDpoll &poll) {
|
|||
) | ranges::to_vector;
|
||||
|
||||
const auto changed1 = (question != newQuestion)
|
||||
|| (closeDate != newCloseDate)
|
||||
|| (closePeriod != newClosePeriod)
|
||||
|| (_flags != newFlags);
|
||||
const auto changed2 = (answers != newAnswers);
|
||||
if (!changed1 && !changed2) {
|
||||
|
@ -72,6 +85,8 @@ bool PollData::applyChanges(const MTPDpoll &poll) {
|
|||
}
|
||||
if (changed1) {
|
||||
question = newQuestion;
|
||||
closeDate = newCloseDate;
|
||||
closePeriod = newClosePeriod;
|
||||
_flags = newFlags;
|
||||
}
|
||||
if (changed2) {
|
||||
|
@ -238,7 +253,8 @@ MTPPoll PollDataToMTP(not_null<const PollData*> poll, bool close) {
|
|||
| (poll->multiChoice() ? Flag::f_multiple_choice : Flag(0))
|
||||
| (poll->publicVotes() ? Flag::f_public_voters : Flag(0))
|
||||
| (poll->quiz() ? Flag::f_quiz : Flag(0))
|
||||
| (poll->closePeriod > 0 ? Flag::f_close_period : Flag(0));
|
||||
| (poll->closePeriod > 0 ? Flag::f_close_period : Flag(0))
|
||||
| (poll->closeDate > 0 ? Flag::f_close_date : Flag(0));
|
||||
return MTP_poll(
|
||||
MTP_long(poll->id),
|
||||
MTP_flags(flags),
|
||||
|
|
|
@ -40,6 +40,7 @@ struct PollData {
|
|||
friend inline constexpr bool is_flag_type(Flag) { return true; };
|
||||
using Flags = base::flags<Flag>;
|
||||
|
||||
bool closeByTimer();
|
||||
bool applyChanges(const MTPDpoll &poll);
|
||||
bool applyResults(const MTPPollResults &results);
|
||||
void checkResultsReload(not_null<HistoryItem*> item, crl::time now);
|
||||
|
@ -63,8 +64,8 @@ struct PollData {
|
|||
std::vector<QByteArray> sendingVotes;
|
||||
crl::time lastResultsUpdate = 0;
|
||||
TextWithEntities solution;
|
||||
TimeId closePeriod = -1;
|
||||
TimeId closeDate = -1;
|
||||
TimeId closePeriod = 0;
|
||||
TimeId closeDate = 0;
|
||||
int totalVoters = 0;
|
||||
int version = 0;
|
||||
|
||||
|
|
|
@ -191,6 +191,7 @@ Session::Session(not_null<Main::Session*> session)
|
|||
, _sendActionsAnimation([=](crl::time now) {
|
||||
return sendActionsAnimationCallback(now);
|
||||
})
|
||||
, _pollsClosingTimer([=] { checkPollsClosings(); })
|
||||
, _unmuteByFinishedTimer([=] { unmuteByFinished(); })
|
||||
, _groups(this)
|
||||
, _chatsFilters(std::make_unique<ChatFilters>(this))
|
||||
|
@ -2877,6 +2878,10 @@ not_null<PollData*> Session::processPoll(const MTPPoll &data) {
|
|||
if (changed) {
|
||||
notifyPollUpdateDelayed(result);
|
||||
}
|
||||
if (result->closeDate > 0 && !result->closed()) {
|
||||
_pollsClosings.emplace(result->closeDate, result);
|
||||
checkPollsClosings();
|
||||
}
|
||||
return result;
|
||||
});
|
||||
}
|
||||
|
@ -2890,6 +2895,29 @@ not_null<PollData*> Session::processPoll(const MTPDmessageMediaPoll &data) {
|
|||
return result;
|
||||
}
|
||||
|
||||
void Session::checkPollsClosings() {
|
||||
const auto now = base::unixtime::now();
|
||||
auto closest = 0;
|
||||
for (auto i = _pollsClosings.begin(); i != _pollsClosings.end();) {
|
||||
if (i->first <= now) {
|
||||
if (i->second->closeByTimer()) {
|
||||
notifyPollUpdateDelayed(i->second);
|
||||
}
|
||||
i = _pollsClosings.erase(i);
|
||||
} else {
|
||||
if (!closest) {
|
||||
closest = i->first;
|
||||
}
|
||||
++i;
|
||||
}
|
||||
}
|
||||
if (closest) {
|
||||
_pollsClosingTimer.callOnce((closest - now) * crl::time(1000));
|
||||
} else {
|
||||
_pollsClosingTimer.cancel();
|
||||
}
|
||||
}
|
||||
|
||||
void Session::applyUpdate(const MTPDupdateMessagePoll &update) {
|
||||
const auto updated = [&] {
|
||||
const auto poll = update.vpoll();
|
||||
|
|
|
@ -822,6 +822,8 @@ private:
|
|||
|
||||
void setWallpapers(const QVector<MTPWallPaper> &data, int32 hash);
|
||||
|
||||
void checkPollsClosings();
|
||||
|
||||
not_null<Main::Session*> _session;
|
||||
|
||||
Storage::DatabasePointer _cache;
|
||||
|
@ -943,6 +945,9 @@ private:
|
|||
base::flat_set<not_null<GameData*>> _gamesUpdated;
|
||||
base::flat_set<not_null<PollData*>> _pollsUpdated;
|
||||
|
||||
base::flat_multi_map<TimeId, not_null<PollData*>> _pollsClosings;
|
||||
base::Timer _pollsClosingTimer;
|
||||
|
||||
base::flat_map<FolderId, std::unique_ptr<Folder>> _folders;
|
||||
//rpl::variable<FeedId> _defaultFeedId = FeedId(); // #feed
|
||||
|
||||
|
|
Loading…
Reference in New Issue