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
|
/*
* Copyright (C) 2008-2012 Geometer Plus <[email protected]>
*
* 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 <ZLNetworkRequest.h>
#include <ZLibrary.h>
#include <ZLFile.h>
#include <ZLStringUtil.h>
#include "NetworkLink.h"
#include "NetworkOperationData.h"
const std::string NetworkLink::URL_MAIN = "main";
const std::string NetworkLink::URL_SEARCH = "search";
const std::string NetworkLink::URL_SIGN_IN = "signIn";
const std::string NetworkLink::URL_SIGN_OUT = "signOut";
const std::string NetworkLink::URL_SIGN_UP = "signUp";
const std::string NetworkLink::URL_TOPUP = "topup";
const std::string NetworkLink::URL_RECOVER_PASSWORD = "recoverPassword";
NetworkLink::NetworkLink(
const std::string &siteName
) :
mySiteName(ZLStringUtil::stringStartsWith(siteName, "www.") ? siteName.substr(std::string("www.").length()) : siteName),
myEnabled(true),
myUpdated(0) {
}
NetworkLink::~NetworkLink() {
}
std::string NetworkLink::url(const std::string &urlId) const {
std::map<std::string,std::string>::const_iterator it = myLinks.find(urlId);
return (it != myLinks.end()) ? it->second : std::string();
}
shared_ptr<ZLNetworkRequest> NetworkLink::resume(NetworkOperationData &result) const {
result.clear();
return 0;
}
void NetworkLink::setTitle(const std::string& title) {
myTitle = title;
}
void NetworkLink::setSummary(const std::string& summary) {
mySummary = summary;
}
void NetworkLink::setLanguage(const std::string &language) {
myLanguage = language;
}
void NetworkLink::setIcon(const std::string& icon) {
myIcon = icon;
}
void NetworkLink::setPredefinedId(const std::string& id) {
myPredefinedId = id;
}
void NetworkLink::setLinks(const std::map<std::string,std::string>& links) {
myLinks = links;
}
void NetworkLink::setUpdated(shared_ptr<ATOMUpdated> u) {
myUpdated = u;
}
std::string NetworkLink::getSiteName() const {
return mySiteName;
}
void NetworkLink::setEnabled(bool enabled) {
myEnabled = enabled;
}
std::string NetworkLink::getTitle() const {
return myTitle;
}
std::string NetworkLink::getSummary() const {
return mySummary;
}
std::string NetworkLink::getLanguage() const {
return myLanguage;
}
std::string NetworkLink::getPredefinedId() const {
return myPredefinedId;
}
const std::map<std::string,std::string>& NetworkLink::getLinks() const {
return myLinks;
}
shared_ptr<ATOMUpdated> NetworkLink::getUpdated() const {
return myUpdated;
}
bool NetworkLink::isPredefined() const {
return !myPredefinedId.empty();
}
std::string NetworkLink::getIcon() const {
return myIcon;
}
bool NetworkLink::isEnabled() const {
return myEnabled;
}
void NetworkLink::loadFrom(const NetworkLink & link) {
myTitle = link.myTitle;
myIcon = link.myIcon;
mySummary = link.mySummary;
myLanguage = link.myLanguage;
myLinks = link.myLinks;
myPredefinedId = link.myPredefinedId;
myUpdated = link.myUpdated;
}
void NetworkLink::loadLinksFrom(const NetworkLink & link) {
myIcon = link.myIcon;
myLinks = link.myLinks;
myUpdated = link.myUpdated;
}
void NetworkLink::loadSummaryFrom(const NetworkLink & link) {
myTitle = link.myTitle;
mySummary = link.mySummary;
}
|