mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
209 lines
6.1 KiB
PHP
209 lines
6.1 KiB
PHP
<?php
|
|
/**
|
|
* Houses
|
|
*
|
|
* @package MyAAC
|
|
* @author Gesior <jerzyskalski@wp.pl>
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @author whiteblXK
|
|
* @copyright 2019 MyAAC
|
|
* @link https://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
$title = 'Houses';
|
|
|
|
$errors = array();
|
|
if(!$db->hasColumn('houses', 'name')) {
|
|
$errors[] = 'Houses list is not available on this server.';
|
|
|
|
$twig->display('houses.html.twig', array(
|
|
'errors' => $errors
|
|
));
|
|
return;
|
|
}
|
|
|
|
$rentType = trim(strtolower($config['lua']['houseRentPeriod']));
|
|
if($rentType != 'yearly' && $rentType != 'monthly' && $rentType != 'weekly' && $rentType != 'daily')
|
|
$rentType = 'never';
|
|
|
|
$state = '';
|
|
$order = '';
|
|
$type = '';
|
|
|
|
if(isset($_GET['page']) && $_GET['page'] == 'view' && isset($_REQUEST['house']))
|
|
{
|
|
$beds = array("", "one", "two", "three", "fourth", "fifth");
|
|
$houseName = $_REQUEST['house'];
|
|
$houseId = (Validator::number($_REQUEST['house']) ? $_REQUEST['house'] : -1);
|
|
$selectHouse = $db->query('SELECT * FROM ' . $db->tableName('houses') . ' WHERE ' . $db->fieldName('name') . ' LIKE ' . $db->quote($houseName) . ' OR `id` = ' . $db->quote($houseId));
|
|
|
|
$house = array();
|
|
if($selectHouse->rowCount() > 0)
|
|
{
|
|
$house = $selectHouse->fetch();
|
|
$houseId = $house['id'];
|
|
|
|
$title = $house['name'] . ' - ' . $title;
|
|
|
|
$imgPath = 'images/houses/' . $houseId . '.gif';
|
|
if(!file_exists($imgPath)) {
|
|
$imgPath = 'images/houses/default.jpg';
|
|
}
|
|
|
|
$bedsMessage = null;
|
|
$houseBeds = $house['beds'];
|
|
if($houseBeds > 0)
|
|
$bedsMessage = 'House have ' . (isset($beds[$houseBeds]) ? $beds[$houseBeds] : $houseBeds) . ' bed' . ($houseBeds > 1 ? 's' : '');
|
|
else
|
|
$bedsMessage = 'This house dont have any beds';
|
|
|
|
$houseOwner = $house['owner'];
|
|
if($houseOwner > 0)
|
|
{
|
|
$guild = NULL;
|
|
$owner = null;
|
|
if(isset($house['guild']) && $house['guild'] == 1)
|
|
{
|
|
$guild = new OTS_Guild();
|
|
$guild->load($houseOwner);
|
|
$owner = getGuildLink($guild->getName());
|
|
}
|
|
else
|
|
$owner = getCreatureName($houseOwner);
|
|
|
|
if($rentType != 'never' && $house['paid'] > 0)
|
|
{
|
|
$who = '';
|
|
if($guild)
|
|
$who = $guild->getName();
|
|
else
|
|
{
|
|
$player = new OTS_Player();
|
|
$player->load($houseOwner);
|
|
if($player->isLoaded())
|
|
{
|
|
$sexs = array('She', 'He');
|
|
$who = $sexs[$player->getSex()];
|
|
}
|
|
}
|
|
$owner .= ' ' . $who . ' has paid the rent until ' . date("M d Y, H:i:s", $house['paid']) . ' CEST.';
|
|
}
|
|
}
|
|
}
|
|
else
|
|
$errors[] = 'House with name ' . $houseName . ' does not exists.';
|
|
|
|
$twig->display('houses.view.html.twig', array(
|
|
'errors' => $errors,
|
|
'imgPath' => isset($imgPath) ? $imgPath : null,
|
|
'houseName' => isset($house['name']) ? $house['name'] : null,
|
|
'bedsMessage' => isset($bedsMessage) ? $bedsMessage : null,
|
|
'houseSize' => isset($house['size']) ? $house['size'] : null,
|
|
'houseRent' => isset($house['rent']) ? $house['rent'] : null,
|
|
'owner' => isset($owner) ? $owner : null,
|
|
'rentType' => isset($rentType) ? $rentType : null
|
|
));
|
|
|
|
if (count($errors) > 0) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
$cleanOldHouse = null;
|
|
if(isset($config['lua']['houseCleanOld'])) {
|
|
$cleanOldHouse = (int)(eval('return ' . $config['lua']['houseCleanOld'] . ';') / (24 * 60 * 60));
|
|
}
|
|
|
|
$housesSearch = false;
|
|
if(isset($_POST['town']) && isset($_POST['state']) && isset($_POST['order']) && (isset($_POST['type']) || !$db->hasColumn('houses', 'guild')))
|
|
{
|
|
$townName = $config['towns'][$_POST['town']];
|
|
$order = $_POST['order'];
|
|
$orderby = '`name`';
|
|
if(!empty($order))
|
|
{
|
|
if($order == 'size')
|
|
$orderby = '`size`';
|
|
else if($order == 'rent')
|
|
$orderby = '`rent`';
|
|
}
|
|
|
|
$town = 'town';
|
|
if($db->hasColumn('houses', 'town_id'))
|
|
$town = 'town_id';
|
|
else if($db->hasColumn('houses', 'townid'))
|
|
$town = 'townid';
|
|
|
|
$whereby = '`' . $town . '` = ' .(int)$_POST['town'];
|
|
$state = $_POST['state'];
|
|
if(!empty($state))
|
|
$whereby .= ' AND `owner` ' . ($state == 'free' ? '' : '!'). '= 0';
|
|
|
|
$type = isset($_POST['type']) ? $_POST['type'] : NULL;
|
|
if($type == 'guildhalls' && !$db->hasColumn('houses', 'guild'))
|
|
$type = 'all';
|
|
|
|
if (!empty($type) && $type != 'all')
|
|
{
|
|
$guildColumn = '';
|
|
if ($db->hasColumn('houses', 'guild')) {
|
|
$guildColumn = 'guild';
|
|
}
|
|
else if ($db->hasColumn('houses', 'guildid')) {
|
|
$guildColumn = 'guildid';
|
|
}
|
|
|
|
if($guildColumn !== '') {
|
|
$whereby .= ' AND `' . $guildColumn . '` ' . ($type == 'guildhalls' ? '!' : '') . '= 0';
|
|
}
|
|
}
|
|
|
|
$houses_info = $db->query('SELECT * FROM `houses` WHERE ' . $whereby. ' ORDER BY ' . $orderby);
|
|
|
|
$players_info = $db->query("SELECT `houses`.`id` AS `houseid` , `players`.`name` AS `ownername` FROM `houses` , `players` , `accounts` WHERE `players`.`id` = `houses`.`owner` AND `accounts`.`id` = `players`.`account_id`");
|
|
$players = array();
|
|
foreach($players_info->fetchAll() as $player)
|
|
$players[$player['houseid']] = array('name' => $player['ownername']);
|
|
|
|
$hasTilesColumn = $db->hasColumn('houses', 'tiles');
|
|
|
|
$houses = array();
|
|
foreach($houses_info->fetchAll() as $house)
|
|
{
|
|
$owner = isset($players[$house['id']]) ? $players[$house['id']] : array();
|
|
|
|
$houseRent = null;
|
|
if($db->hasColumn('houses', 'guild') && $house['guild'] == 1 && $house['owner'] != 0)
|
|
{
|
|
$guild = new OTS_Guild();
|
|
$guild->load($house['owner']);
|
|
$houseRent = 'Rented by ' . getGuildLink($guild->getName());
|
|
}
|
|
else
|
|
{
|
|
if(!empty($owner['name']))
|
|
$houseRent = 'Rented by ' . getPlayerLink($owner['name']);
|
|
else
|
|
$houseRent = 'Free';
|
|
}
|
|
|
|
$houses[] = array('owner' => $owner, 'name' => $house['name'], 'size' => ($hasTilesColumn ? $house['tiles'] : $house['size']), 'rent' => $house['rent'], 'rentedBy' => $houseRent);
|
|
}
|
|
|
|
$housesSearch = true;
|
|
}
|
|
|
|
$guild = $db->hasColumn('houses', 'guild') ? ' or guildhall' : '';
|
|
$twig->display('houses.html.twig', array(
|
|
'state' => $state,
|
|
'order' => $order,
|
|
'type' => $type,
|
|
'houseType' => $type == 'guildhalls' ? 'Guildhalls' : 'Houses and Flats',
|
|
'townName' => isset($townName) ? $townName : null,
|
|
'townId' => isset($_POST['town']) ? $_POST['town'] : null,
|
|
'guild' => $guild,
|
|
'cleanOldHouse' => isset($cleanOld) ? $cleanOld : null,
|
|
'housesSearch' => $housesSearch,
|
|
'houses' => isset($houses) ? $houses : null
|
|
));
|