forked from Shadez/wowarmory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
team-info.php
104 lines (102 loc) · 3.95 KB
/
team-info.php
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
<?php
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
* @revision 122
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**/
define('__ARMORY__', true);
define('load_arenateams_class', true);
define('load_characters_class', true);
if(!@include('includes/armory_loader.php')) {
die('<b>Fatal error:</b> unable to load system files.');
}
header('Content-type: text/xml');
if(!isset($_GET['ts'])) {
$current_type = 2;
}
else {
$current_type = (int) $_GET['ts'];
}
$page_fail = false;
if(isset($_GET['t'])) {
$arenateams->teamname = $utils->escape($_GET['t']);
}
elseif(isset($_GET['select'])) {
$arenateams->teamname = $utils->escape($_GET['select']);
}
$isTeam = $arenateams->IsTeam();
if(!$isTeam || !$arenateams->teamname) {
// Load XSLT template
$xml->LoadXSLT('error/error.xsl');
$xml->XMLWriter()->startElement('page');
$xml->XMLWriter()->writeAttribute('globalSearch', 1);
$xml->XMLWriter()->writeAttribute('lang', $armory->_locale);
$xml->XMLWriter()->startElement('errorhtml');
$xml->XMLWriter()->endElement(); //errorhtml
$xml->XMLWriter()->endElement(); //page
echo $xml->StopXML();
exit;
}
if($arenateams->teamname && $isTeam && $armory->armoryconfig['useCache'] == true && !isset($_GET['skipCache'])) {
$cache_id = $utils->GenerateCacheId('team-info', $arenateams->teamname, $armory->armoryconfig['defaultRealmName']);
if($cache_data = $utils->GetCache($cache_id, 'arena')) {
echo $cache_data;
echo sprintf('<!-- Restored from cache; id: %s -->', $cache_id);
exit;
}
}
// Load XSLT template
$xml->LoadXSLT('arena/team-info.xsl');
$xml->XMLWriter()->startElement('page');
$xml->XMLWriter()->writeAttribute('globalSearch', 1);
$xml->XMLWriter()->writeAttribute('lang', $armory->_locale);
$xml->XMLWriter()->writeAttribute('requestUrl', 'team-info.xml');
$arenateams->_initTeam();
$team_info = $arenateams->GetArenaTeamInfo();
$xml->XMLWriter()->startElement('teamInfo');
$xml->XMLWriter()->startElement('arenaTeam');
foreach($team_info['data'] as $team_key => $team_value) {
$xml->XMLWriter()->writeAttribute($team_key, $team_value);
}
$xml->XMLWriter()->startElement('emblem');
foreach($team_info['emblem'] as $emblem_key => $emblem_value) {
$xml->XMLWriter()->writeAttribute($emblem_key, $emblem_value);
}
$xml->XMLWriter()->endElement(); //emblem
$xml->XMLWriter()->startElement('members');
foreach($team_info['members'] as $members) {
$xml->XMLWriter()->startElement('character');
foreach($members as $member_key => $member_value) {
$xml->XMLWriter()->writeAttribute($member_key, $member_value);
}
$xml->XMLWriter()->endElement(); //character
}
$xml->XMLWriter()->endElement(); //members
$xml->XMLWriter()->endElement(); //arenaTeam
$xml->XMLWriter()->endElement(); //teamInfo
$xml->XMLWriter()->endElement(); //page
$xml_cache_data = $xml->StopXML();
echo $xml_cache_data;
if($armory->armoryconfig['useCache'] == true && !isset($_GET['skipCache'])) {
// Write cache to file
$cache_data = $utils->GenerateCacheData($arenateams->teamname, $arenateams->arenateamid, 'team-info');
$cache_handler = $utils->WriteCache($cache_id, $cache_data, $xml_cache_data, 'arena');
}
exit;
?>