MediaWiki REL1_33
|
CommentStore handles storage of comments (edit summaries, log reasons, etc) in the database. More...
Public Member Functions | |
__construct (Language $lang, $migrationStage) | |
createComment (IDatabase $dbw, $comment, array $data=null) | |
Create a new CommentStoreComment, inserting it into the database if necessary. | |
getComment ( $key, $row=null, $fallback=false) | |
Extract the comment from a row. | |
getCommentLegacy (IDatabase $db, $key, $row=null, $fallback=false) | |
Extract the comment from a row, with legacy lookups. | |
getFields ( $key=null) | |
Get SELECT fields for the comment key. | |
getJoin ( $key=null) | |
Get SELECT fields and joins for the comment key. | |
insert (IDatabase $dbw, $key, $comment=null, $data=null) | |
Insert a comment in preparation for a row that references it. | |
insertWithTempTable (IDatabase $dbw, $key, $comment=null, $data=null) | |
Insert a comment in a temporary table in preparation for a row that references it. | |
Static Public Member Functions | |
static | getStore () |
static | hash ( $text, $data) |
Hashing function for comment storage. | |
static | newKey ( $key) |
Static constructor for easier chaining. | |
Public Attributes | |
const | COMMENT_CHARACTER_LIMIT = 500 |
Maximum length of a comment in UTF-8 characters. | |
const | MAX_COMMENT_LENGTH = 65535 |
Maximum length of a comment in bytes. | |
const | MAX_DATA_LENGTH = 65535 |
Maximum length of serialized data in bytes. | |
Static Protected Member Functions | |
static | decodeMessage ( $data) |
Decode a message that was encoded by self::encodeMessage() | |
static | encodeMessage (Message $msg) |
Encode a Message as a PHP data structure. | |
Protected Attributes | |
array[] | $joinCache = [] |
Cache for self::getJoin() | |
string null | $key = null |
Language | $lang |
Language to use for comment truncation. | |
int | $stage |
One of the MIGRATION_* constants. | |
array | $tempTables |
Define fields that use temporary tables for transitional purposes Keys are '$key', values are arrays with these possible fields: | |
Private Member Functions | |
getCommentInternal (IDatabase $db=null, $key, $row, $fallback=false) | |
Extract the comment from a row. | |
getKey ( $methodKey=null) | |
Compat method allowing use of self::newKey until removed. | |
insertInternal (IDatabase $dbw, $key, $comment, $data) | |
Implementation for self::insert() and self::insertWithTempTable() | |
CommentStore handles storage of comments (edit summaries, log reasons, etc) in the database.
Definition at line 31 of file CommentStore.php.
CommentStore::__construct | ( | Language | $lang, |
$migrationStage | |||
) |
Create a new CommentStoreComment, inserting it into the database if necessary.
If a comment is going to be passed to self::insert()
or the like multiple times, it will be more efficient to pass a CommentStoreComment once rather than making self::insert()
do it every time through.
$comment->id
if it's not already set. If $comment->id
is already set, it will not be verified that the specified comment actually exists or that it corresponds to the comment text, message, and/or data in the CommentStoreComment. IDatabase | $dbw | Database handle to insert on. Unused if $comment is a CommentStoreComment and $comment->id is set. |
string | Message | CommentStoreComment | $comment | Comment text or Message object, or a CommentStoreComment. |
array | null | $data | Structured data to store. Keys beginning with '_' are reserved. Ignored if $comment is a CommentStoreComment. |
Definition at line 471 of file CommentStore.php.
References $data, Wikimedia\Rdbms\IDatabase\insert(), Wikimedia\Rdbms\IDatabase\insertId(), MIGRATION_OLD, Wikimedia\Rdbms\IDatabase\selectField(), and true.
Referenced by insertInternal().
|
staticprotected |
|
staticprotected |
Encode a Message as a PHP data structure.
Message | $msg |
Definition at line 659 of file CommentStore.php.
References $key, $params, as, Message\getKey(), Message\getKeysToTry(), and Message\getParams().
CommentStore::getComment | ( | $key, | |
$row = null , |
|||
$fallback = false |
|||
) |
Extract the comment from a row.
Use self::getJoin()
to ensure the row contains the needed data.
If you need to fake a comment in a row for some reason, set fields {$key}_text
(string) and {$key}_data
(JSON string or null).
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
object | array | null | $row | Result row. |
bool | $fallback | If true, fall back as well as possible instead of throwing an exception. |
Definition at line 402 of file CommentStore.php.
References $fallback, $key, getCommentInternal(), getKey(), and key.
Extract the comment from a row.
Shared implementation for getComment() and getCommentLegacy()
IDatabase | null | $db | Database handle for getCommentLegacy(), or null for getComment() |
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
object | array | $row | |
bool | $fallback |
Definition at line 279 of file CommentStore.php.
References $data, $fallback, $key, $t, array(), as, MIGRATION_NEW, MIGRATION_OLD, object, and wfLogWarning().
Referenced by getComment(), and getCommentLegacy().
Extract the comment from a row, with legacy lookups.
If $row
might have been generated using self::getFields()
rather than self::getJoin()
, use this. Prefer self::getComment()
if you know callers used self::getJoin()
for the row fetch.
If you need to fake a comment in a row for some reason, set fields {$key}_text
(string) and {$key}_data
(JSON string or null).
IDatabase | $db | Database handle to use for lookup |
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
object | array | null | $row | Result row. |
bool | $fallback | If true, fall back as well as possible instead of throwing an exception. |
Definition at line 436 of file CommentStore.php.
References $fallback, $key, getCommentInternal(), getKey(), and key.
CommentStore::getFields | ( | $key = null | ) |
Get SELECT fields for the comment key.
Each resulting row should be passed to self::getCommentLegacy()
to get the actual comment.
self::getJoin()
instead.string | null | $key | A key such as "rev_comment" identifying the comment field being fetched. |
$vars
to IDatabase->select()
. All fields are aliased, so +
is safe to use. Definition at line 166 of file CommentStore.php.
References $key, getKey(), MIGRATION_NEW, and MIGRATION_OLD.
CommentStore::getJoin | ( | $key = null | ) |
Get SELECT fields and joins for the comment key.
Each resulting row should be passed to self::getComment()
to get the actual comment.
string | null | $key | A key such as "rev_comment" identifying the comment field being fetched. |
$table
to IDatabase->select()
$vars
to IDatabase->select()
$join_conds
to IDatabase->select()
All tables, fields, and joins are aliased, so +
is safe to use. @phan-return array{tables:string[],fields:string[],joins:array} Definition at line 207 of file CommentStore.php.
References $key, $t, $tables, getKey(), MIGRATION_NEW, and MIGRATION_OLD.
|
private |
Compat method allowing use of self::newKey until removed.
string | null | $methodKey |
InvalidArgumentException |
Definition at line 140 of file CommentStore.php.
Referenced by getComment(), getCommentLegacy(), getFields(), getJoin(), and insertWithTempTable().
|
static |
Definition at line 130 of file CommentStore.php.
|
static |
Hashing function for comment storage.
string | $text | Comment text |
string | null | $data | Comment data |
Definition at line 697 of file CommentStore.php.
References $data.
Insert a comment in preparation for a row that references it.
IDatabase | $dbw | Database handle to insert on |
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
string | Message | CommentStoreComment | null | $comment | As for self::createComment() |
array | null | $data | As for self::createComment() |
Definition at line 582 of file CommentStore.php.
References $data, $key, insertInternal(), key, list, MIGRATION_NEW, and MIGRATION_WRITE_NEW.
|
private |
Implementation for self::insert()
and self::insertWithTempTable()
IDatabase | $dbw | |
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
string | Message | CommentStoreComment | $comment | |
array | null | $data |
Definition at line 531 of file CommentStore.php.
References $data, $key, $t, createComment(), Wikimedia\Rdbms\IDatabase\insert(), MIGRATION_NEW, MIGRATION_WRITE_BOTH, and use.
Referenced by insert(), and insertWithTempTable().
Insert a comment in a temporary table in preparation for a row that references it.
This is currently needed for "rev_comment" and "img_description". In the future that requirement will be removed.
IDatabase | $dbw | Database handle to insert on |
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
string | Message | CommentStoreComment | null | $comment | As for self::createComment() |
array | null | $data | As for self::createComment() |
Definition at line 626 of file CommentStore.php.
References $data, $key, getKey(), insertInternal(), key, list, and wfDeprecated().
|
static |
Static constructor for easier chaining.
string | $key | A key such as "rev_comment" identifying the comment field being fetched. |
Definition at line 116 of file CommentStore.php.
References $key, MIGRATION_NEW, and wfDeprecated().
|
protected |
Cache for self::getJoin()
Definition at line 93 of file CommentStore.php.
Definition at line 83 of file CommentStore.php.
Referenced by decodeMessage(), encodeMessage(), getComment(), getCommentInternal(), getCommentLegacy(), getFields(), getJoin(), getKey(), insert(), insertInternal(), insertWithTempTable(), and newKey().
|
protected |
Language to use for comment truncation.
Definition at line 96 of file CommentStore.php.
|
protected |
One of the MIGRATION_* constants.
Definition at line 90 of file CommentStore.php.
|
protected |
Define fields that use temporary tables for transitional purposes Keys are '$key', values are arrays with these possible fields:
Definition at line 63 of file CommentStore.php.
const CommentStore::COMMENT_CHARACTER_LIMIT = 500 |
Maximum length of a comment in UTF-8 characters.
Longer comments will be truncated.
Definition at line 37 of file CommentStore.php.
const CommentStore::MAX_COMMENT_LENGTH = 65535 |
Maximum length of a comment in bytes.
Longer comments will be truncated.
Definition at line 44 of file CommentStore.php.
const CommentStore::MAX_DATA_LENGTH = 65535 |
Maximum length of serialized data in bytes.
Longer data will result in an exception.
Definition at line 51 of file CommentStore.php.