18 declare(strict_types=1);
87 $this->db = $DIC->database();
89 $this->server_id = $a_server_id;
102 if (!isset(self::$instances[$a_server_id .
'_' . $mid])) {
103 return self::$instances[$a_server_id .
'_' .
$mid] =
new self($a_server_id,
$mid);
105 return self::$instances[$a_server_id .
'_' .
$mid];
129 $this->export = $a_status;
139 $this->
import = $a_status;
149 if ($a_type !== self::IMPORT_UNCHANGED) {
150 $this->import_type = $a_type;
161 $this->title = $a_title;
176 $this->cname = $a_name;
186 $this->token = $a_stat;
191 $this->export_types = $a_types;
206 $this->username_placeholders = $a_username_placeholders;
221 $this->incoming_local_accounts = $a_status;
236 $this->outgoing_auth_modes = $auth_modes;
251 static function (
string $auth_mode):
bool {
252 return $auth_mode !== self::OUTGOING_AUTH_MODE_DEFAULT;
265 $this->import_types = $a_types;
281 if ($auth_mode === self::OUTGOING_AUTH_MODE_DEFAULT) {
286 !stristr($placeholder, self::LOGIN_PLACEHOLDER) &&
287 !stristr($placeholder, self::EXTERNAL_ACCOUNT_PLACEHOLDER)
289 return self::ERR_MISSING_USERNAME_PLACEHOLDER;
292 return self::VALIDATION_OK;
304 $query =
'UPDATE ecs_part_settings ' .
306 'sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
', ' .
307 'mid = ' . $this->db->quote($this->
getMid(),
'integer') .
', ' .
308 'export = ' . $this->db->quote((
int) $this->
isExportEnabled(),
'integer') .
', ' .
309 'import = ' . $this->db->quote((
int) $this->
isImportEnabled(),
'integer') .
', ' .
310 'import_type = ' . $this->db->quote($this->
getImportType(),
'integer') .
', ' .
311 'title = ' . $this->db->quote($this->
getTitle(),
'text') .
', ' .
313 'token = ' . $this->db->quote($this->
isTokenEnabled(),
'integer') .
', ' .
314 'export_types = ' . $this->db->quote(serialize($this->
getExportTypes()),
'text') .
', ' .
320 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
321 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
322 $this->db->manipulate(
$query);
328 $query =
'INSERT INTO ecs_part_settings ' .
329 '(sid,mid,export,import,import_type,title,cname,token,export_types, import_types, username_placeholders, incoming_auth_type, incoming_local_accounts, outgoing_auth_modes) ' .
331 $this->db->quote($this->
getServerId(),
'integer') .
', ' .
332 $this->db->quote($this->
getMid(),
'integer') .
', ' .
336 $this->db->quote($this->
getTitle(),
'text') .
', ' .
339 $this->db->quote(serialize($this->
getExportTypes()),
'text') .
', ' .
340 $this->db->quote(serialize($this->
getImportTypes()),
'text') .
' ' .
341 $this->db->quote(serialize($this->
getImportTypes()),
'text') .
', ' .
347 $this->db->manipulate(
$query);
354 public function delete():
bool 356 $query =
'DELETE FROM ecs_part_settings ' .
357 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
358 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
359 $this->db->manipulate(
$query);
368 $query =
'SELECT * FROM ecs_part_settings ' .
369 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
370 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
374 $this->
exists = (
$res->numRows() ? true :
false);
383 $this->
setExportTypes((array) unserialize($row->export_types, [
'allowed_classes' =>
true]));
384 $this->
setImportTypes((array) unserialize($row->import_types, [
'allowed_classes' =>
true]));
388 $this->
setOutgoingAuthModes((array) unserialize((
string) $row->outgoing_auth_modes, [
'allowed_classes' =>
true]));
static getInstance(int $a_server_id, int $mid)
Get instance by server id and mid.
setImportTypes(array $a_types)
enableExport(bool $a_status)
enableToken(bool $a_stat)
getOutgoingUsernamePlaceholders()
enableImport(bool $a_status)
const INCOMING_AUTH_TYPE_LOGIN_PAGE
getOutgoingExternalAuthModes()
setExportTypes(array $a_types)
array $username_placeholders
setCommunityName(string $a_name)
update()
Update Calls create automatically when no entry exists.
const ERR_MISSING_USERNAME_PLACEHOLDER
array $outgoing_auth_modes
isOutgoingAuthModeEnabled(string $auth_mode)
setOutgoingAuthModes(array $auth_modes)
areIncomingLocalAccountsSupported()
setIncomingAuthType(int $incoming_auth_type)
const INCOMING_AUTH_TYPE_INACTIVE
const OUTGOING_AUTH_MODE_DEFAULT
setOutgoingUsernamePlaceholders(array $a_username_placeholders)
enableIncomingLocalAccounts(bool $a_status)
getServerId()
Get server id.
const EXTERNAL_ACCOUNT_PLACEHOLDER
const INCOMING_AUTH_TYPE_SHIBBOLETH
bool $incoming_local_accounts
getOutgoingUsernamePlaceholderByAuthMode(string $auth_mode)
setTitle(string $a_title)
__construct(int $a_server_id, int $mid)
setImportType(int $a_type)