123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <?php
- /* REQUEST HANDLING */
-
- // Handle navigation request & update session.
- if(isset($_POST['set-navigation'])) {
- $_SESSION[_sid]['view'] = $_POST['set-navigation'];
- echo $_SESSION[_sid]['view'];
- }
- // Get item data with quick search.
- if(isset($_POST['quick-item-search'])) {
- echo json_encode(quick_item_search($_POST['quick-item-search']));
- }
- // Get item to be edited.
- if(isset($_POST['get-edit-item'])) {
- $item = get_item_data($_POST['get-edit-item']);
- echo '
- <div class="row">
- '.get_item_edit_form($item).'
- </div>
-
-
-
-
- <p class="display-4 animated flipInX" style="font-size:22pt!important;"><i class="fad fa-debug text-danger"></i> Debug Output</p>
- <pre class="text-left panel-tag">'.print_r($item,1).'</pre>
- <script>
- $(\'#item-editor-header-label\').empty().append(\'<span class="inline animated bounceIn"><i class="fad fa-caret-right"></i> '.$item['name'].'</span>\');
- $(\'#item-editor-header-label\').switchClass("btn-info","btn-primary");
- </script>';
- }
-
-
- /* GET FUNCTIONS */
-
- // Builds item edit form inputs & form.
- function get_item_edit_form($item, $return = NULL) {
- $pass = 0;
- $return .= '
- <div class="col-2 text-center">
- <img class="edit-item-ico vm" src="img/eq2/items/'.$item['icon'].'.png"/>
- </div>';
- foreach($item as $k => $v) {
- $return .= '
- <div class="col-'.($k == 'id' ? '2':'4').'">
- <div class="form-group">
- <label class="form-label hidden" for="basic-addon1">'.$k.'</label>
- <div class="input-group">
- <div class="input-group-prepend">
- <span class="input-group-text strong">'.$k.'</span>
- </div>
- <input type="text" class="form-control item-edit-input" value="'.$v.'" placeholder="'.$k.'" aria-label="'.$k.'" aria-describedby="'.$k.'">
- </div>
- <span class="help-block"> </span>
- </div>
- </div>';
- }
- return $return;
- }
-
- // Get Item Data
- function get_item_data($id, $return = []) {
- global $world;
- $query = '
- SELECT
- i.`id`,
- i.`name`,
- i.`item_type`,
- i.`icon`,
- i.`count`,
- i.`tier`,
- i.`skill_id_req`,
- i.`skill_id_req2`,
- i.`skill_min`,
- i.`weight`,
- i.`description`,
- i.`show_name`,
- i.`attuneable`,
- i.`artifact`,
- i.`lore`,
- i.`temporary`,
- i.`notrade`,
- i.`novalue`,
- i.`nozone`,
- i.`nodestroy`,
- i.`crafted`,
- i.`good_only`,
- i.`evil_only`,
- i.`stacklore`,
- i.`lore_equip`,
- i.`flags_16384`,
- i.`flags_32768`,
- i.`ornate`,
- i.`heirloom`,
- i.`appearance_only`,
- i.`unlocked`,
- i.`reforged`,
- i.`norepair`,
- i.`etheral`,
- i.`refined`,
- i.`flags2_256`,
- i.`usable`,
- i.`slots`,
- i.`set_name`,
- i.`sell_price`,
- i.`sell_status_amount`,
- i.`stack_count`,
- i.`collectable`,
- i.`adornment_slot1`,
- i.`adornment_slot2`,
- i.`adornment_slot3`,
- i.`adornment_slot4`,
- i.`adornment_slot5`,
- i.`adornment_slot6`,
- i.`adornment_description`,
- i.`offers_quest_id`,
- i.`soe_autoquest_id`,
- i.`part_of_quest_id`,
- i.`quest_unknown`,
- i.`max_charges`,
- i.`display_charges`,
- i.`recommended_level`,
- i.`adventure_default_level`,
- i.`tradeskill_default_level`,
- i.`adventure_classes`,
- i.`tradeskill_classes`,
- i.`soe_item_id`,
- i.`soe_item_crc`,
- i.`lua_script`,
- i.`harvest`
- FROM `items` as `i`
- WHERE `i`.`id` = '.addslashes($id);
- $stmt = $world->prepare($query);
- $stmt->execute();
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- $return = $row;
- return $return;
- }
-
- // Quick Item Search
- function quick_item_search($s, $limit = 100, $page = 0, $return = []) {
- global $world;
- $return = [
- 'found' => 0,
- 'count' => 0,
- 'rows' => [],
- 'limit' => $limit,
- 'page' => $page
- ];
- $query = '
- SELECT
- SQL_CALC_FOUND_ROWS
- i.`id`,
- i.`name`,
- i.`item_type`,
- i.`icon`
- FROM `items` as `i`
- WHERE i.`id` = \''.addslashes($s).'\'
- OR i.`name` LIKE \'%'.addslashes(str_replace(' ', '%%',$s)).'%\'
- OR LOWER(i.`item_type`) = LOWER(\''.addslashes($s).'\')
- LIMIT '.$limit;
- //error_log($query,1);
- $stmt = $world->prepare($query);
- $stmt->execute();
- $rc = $stmt->rowCount();
- if($rc > 0) {
- $return['found'] = get_found_count();
- $return['count'] = $rc;
- while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
- $return['rows'][] = $row;
- }
- }
- return $return;
- }
-
- //Returns count of rows found (if LIMIT had not been used).
- //Note: Requires SQL_CALC_FOUND_ROWS after SELECT.
- function get_found_count() {
- global $world;
- $query = 'SELECT FOUND_ROWS() as `found`;';
- $stmt = $world->prepare($query);
- $stmt->execute();
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- return $row['found'];
- }
-
- //Returns count of characters.
- function get_character_count($return = 0) {
- global $world;
- $query = 'SELECT count(DISTINCT `id`) as `count` FROM `characters`';
- $stmt = $world->prepare($query);
- $stmt->execute();
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- $return = $row['count'];
- return $return;
- }
- //Get World Information.
- function get_world_info($world_name = NULL, $return = []) {
- global $_db, $login;
- $world_name = ($world_name == NULL ? _world:$world_name);
- $query = '
- SELECT
- w.id,
- w.name,
- w.disabled,
- w.account,
- w.description,
- w.password,
- w.serverop,
- w.greenname,
- w.note,
- w.ip_address,
- w.login_version,
- DATE_FORMAT(FROM_UNIXTIME(w.lastseen), "%m/%d/%y %h:%i %p") AS `lastseen`
- FROM login_worldservers AS w
- WHERE w.name = \''.$world_name.'\'';
- $stmt = $login->prepare($query);
- $stmt->execute();
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- $return = $row;
- return $return;
- }
- //Pulls variable data from world db.
- function get_world_variables($return = []) {
- global $world;
-
- $query = '
- SELECT
- v.variable_name,
- v.variable_value,
- v.comment
- FROM variables as v';
- $stmt = $world->prepare($query);
- $stmt->execute();
-
- while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
- $return[$row['variable_name']] = [
- 'value' => $row['variable_value'],
- 'desc' => $row['comment']
- ];
- }
- return $return;
- }
- /* UTILITY FUNCTIONS */
- // Loads HTML output for left navigation menu.
- function get_nav_menu($return = NULL) {
- global $_modules, $_SESSION;
-
- $active = $_SESSION[_sid]['view'];
- foreach($_modules as $k => $m) {
- $access = !empty(array_intersect($_SESSION[_sid]['user']['access'], $m['access']));
- if($access) {
- if($m['type'] == 'module') {
- $return .= '
- <li class="'.($active == $k ? 'active':NULL).' eq-nav-link" data-module="'.$k.'">
- <a class="waves-effect waves-themed" href="#" title="'.$m['desc'].'">
- '.($m['icon'] ? '<i class="'.$m['icon'].'"></i>':NULL).'
- <span class="nav-link-text" data-il8n="nav.ui_components">'.$m['title'].'</span>
- </a>
- </li>';
- } else if($m['type'] == 'category') {
- $return .= '
- <li class="nav-title">
- '.($m['icon'] ? '<i class="'.$m['icon'].'"></i>':NULL).' '.$m['title'].'
- </li>';
- }
- }
- }
- return $return;
- }
- ?>
|