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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "Repository.h"
#include "addons/AddonDatabase.h"
#include "addons/AddonInstaller.h"
#include "addons/AddonManager.h"
#include "dialogs/GUIDialogYesNo.h"
#include "dialogs/GUIDialogKaiToast.h"
#include "filesystem/File.h"
#include "filesystem/PluginDirectory.h"
#include "pvr/PVRManager.h"
#include "settings/Settings.h"
#include "utils/log.h"
#include "utils/StringUtils.h"
#include "utils/URIUtils.h"
#include "utils/XBMCTinyXML.h"
#include "FileItem.h"
#include "TextureDatabase.h"
#include "URL.h"
using namespace std;
using namespace XFILE;
using namespace ADDON;
AddonPtr CRepository::Clone() const
{
return AddonPtr(new CRepository(*this));
}
CRepository::CRepository(const AddonProps& props) :
CAddon(props)
{
}
CRepository::CRepository(const cp_extension_t *ext)
: CAddon(ext)
{
// read in the other props that we need
if (ext)
{
AddonVersion version("0.0.0");
AddonPtr addonver;
if (CAddonMgr::Get().GetAddon("xbmc.addon", addonver))
version = addonver->Version();
for (size_t i = 0; i < ext->configuration->num_children; ++i)
{
if(ext->configuration->children[i].name &&
strcmp(ext->configuration->children[i].name, "dir") == 0)
{
AddonVersion min_version(CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "@minversion"));
if (min_version <= version)
{
DirInfo dir;
dir.version = min_version;
dir.checksum = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "checksum");
dir.compressed = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "info@compressed").Equals("true");
dir.info = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "info");
dir.datadir = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "datadir");
dir.zipped = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "datadir@zip").Equals("true");
dir.hashes = CAddonMgr::Get().GetExtValue(&ext->configuration->children[i], "hashes").Equals("true");
m_dirs.push_back(dir);
}
}
}
// backward compatibility
if (!CAddonMgr::Get().GetExtValue(ext->configuration, "info").empty())
{
DirInfo info;
info.checksum = CAddonMgr::Get().GetExtValue(ext->configuration, "checksum");
info.compressed = CAddonMgr::Get().GetExtValue(ext->configuration, "info@compressed").Equals("true");
info.info = CAddonMgr::Get().GetExtValue(ext->configuration, "info");
info.datadir = CAddonMgr::Get().GetExtValue(ext->configuration, "datadir");
info.zipped = CAddonMgr::Get().GetExtValue(ext->configuration, "datadir@zip").Equals("true");
info.hashes = CAddonMgr::Get().GetExtValue(ext->configuration, "hashes").Equals("true");
m_dirs.push_back(info);
}
}
}
CRepository::CRepository(const CRepository &rhs)
: CAddon(rhs)
{
m_dirs = rhs.m_dirs;
}
CRepository::~CRepository()
{
}
string CRepository::Checksum() const
{
/* This code is duplicated in CRepositoryUpdateJob::GrabAddons().
* If you make changes here, they may be applicable there, too.
*/
string result;
for (DirList::const_iterator it = m_dirs.begin(); it != m_dirs.end(); ++it)
{
if (!it->checksum.empty())
result += FetchChecksum(it->checksum);
}
return result;
}
string CRepository::FetchChecksum(const string& url)
{
CFile file;
try
{
if (file.Open(url))
{
// we intentionally avoid using file.GetLength() for
// Transfer-Encoding: chunked servers.
std::stringstream str;
char temp[1024];
int read;
while ((read=file.Read(temp, sizeof(temp))) > 0)
str.write(temp, read);
return str.str();
}
return "";
}
catch (...)
{
return "";
}
}
string CRepository::GetAddonHash(const AddonPtr& addon) const
{
string checksum;
DirList::const_iterator it;
for (it = m_dirs.begin();it != m_dirs.end(); ++it)
if (URIUtils::IsInPath(addon->Path(), it->datadir))
break;
if (it != m_dirs.end() && it->hashes)
{
checksum = FetchChecksum(addon->Path()+".md5");
size_t pos = checksum.find_first_of(" \n");
if (pos != string::npos)
return checksum.substr(0, pos);
}
return checksum;
}
#define SET_IF_NOT_EMPTY(x,y) \
{ \
if (!x.empty()) \
x = y; \
}
VECADDONS CRepository::Parse(const DirInfo& dir)
{
VECADDONS result;
CXBMCTinyXML doc;
string file = dir.info;
if (dir.compressed)
{
CURL url(dir.info);
string opts = url.GetProtocolOptions();
if (!opts.empty())
opts += "&";
url.SetProtocolOptions(opts+"Encoding=gzip");
file = url.Get();
}
if (doc.LoadFile(file) && doc.RootElement())
{
CAddonMgr::Get().AddonsFromRepoXML(doc.RootElement(), result);
for (IVECADDONS i = result.begin(); i != result.end(); ++i)
{
AddonPtr addon = *i;
if (dir.zipped)
{
string file = StringUtils::Format("%s/%s-%s.zip", addon->ID().c_str(), addon->ID().c_str(), addon->Version().c_str());
addon->Props().path = URIUtils::AddFileToFolder(dir.datadir,file);
SET_IF_NOT_EMPTY(addon->Props().icon,URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/icon.png"))
file = StringUtils::Format("%s/changelog-%s.txt", addon->ID().c_str(), addon->Version().c_str());
SET_IF_NOT_EMPTY(addon->Props().changelog,URIUtils::AddFileToFolder(dir.datadir,file))
SET_IF_NOT_EMPTY(addon->Props().fanart,URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/fanart.jpg"))
}
else
{
addon->Props().path = URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/");
SET_IF_NOT_EMPTY(addon->Props().icon,URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/icon.png"))
SET_IF_NOT_EMPTY(addon->Props().changelog,URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/changelog.txt"))
SET_IF_NOT_EMPTY(addon->Props().fanart,URIUtils::AddFileToFolder(dir.datadir,addon->ID()+"/fanart.jpg"))
}
}
}
return result;
}
CRepositoryUpdateJob::CRepositoryUpdateJob(const VECADDONS &repos)
: m_repos(repos)
{
}
void MergeAddons(map<string, AddonPtr> &addons, const VECADDONS &new_addons)
{
for (VECADDONS::const_iterator it = new_addons.begin(); it != new_addons.end(); ++it)
{
map<string, AddonPtr>::iterator existing = addons.find((*it)->ID());
if (existing != addons.end())
{ // already got it - replace if we have a newer version
if (existing->second->Version() < (*it)->Version())
existing->second = *it;
}
else
addons.insert(make_pair((*it)->ID(), *it));
}
}
bool CRepositoryUpdateJob::DoWork()
{
map<string, AddonPtr> addons;
for (VECADDONS::const_iterator i = m_repos.begin(); i != m_repos.end(); ++i)
{
if (ShouldCancel(0, 0))
return false;
RepositoryPtr repo = boost::dynamic_pointer_cast<CRepository>(*i);
VECADDONS newAddons = GrabAddons(repo);
MergeAddons(addons, newAddons);
}
if (addons.empty())
return false;
// check for updates
CAddonDatabase database;
database.Open();
database.BeginMultipleExecute();
CTextureDatabase textureDB;
textureDB.Open();
textureDB.BeginMultipleExecute();
for (map<string, AddonPtr>::const_iterator i = addons.begin(); i != addons.end(); ++i)
{
// manager told us to feck off
if (ShouldCancel(0,0))
break;
AddonPtr newAddon = i->second;
bool deps_met = CAddonInstaller::Get().CheckDependencies(newAddon, &database);
if (!deps_met && newAddon->Props().broken.empty())
newAddon->Props().broken = "DEPSNOTMET";
// invalidate the art associated with this item
if (!newAddon->Props().fanart.empty())
textureDB.InvalidateCachedTexture(newAddon->Props().fanart);
if (!newAddon->Props().icon.empty())
textureDB.InvalidateCachedTexture(newAddon->Props().icon);
AddonPtr addon;
CAddonMgr::Get().GetAddon(newAddon->ID(),addon);
if (addon && newAddon->Version() > addon->Version() &&
!database.IsAddonBlacklisted(newAddon->ID(),newAddon->Version().c_str()) &&
deps_met)
{
if (CSettings::Get().GetBool("general.addonautoupdate") || addon->Type() >= ADDON_VIZ_LIBRARY)
{
string referer;
if (URIUtils::IsInternetStream(newAddon->Path()))
referer = StringUtils::Format("Referer=%s-%s.zip",addon->ID().c_str(),addon->Version().c_str());
if (newAddon->Type() == ADDON_PVRDLL &&
!PVR::CPVRManager::Get().InstallAddonAllowed(newAddon->ID()))
PVR::CPVRManager::Get().MarkAsOutdated(addon->ID(), referer);
else
CAddonInstaller::Get().Install(addon->ID(), true, referer);
}
else if (CSettings::Get().GetBool("general.addonnotifications"))
{
CGUIDialogKaiToast::QueueNotification(addon->Icon(),
g_localizeStrings.Get(24061),
addon->Name(),TOAST_DISPLAY_TIME,false,TOAST_DISPLAY_TIME);
}
}
// Check if we should mark the add-on as broken. We may have a newer version
// of this add-on in the database or installed - if so, we keep it unbroken.
bool haveNewer = (addon && addon->Version() > newAddon->Version()) ||
database.GetAddonVersion(newAddon->ID()) > newAddon->Version();
if (!haveNewer)
{
if (!newAddon->Props().broken.empty())
{
if (database.IsAddonBroken(newAddon->ID()).empty())
{
std::string line = g_localizeStrings.Get(24096);
if (newAddon->Props().broken == "DEPSNOTMET")
line = g_localizeStrings.Get(24104);
if (addon && CGUIDialogYesNo::ShowAndGetInput(newAddon->Name(),
line,
g_localizeStrings.Get(24097),
""))
CAddonMgr::Get().DisableAddon(newAddon->ID());
}
}
database.BreakAddon(newAddon->ID(), newAddon->Props().broken);
}
}
database.CommitMultipleExecute();
textureDB.CommitMultipleExecute();
return true;
}
VECADDONS CRepositoryUpdateJob::GrabAddons(RepositoryPtr& repo)
{
CAddonDatabase database;
VECADDONS addons;
database.Open();
string checksum;
database.GetRepoChecksum(repo->ID(),checksum);
string reposum;
/* This for loop is duplicated in CRepository::Checksum().
* If you make changes here, they may be applicable there, too.
*/
for (CRepository::DirList::const_iterator it = repo->m_dirs.begin(); it != repo->m_dirs.end(); ++it)
{
if (ShouldCancel(0, 0))
return addons;
if (!it->checksum.empty())
reposum += CRepository::FetchChecksum(it->checksum);
}
if (checksum != reposum || checksum.empty())
{
map<string, AddonPtr> uniqueAddons;
for (CRepository::DirList::const_iterator it = repo->m_dirs.begin(); it != repo->m_dirs.end(); ++it)
{
if (ShouldCancel(0, 0))
return addons;
VECADDONS addons2 = CRepository::Parse(*it);
MergeAddons(uniqueAddons, addons2);
}
if (uniqueAddons.empty())
{
CLog::Log(LOGERROR,"Repository %s returned no add-ons, listing may have failed",repo->Name().c_str());
reposum = checksum; // don't update the checksum
}
else
{
bool add=true;
if (!repo->Props().libname.empty())
{
CFileItemList dummy;
string s = StringUtils::Format("plugin://%s/?action=update", repo->ID().c_str());
add = CDirectory::GetDirectory(s, dummy);
}
if (add)
{
for (map<string, AddonPtr>::const_iterator i = uniqueAddons.begin(); i != uniqueAddons.end(); ++i)
addons.push_back(i->second);
database.AddRepository(repo->ID(),addons,reposum);
}
}
}
else
database.GetRepository(repo->ID(),addons);
database.SetRepoTimestamp(repo->ID(),CDateTime::GetCurrentDateTime().GetAsDBDateTime());
return addons;
}
|