-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Uncovery
committed
May 22, 2020
1 parent
5587d70
commit 9d62c43
Showing
1 changed file
with
275 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,275 @@ | ||
<?php | ||
/* | ||
* This file is part of Uncovery Minecraft. | ||
* Copyright (C) 2015 uncovery.me | ||
* | ||
* Uncovery Minecraft 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 3 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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* | ||
* This file is the turnstile for all places the code can be called from (Wordpress, Wordpress plugin, Websend) | ||
* it also includes some smaller functions that did not fit anywhere else. | ||
*/ | ||
|
||
/* UMC_FUNCTIONS: This is a list of functions that are called directly from the website, outside of Wordpress | ||
* The list needs to be maintained so that the function can actually be called. See index_wp for the mechanism. | ||
*/ | ||
global $UMC_USERS, $WS_INIT, $UMC_USER, $UMC_SETTING, $UMC_ITEMS, $UMC_DATA, $UMC_DATA_ID2NAME; | ||
global $UMC_ENV, $ITEM_SEARCH, $UMC_DATA_ENCHANTMENTS, $UMC_DOMAIN, $UMC_PATH_MC, $UMC_FUNCTIONS, $UMC_PATTERNS, $UMC_COLORS_DEC; | ||
global $ITEM_SPRITES, $BROKEN_ITEMS, $ITEM_UNAVAILABLE; | ||
|
||
$UMC_PATH_MC = "/home/minecraft"; | ||
|
||
// include error handling | ||
global $XMPP_ERROR; | ||
require_once('/home/includes/xmpp_error/xmpp_error.php'); | ||
$XMPP_ERROR['config']['project_name'] = 'Uncovery.me'; | ||
$XMPP_ERROR['config']['enabled'] = true; | ||
$XMPP_ERROR['config']['track_globals'][] = 'UMC_USERS'; | ||
|
||
$UMC_USERS = array(); | ||
|
||
// include database abstraction | ||
global $UNC_DB; | ||
$UNC_DB = array('database' => 'minecraft', 'username' => 'minecraft', 'server' => 'localhost', 'password' => '9sd6ncC9vEcTD55Z'); | ||
// legacy since we did not merge completely | ||
// umc_mysql_connect($UNC_DB['server'], $UNC_DB['username'], $UNC_DB['password']); | ||
require_once('/home/includes/uncovery_mysql/uncovery_mysql.inc.php'); | ||
|
||
// include serial_curl | ||
require_once('/home/includes/unc_serial_curl/unc_serial_curl.php'); | ||
|
||
// include everything else | ||
// require_once($UMC_PATH_MC . '/server/bin/classes/users.class.php'); | ||
|
||
require_once($UMC_PATH_MC . '/server/bin/users.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/map.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/web.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/contests.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/shop_common.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/lot_manager.php'); | ||
|
||
require_once($UMC_PATH_MC . '/server/bin/shop_manager.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/plugin.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/inventory.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/settler_test.php'); | ||
|
||
require_once($UMC_PATH_MC . '/server/bin/assets/colors.inc.php'); | ||
|
||
require_once($UMC_PATH_MC . '/server/bin/assets/item_enchantments.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_data.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_id2name.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_search.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_sprites.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_details.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_item2wiki.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/patterns.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/potions.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/spawn_egg.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/broken_items.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/assets/item_unavailable.inc.php'); | ||
|
||
require_once($UMC_PATH_MC . '/server/bin/includes/array2file.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/config.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/enchantments.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/faq.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/github.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/log.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/nbt.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/timer.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/usericons.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/websend.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/wordpress.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/uuid.inc.php'); | ||
require_once($UMC_PATH_MC . '/server/bin/includes/wiki_data.inc.php'); | ||
|
||
// include all websend plugins | ||
umc_plg_include(); | ||
|
||
function umc_set_environment() { | ||
global $UMC_ENV; | ||
XMPP_ERROR_trace(__FUNCTION__, func_get_args()); | ||
if (isset($UMC_ENV)) { | ||
return; | ||
} | ||
// check if we are on websend | ||
if (function_exists('umc_ws_auth') && umc_ws_auth()) { | ||
// get all variables from Websend to $UMC_USER | ||
$UMC_ENV = 'websend'; | ||
umc_ws_get_vars(); | ||
} else if (function_exists('get_currentuserinfo')) { | ||
$UMC_ENV = 'wordpress'; | ||
umc_wp_get_vars(); | ||
} else { | ||
$UMC_ENV = 'unknown'; | ||
} | ||
|
||
} | ||
|
||
function umc_sanitize_input(&$value, $type) { | ||
XMPP_ERROR_trace(__FUNCTION__, func_get_args()); | ||
$MAX_UNCS = 10000; | ||
$MIN_UNCS = 0.00001; | ||
|
||
if ($type == "price") { | ||
# Check that this is a number | ||
# Check that it is greater than zero | ||
# Check bounds | ||
if (!is_numeric($value)) { | ||
umc_error("{red}Invalid amount of uncs ({yellow}$value{red}), must be a number."); | ||
} elseif ($value < $MIN_UNCS) { | ||
umc_error("{red}Invalid amount of uncs ({yellow}$value{red}), must be at least {yellow}$MIN_UNCS{red}."); | ||
} elseif($value > $MAX_UNCS) { | ||
umc_error("{red}Invalid amount of uncs ({yellow}$value{red}), cannot be more than {yellow}$MAX_UNCS{red}."); | ||
} else { | ||
return $value; | ||
} | ||
} | ||
|
||
if ($type == "amount") { | ||
if ($value == NULL) { // buying all available | ||
return NULL; | ||
} | ||
if (!is_numeric($value)) { | ||
umc_error("{red}Invalid amount ({yellow}$value{red}), must be an integer."); | ||
} elseif (intval($value) < 1) { | ||
umc_error("{red}Invalid amount ({yellow}$value{red}), must be at least 1."); | ||
} else { | ||
return intval(abs($value)); | ||
} | ||
} | ||
|
||
if ($type == "player") { | ||
$player = umc_check_user($value); | ||
if (!$player) { | ||
umc_error("{red}Invalid player name ({yellow}$value{red}), no such player."); | ||
} else { | ||
return $player; | ||
} | ||
} | ||
|
||
if ($type == "item") { | ||
// get a list of all possible item names. REquires exact match of the searched item | ||
$all_names = umc_item_data_get_namelist(); | ||
if (isset($all_names[$value])) { | ||
return $all_names[$value]; | ||
} else { | ||
// we searched only for the EXACT item above. We should be looking for possible matches in the | ||
// search database too. | ||
global $ITEM_SEARCH; | ||
if (isset($ITEM_SEARCH[$value])) { | ||
return $ITEM_SEARCH[$value]; | ||
} | ||
return false; | ||
} | ||
} | ||
|
||
if ($type == "table") { | ||
if (isset($value[2]) && ($value[2] == 'request' || $value[2] == 'req' || $value[2] == 'r')) { | ||
return 'request'; | ||
} elseif (isset($value[2]) && ($value[2] == 'offer' || $value[2] == 'off' || $value[2] == 'o')) { | ||
return 'stock'; | ||
} else { | ||
array_splice($value,2,0,'offer'); | ||
umc_echo("{yellow}[!]{gray} Didn't specify {yellow}request{gray} or {yellow}offer{gray}, assuming {yellow}offer", true); | ||
return 'stock'; | ||
} | ||
} | ||
if ($type == "lot") { | ||
$check = !preg_match('/[^A-Za-z0-9_.#\\-$]/', $value); | ||
if (!$check) { | ||
umc_error('You need to enter a valid lot name such as "emp_a1"'); | ||
} else { | ||
return $value; | ||
} | ||
} | ||
if ($type == "meta") { | ||
$meta_name = umc_parse_meta_input($value); | ||
if (is_null($meta_name)) { | ||
umc_error("Unknown Metavalue name: {white}$value"); | ||
} else { | ||
return $meta_name; | ||
} | ||
} | ||
|
||
} | ||
|
||
// A1 south-west | ||
// min: {z: 1152.0, y: 0.0, x: -1280.0} | ||
// max: {z: 1279.0, y: 128.0, x: -1153.0} | ||
|
||
function conv_z($z, $map) { | ||
// 'map_img_empire' => array('top_offset' => 16, 'left_offset' => 33, 'max_coord' => 1280, 'row_size' => 16), | ||
$offset = 0; | ||
if (isset($map['top_offset'])) { | ||
$offset = $map['top_offset']; | ||
} | ||
$new_z = $z + $offset + $map['max_coord']; | ||
return $new_z; | ||
} | ||
|
||
function conv_x($x, $map) { | ||
$offset = 0; | ||
if (isset($map['left_offset'])) { | ||
$offset = $map['left_offset']; | ||
} | ||
$new_x = $x + $map['max_coord'] + $offset; | ||
return $new_x; | ||
} | ||
|
||
|
||
/* | ||
* iterates a path for all files | ||
*/ | ||
function umc_glob_recursive($pattern, $flags = 0) { | ||
$files = glob($pattern, $flags); | ||
foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir) { | ||
$files = array_merge($files, umc_glob_recursive($dir.'/'.basename($pattern), $flags)); | ||
} | ||
return $files; | ||
} | ||
|
||
function umc_frontpage() { | ||
XMPP_ERROR_trigger("This should not happen umc_frontpage"); | ||
} | ||
|
||
function umc_pretty_name($name) { | ||
return ucwords(str_replace("_"," ",$name)); | ||
} | ||
|
||
function umc_unpretty_name($name) { | ||
return strtolower(str_replace(" ","_",$name)); | ||
} | ||
|
||
/** | ||
* Generic function to create a random code | ||
* Used in stoy plugin and other places. | ||
* | ||
* @param type $length | ||
* @return string | ||
*/ | ||
function umc_random_code_gen($length = 5) { | ||
$chars = "abcdefghijkmnopqrstuvwxyz0123456789"; | ||
srand((double)microtime()*1000000); | ||
$i = 1; | ||
$pass = '' ; | ||
|
||
while ($i <= $length) { | ||
$num = rand() % 33; | ||
$tmp = substr($chars, $num, 1); | ||
$pass = $pass . $tmp; | ||
$i++; | ||
} | ||
return $pass; | ||
} |