forked from darkman1983/tc_aowow
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ajax.php
98 lines (92 loc) · 4.22 KB
/
ajax.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
<?php
header ( 'Content-type: application/x-javascript' );
require_once ( 'configs/config.php' );
require_once ( 'includes/allutil.php' );
// Для Ajax отключаем debug
$AoWoWconf ['debug'] = false;
// Для Ajax ненужен реалм
$AoWoWconf ['realmd'] = false;
// Настройка БД
require_once ( 'includes/db.php' );
// Параметры передаваемые скрипту
@list ( $what, $id ) = explode ( '=', $_SERVER ['QUERY_STRING'] );
$id = intval ( $id );
$x = '';
switch ( $what )
{
case 'item':
if ( ! $item = load_cache ( ITEM_TOOLTIP, $id ) ) {
require_once ( 'includes/allitems.php' );
$item = allitemsinfo ( $id, 1 );
save_cache ( ITEM_TOOLTIP, $id, $item );
}
$x .= '$WowheadPower.registerItem(' . $id . ', ' . $_SESSION ['locale'] . ', {';
if ( $item ['name'] ) $x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $item ['name'] ) . '\',';
if ( $item ['quality'] ) $x .= 'quality: ' . $item ['quality'] . ',';
if ( $item ['icon'] ) $x .= 'icon: \'' . ajax_str_normalize ( $item ['icon'] ) . '\',';
if ( $item ['info'] ) $x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $item ['info'] ) . '\'';
$x .= '});';
break;
case 'spell':
if ( ! $spell = load_cache ( SPELL_TOOLTIP, $id ) ) {
require_once ( 'includes/allspells.php' );
$spell = allspellsinfo ( $id, 1 );
save_cache ( SPELL_TOOLTIP, $id, $spell );
}
$x .= '$WowheadPower.registerSpell(' . $id . ', ' . $_SESSION ['locale'] . ',{';
if ( $spell ['name'] ) $x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $spell ['name'] ) . '\',';
if ( $spell ['icon'] ) $x .= 'icon: \'' . ajax_str_normalize ( $spell ['icon'] ) . '\',';
if ( $spell ['info'] ) $x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $spell ['info'] ) . '\'';
$x .= '});';
break;
case 'quest':
if ( ! $quest = load_cache ( QUEST_TOOLTIP, $id ) ) {
require_once ( 'includes/allquests.php' );
$quest = GetDBQuestInfo ( $id, QUEST_DATAFLAG_AJAXTOOLTIP );
$quest ['tooltip'] = GetQuestTooltip ( $quest );
save_cache ( QUEST_TOOLTIP, $id, $quest );
}
$x .= '$WowheadPower.registerQuest(' . $id . ', ' . $_SESSION ['locale'] . ',{';
if ( $quest ['name'] ) $x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $quest ['name'] ) . '\',';
if ( $quest ['tooltip'] ) $x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $quest ['tooltip'] ) . '\'';
$x .= '});';
break;
case 'achievement':
if ( ! $achievement = load_cache ( ACHIEVEMENT_TOOLTIP, $id ) ) {
require_once ( 'includes/allachievements.php' );
$achievement = allachievementsinfo ( $id, 1 );
save_cache ( ACHIEVEMENT_TOOLTIP, $id, $achievement );
}
$x .= '$WowheadPower.registerAchievement(' . $id . ', ' . $_SESSION ['locale'] . ',{';
$x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $achievement ['name'] ) . '\',';
$x .= 'icon:\'' . $achievement ['icon'] . '\',';
$x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ':\'' . ajax_str_normalize ( $achievement ['tooltip'] ) . '\'';
$x .= '});';
break;
case 'npc':
if ( ! $npc = load_cache ( NPC_TOOLTIP, $id ) ) {
require_once ( 'includes/allnpcs.php' );
$npc = creatureinfo ( $id );
save_cache ( NPC_TOOLTIP, $id, $npc );
}
$x .= '$WowheadPower.registerNpc(' . $id . ', ' . $_SESSION ['locale'] . ',{';
$x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $npc ['name'] ) . '\',';
$x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ':\'' . ajax_str_normalize ( $npc ['tooltip'] ) . '\'';
$x .= '});';
break;
case 'object':
if ( ! $object = load_cache ( OBJECT_TOOLTIP, $id ) ) {
require_once ( 'includes/allobjects.php' );
$object = objectinfo ( $id, 1 );
save_cache ( OBJECT_TOOLTIP, $id, $object );
}
$x .= '$WowheadPower.registerObject(' . $id . ', ' . $_SESSION ['locale'] . ',{';
$x .= 'name_' . $locales [$_SESSION ['locale']] . ': \'' . ajax_str_normalize ( $object ['name'] ) . '\',';
$x .= 'tooltip_' . $locales [$_SESSION ['locale']] . ':\'' . ajax_str_normalize ( $object ['tooltip'] ) . '\'';
$x .= '});';
break;
default:
break;
}
echo $x;
?>