19 declare(strict_types=1);
88 $this->db = $DIC->database();
90 $this->server_id = $a_server_id;
103 if (!isset(self::$instances[$a_server_id .
'_' . $mid])) {
104 return self::$instances[$a_server_id .
'_' .
$mid] =
new self($a_server_id,
$mid);
106 return self::$instances[$a_server_id .
'_' .
$mid];
130 $this->export = $a_status;
140 $this->
import = $a_status;
150 if ($a_type !== self::IMPORT_UNCHANGED) {
151 $this->import_type = $a_type;
162 $this->title = $a_title;
177 $this->cname = $a_name;
187 $this->token = $a_stat;
192 $this->export_types = $a_types;
207 $this->username_placeholders = $a_username_placeholders;
222 $this->incoming_local_accounts = $a_status;
237 $this->outgoing_auth_modes = $auth_modes;
252 static function (
string $auth_mode):
bool {
253 return $auth_mode !== self::OUTGOING_AUTH_MODE_DEFAULT;
266 $this->import_types = $a_types;
282 if ($auth_mode === self::OUTGOING_AUTH_MODE_DEFAULT) {
287 !stristr($placeholder, self::LOGIN_PLACEHOLDER) &&
288 !stristr($placeholder, self::EXTERNAL_ACCOUNT_PLACEHOLDER)
290 return self::ERR_MISSING_USERNAME_PLACEHOLDER;
293 return self::VALIDATION_OK;
305 $query =
'UPDATE ecs_part_settings ' .
307 'sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
', ' .
308 'mid = ' . $this->db->quote($this->
getMid(),
'integer') .
', ' .
309 'export = ' . $this->db->quote((
int) $this->
isExportEnabled(),
'integer') .
', ' .
310 'import = ' . $this->db->quote((
int) $this->
isImportEnabled(),
'integer') .
', ' .
311 'import_type = ' . $this->db->quote($this->
getImportType(),
'integer') .
', ' .
312 'title = ' . $this->db->quote($this->
getTitle(),
'text') .
', ' .
314 'token = ' . $this->db->quote($this->
isTokenEnabled(),
'integer') .
', ' .
315 'export_types = ' . $this->db->quote(serialize($this->
getExportTypes()),
'text') .
', ' .
321 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
322 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
323 $this->db->manipulate($query);
329 $query =
'INSERT INTO ecs_part_settings ' .
330 '(sid,mid,export,import,import_type,title,cname,token,export_types, import_types, username_placeholders, incoming_auth_type, incoming_local_accounts, outgoing_auth_modes) ' .
332 $this->db->quote($this->
getServerId(),
'integer') .
', ' .
333 $this->db->quote($this->
getMid(),
'integer') .
', ' .
337 $this->db->quote($this->
getTitle(),
'text') .
', ' .
340 $this->db->quote(serialize($this->
getExportTypes()),
'text') .
', ' .
341 $this->db->quote(serialize($this->
getImportTypes()),
'text') .
' ' .
342 $this->db->quote(serialize($this->
getImportTypes()),
'text') .
', ' .
348 $this->db->manipulate($query);
355 public function delete():
bool 357 $query =
'DELETE FROM ecs_part_settings ' .
358 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
359 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
360 $this->db->manipulate($query);
369 $query =
'SELECT * FROM ecs_part_settings ' .
370 'WHERE sid = ' . $this->db->quote($this->
getServerId(),
'integer') .
' ' .
371 'AND mid = ' . $this->db->quote($this->
getMid(),
'integer');
373 $res = $this->db->query($query);
375 $this->
exists = (
$res->numRows() ? true :
false);
384 $this->
setExportTypes((array) unserialize($row->export_types, [
'allowed_classes' =>
true]));
385 $this->
setImportTypes((array) unserialize($row->import_types, [
'allowed_classes' =>
true]));
389 $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)