mirror of
https://github.com/friendica/friendica
synced 2025-01-09 22:44:44 +00:00
Fixed wrong reference to user.expire in Model\User::getActorName
- Update field documentation to prevent further confusion
This commit is contained in:
parent
c3cae0ae96
commit
6df187478d
4 changed files with 50 additions and 50 deletions
|
@ -80,7 +80,7 @@ CREATE TABLE IF NOT EXISTS `user` (
|
||||||
`pwdreset` varchar(255) COMMENT 'Password reset request token',
|
`pwdreset` varchar(255) COMMENT 'Password reset request token',
|
||||||
`pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
|
`pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
|
||||||
`maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
|
`maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
|
||||||
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
|
`expire` int unsigned NOT NULL DEFAULT 0 COMMENT 'Delay in days before deleting user-related posts. Scope is controlled by pConfig.',
|
||||||
`account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
|
`account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
|
||||||
`account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
|
`account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
|
||||||
|
|
|
@ -7,7 +7,7 @@ Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ------------------------ | --------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
| ------------------------ | --------------------------------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
|
||||||
| uid | sequential ID | mediumint unsigned | NO | PRI | NULL | auto_increment |
|
| uid | sequential ID | mediumint unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| parent-uid | The parent user that has full control about this user | mediumint unsigned | YES | | NULL | |
|
| parent-uid | The parent user that has full control about this user | mediumint unsigned | YES | | NULL | |
|
||||||
| guid | A unique identifier for this user | varchar(64) | NO | | | |
|
| guid | A unique identifier for this user | varchar(64) | NO | | | |
|
||||||
|
@ -42,7 +42,7 @@ Fields
|
||||||
| pwdreset | Password reset request token | varchar(255) | YES | | NULL | |
|
| pwdreset | Password reset request token | varchar(255) | YES | | NULL | |
|
||||||
| pwdreset_time | Timestamp of the last password reset request | datetime | YES | | NULL | |
|
| pwdreset_time | Timestamp of the last password reset request | datetime | YES | | NULL | |
|
||||||
| maxreq | | int unsigned | NO | | 10 | |
|
| maxreq | | int unsigned | NO | | 10 | |
|
||||||
| expire | | int unsigned | NO | | 0 | |
|
| expire | Delay in days before deleting user-related posts. Scope is controlled by pConfig. | int unsigned | NO | | 0 | |
|
||||||
| account_removed | if 1 the account is removed | boolean | NO | | 0 | |
|
| account_removed | if 1 the account is removed | boolean | NO | | 0 | |
|
||||||
| account_expired | | boolean | NO | | 0 | |
|
| account_expired | | boolean | NO | | 0 | |
|
||||||
| account_expires_on | timestamp when account expires and will be deleted | datetime | NO | | 0001-01-01 00:00:00 | |
|
| account_expires_on | timestamp when account expires and will be deleted | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||||
|
|
|
@ -265,7 +265,7 @@ class User
|
||||||
// List of possible actor names
|
// List of possible actor names
|
||||||
$possible_accounts = ['friendica', 'actor', 'system', 'internal'];
|
$possible_accounts = ['friendica', 'actor', 'system', 'internal'];
|
||||||
foreach ($possible_accounts as $name) {
|
foreach ($possible_accounts as $name) {
|
||||||
if (!DBA::exists('user', ['nickname' => $name, 'account_removed' => false, 'expire' => false]) &&
|
if (!DBA::exists('user', ['nickname' => $name, 'account_removed' => false, 'account_expired' => false]) &&
|
||||||
!DBA::exists('userd', ['username' => $name])) {
|
!DBA::exists('userd', ['username' => $name])) {
|
||||||
DI::config()->set('system', 'actor_name', $name);
|
DI::config()->set('system', 'actor_name', $name);
|
||||||
return $name;
|
return $name;
|
||||||
|
|
|
@ -136,7 +136,7 @@ return [
|
||||||
"pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
|
"pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
|
||||||
"pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
|
"pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
|
||||||
"maxreq" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
|
"maxreq" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
|
||||||
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
|
"expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Delay in days before deleting user-related posts. Scope is controlled by pConfig."],
|
||||||
"account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if 1 the account is removed"],
|
"account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if 1 the account is removed"],
|
||||||
"account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
"account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||||
"account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp when account expires and will be deleted"],
|
"account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp when account expires and will be deleted"],
|
||||||
|
|
Loading…
Reference in a new issue