summaryrefslogtreecommitdiffstats
blob: 6766c2e8e8f908795a49d759f7df3868796548c7 (plain)
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
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swift/Controllers/StatusTracker.h"

#include <boost/smart_ptr/make_shared.hpp>

#include <Swiften/Elements/Idle.h>

namespace Swift {

StatusTracker::StatusTracker() {
	isAutoAway_ = false;
	queuedPresence_ = boost::make_shared<Presence>();
}

boost::shared_ptr<Presence> StatusTracker::getNextPresence() {
	boost::shared_ptr<Presence> presence;
	if (isAutoAway_) {
		presence = boost::make_shared<Presence>();
		presence->setShow(StatusShow::Away);
		presence->setStatus(queuedPresence_->getStatus());
		presence->addPayload(boost::make_shared<Idle>(isAutoAwaySince_));
	} else {
		presence = queuedPresence_;
	}
	return presence;
}

void StatusTracker::setRequestedPresence(boost::shared_ptr<Presence> presence) {
	isAutoAway_ = false;
	queuedPresence_ = presence;
//	if (presence->getType() == Presence::Unavailable) {
//		queuedPresence_ = boost::make_shared<Presence>();
//	}
}

bool StatusTracker::goAutoAway(const int& seconds) {
	if (queuedPresence_->getShow() != StatusShow::Online) {
		return false;
	}
	isAutoAway_ = true;
	isAutoAwaySince_ = boost::posix_time::second_clock::universal_time() - boost::posix_time::seconds(seconds);
	return true;
}

bool StatusTracker::goAutoUnAway() {
	if (!isAutoAway_) {
		return false;
	}
	isAutoAway_ = false;
	return true;
}

}