142 lines
4.5 KiB
PHP
142 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace Froxlor\UI\Callbacks;
|
|
|
|
use Froxlor\FileDir;
|
|
use Froxlor\Settings;
|
|
use Froxlor\UI\Panel\UI;
|
|
use Froxlor\Domain\Domain as DDomain;
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Froxlor\UI\Callbacks
|
|
*
|
|
*/
|
|
class Domain
|
|
{
|
|
public static function domainWithCustomerLink(array $attributes)
|
|
{
|
|
$linker = UI::getLinker();
|
|
$result = '<a href="https://' . $attributes['data'] . '" target="_blank">' . $attributes['data'] . '</a>';
|
|
$result .= ' (<a href="' . $linker->getLink([
|
|
'section' => 'customers',
|
|
'page' => 'customers',
|
|
'action' => 'su',
|
|
'sort' => $attributes['fields']['loginname'],
|
|
'id' => $attributes['fields']['customerid'],
|
|
]) . '">' . $attributes['fields']['loginname'] . '</a>)';
|
|
return $result;
|
|
}
|
|
|
|
public static function domainTarget(array $attributes)
|
|
{
|
|
if (empty($attributes['fields']['aliasdomain'])) {
|
|
// path or redirect
|
|
if (preg_match('/^https?\:\/\//', $attributes['fields']['documentroot'])) {
|
|
return [
|
|
'macro' => 'link',
|
|
'data' => [
|
|
'text' => $attributes['fields']['documentroot'],
|
|
'href' => $attributes['fields']['documentroot'],
|
|
'target' => '_blank'
|
|
]
|
|
];
|
|
} else {
|
|
// show docroot nicely
|
|
if (strpos($attributes['fields']['documentroot'], UI::getCurrentUser()['documentroot']) === 0) {
|
|
$attributes['fields']['documentroot'] = FileDir::makeCorrectDir(str_replace(UI::getCurrentUser()['documentroot'], "/", $attributes['fields']['documentroot']));
|
|
}
|
|
return $attributes['fields']['documentroot'];
|
|
}
|
|
}
|
|
return UI::getLng('domains.aliasdomain') . ' ' . $attributes['fields']['aliasdomain'];
|
|
}
|
|
|
|
public static function domainExternalLink(array $attributes)
|
|
{
|
|
return '<a href="http://' . $attributes['data'] . '" target="_blank">' . $attributes['data'] . '</a>';
|
|
}
|
|
|
|
public static function canEdit(array $attributes): bool
|
|
{
|
|
return (bool)$attributes['fields']['caneditdomain'];
|
|
}
|
|
|
|
public static function canViewLogs(array $attributes): bool
|
|
{
|
|
if ((int) UI::getCurrentUser()['adminsession'] == 0 && (bool)UI::getCurrentUser()['logviewenabled']) {
|
|
return true;
|
|
} elseif ((int) UI::getCurrentUser()['adminsession'] == 1 && (int)$attributes['fields']['email_only'] == 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static function canDelete(array $attributes): bool
|
|
{
|
|
return $attributes['fields']['parentdomainid'] != '0'
|
|
&& empty($attributes['fields']['domainaliasid']);
|
|
}
|
|
|
|
public static function adminCanDelete(array $attributes): bool
|
|
{
|
|
return $attributes['fields']['id'] != Settings::Get('system.hostname_id')
|
|
&& empty($attributes['fields']['domainaliasid'])
|
|
&& $attributes['fields']['standardsubdomain'] != $attributes['fields']['id'];
|
|
}
|
|
|
|
public static function canEditDNS(array $attributes): bool
|
|
{
|
|
return $attributes['fields']['isbinddomain'] == '1'
|
|
&& UI::getCurrentUser()['dnsenabled'] == '1'
|
|
&& $attributes['fields']['caneditdomain'] == '1'
|
|
&& Settings::Get('system.bind_enable') == '1'
|
|
&& Settings::Get('system.dnsenabled') == '1';
|
|
}
|
|
|
|
public static function adminCanEditDNS(array $attributes): bool
|
|
{
|
|
return $attributes['fields']['isbinddomain'] == '1'
|
|
&& Settings::Get('system.bind_enable') == '1'
|
|
&& Settings::Get('system.dnsenabled') == '1';
|
|
}
|
|
|
|
public static function hasLetsEncryptActivated(array $attributes): bool
|
|
{
|
|
return ((bool) $attributes['fields']['letsencrypt'] && (int)$attributes['fields']['email_only'] == 0);
|
|
}
|
|
|
|
public static function canEditSSL(array $attributes): bool
|
|
{
|
|
if (
|
|
Settings::Get('system.use_ssl') == '1'
|
|
&& DDomain::domainHasSslIpPort($attributes['fields']['id'])
|
|
&& (int)$attributes['fields']['caneditdomain'] == 1
|
|
&& (int)$attributes['fields']['letsencrypt'] == 0
|
|
&& (int)$attributes['fields']['email_only'] == 0
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static function canEditAlias(array $attributes): bool
|
|
{
|
|
return !empty($attributes['fields']['domainaliasid']);
|
|
}
|
|
|
|
public static function isAssigned(array $attributes): bool
|
|
{
|
|
return ($attributes['fields']['parentdomainid'] == 0 && empty($attributes['fields']['domainaliasid']));
|
|
}
|
|
}
|