MediaWiki REL1_31
|
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. | |
Static Protected Attributes | |
static array | $formerTempTables = [] |
Fields that formerly used $tempTables Key is '$key', value is the MediaWiki version in which it was removed from $tempTables. | |
static array | $tempTables |
Define fields that use temporary tables for transitional purposes Keys are '$key', values are arrays with four 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 ) |
Language | $lang | Language to use for comment truncation. Defaults to $wgContLang. |
int | $migrationStage | One of the MIGRATION_* constants |
Definition at line 104 of file CommentStore.php.
References $lang.
CommentStore::createComment | ( | IDatabase | $dbw, |
$comment, | |||
array | $data = null ) |
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 457 of file CommentStore.php.
References Wikimedia\Rdbms\IDatabase\insert(), Wikimedia\Rdbms\IDatabase\insertId(), MIGRATION_OLD, Wikimedia\Rdbms\IDatabase\selectField(), true, and wfMessage().
Referenced by insertInternal().
|
staticprotected |
Decode a message that was encoded by self::encodeMessage()
array | $data |
Definition at line 668 of file CommentStore.php.
|
staticprotected |
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 | $row | Result row. |
bool | $fallback | If true, fall back as well as possible instead of throwing an exception. |
Definition at line 388 of file CommentStore.php.
References $fallback, $key, getCommentInternal(), getKey(), and key.
|
private |
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 261 of file CommentStore.php.
References $fallback, $key, $t, array(), MIGRATION_NEW, MIGRATION_OLD, object, and wfLogWarning().
Referenced by getComment(), and getCommentLegacy().
CommentStore::getCommentLegacy | ( | IDatabase | $db, |
$key, | |||
$row = null, | |||
$fallback = false ) |
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 | $row | Result row. |
bool | $fallback | If true, fall back as well as possible instead of throwing an exception. |
Definition at line 422 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 | $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 | $key | A key such as "rev_comment" identifying the comment field being fetched. |
Definition at line 202 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 687 of file CommentStore.php.
CommentStore::insert | ( | IDatabase | $dbw, |
$key, | |||
$comment = null, | |||
$data = null ) |
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 | $comment | As for self::createComment() |
array | null | $data | As for self::createComment() |
Definition at line 574 of file CommentStore.php.
References $key, insertInternal(), key, and list.
|
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 526 of file CommentStore.php.
References $key, $t, createComment(), Wikimedia\Rdbms\IDatabase\insert(), and MIGRATION_WRITE_BOTH.
Referenced by insert(), and insertWithTempTable().
CommentStore::insertWithTempTable | ( | IDatabase | $dbw, |
$key, | |||
$comment = null, | |||
$data = null ) |
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 | $comment | As for self::createComment() |
array | null | $data | As for self::createComment() |
Definition at line 616 of file CommentStore.php.
References $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, $wgCommentTableSchemaMigrationStage, and $wgContLang.
|
staticprotected |
Fields that formerly used $tempTables Key is '$key', value is the MediaWiki version in which it was removed from $tempTables.
Definition at line 81 of file CommentStore.php.
|
protected |
Cache for self::getJoin()
Definition at line 94 of file CommentStore.php.
|
protected |
Definition at line 88 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 97 of file CommentStore.php.
|
protected |
One of the MIGRATION_* constants.
Definition at line 91 of file CommentStore.php.
|
staticprotected |
Define fields that use temporary tables for transitional purposes Keys are '$key', values are arrays with four fields:
Definition at line 61 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.