Extension:CheckUser/cu private event table

MediaWiki version:
1.40

A table for the CheckUser extension used to store log entries without an associated log ID from the recentchanges table and other selected events with the IP and UA string used to make the action. See also cu_changes and cu_log_event .

In 1.40, this table is unused but is added to the database. Future versions will introduce usage of this table.

Fields edit

cupe_id edit

Primary key, used to uniquely identify a cu_private_event row.

cupe_namespace edit

Similar to rc_namespace . When pages are renamed, this namespace does not change.

cupe_title edit

Similar to rc_title . When pages are renamed, this title does not change.

cupe_actor edit

Stores the actor_id for the user who performed the action that created this row. Similar to rc_user . The value will be NULL if temporary accounts are enabled and the performer is an IP address. In this case, the performer of the action is the IP address in the cupe_id column.

cupe_log_type edit

The type of this log entry. Similar to rc_log_type and log_type .

cupe_log_action edit

The action that this log entry comes under. Similar to rc_log_action and log_action .

cupe_params edit

Similar to rc_params and log_params .

cupe_comment_id edit

References a row in the comment table with the comment_id as the value stored in this column. Similar to rc_comment_id and log_comment_id .

cupe_page edit

Key to page_id . Used to keep links working after moves while keeping the title and namespace of this change the same in the changes list. If not applicable (and also by default), the value of this column is 0.

cupe_timestamp edit

Timestamp for the event that is stored in the cu_private_event table, in the timestamp format MediaWiki uses everywhere in the database: yyyymmddhhmmss.

cupe_ip edit

The IP address used to make the edit.

cupe_ip_hex edit

The IP address in cuc_ip as hexadecimal.

cupe_xff edit

The entire XFF header. If not provided or if all XFF IPs are varnish servers, this will be the empty string.

cupe_xff_hex edit

If all XFF IPs are not varnish servers, then this contains the best guess of the XFF IP in the XFF header as hexadecimal.

cupe_agent edit

The User agent header provided in the request that made the action being stored in this row.

cupe_private edit

Private data that is stored using encryption. Must have a public key defined in the server configuration using $wgCUPublicKey. Otherwise is left empty.

Schema edit

MediaWiki version:
1.42
mysql> describe cu_private_event;
+-----------------+---------------------+------+-----+---------+----------------+
| Field           | Type                | Null | Key | Default | Extra          |
+-----------------+---------------------+------+-----+---------+----------------+
| cupe_id         | bigint(20) unsigned | NO   | PRI | NULL    | auto_increment |
| cupe_namespace  | int(11)             | NO   |     | 0       |                |
| cupe_title      | varbinary(255)      | NO   |     |         |                |
| cupe_actor      | bigint(20) unsigned | YES  | MUL | 0       |                |
| cupe_log_type   | varbinary(32)       | NO   |     |         |                |
| cupe_log_action | varbinary(32)       | NO   |     |         |                |
| cupe_params     | blob                | NO   |     | NULL    |                |
| cupe_comment_id | bigint(20) unsigned | NO   |     | 0       |                |
| cupe_page       | int(10) unsigned    | NO   |     | 0       |                |
| cupe_timestamp  | binary(14)          | NO   | MUL | NULL    |                |
| cupe_ip         | varbinary(255)      | YES  |     |         |                |
| cupe_ip_hex     | varbinary(255)      | YES  | MUL | NULL    |                |
| cupe_xff        | varbinary(255)      | YES  |     |         |                |
| cupe_xff_hex    | varbinary(255)      | YES  | MUL | NULL    |                |
| cupe_agent      | varbinary(255)      | YES  |     | NULL    |                |
| cupe_private    | mediumblob          | YES  |     | NULL    |                |
+-----------------+---------------------+------+-----+---------+----------------+
MediaWiki version:
1.41
mysql> describe cu_private_event;
+-----------------+---------------------+------+-----+---------+----------------+
| Field           | Type                | Null | Key | Default | Extra          |
+-----------------+---------------------+------+-----+---------+----------------+
| cupe_id         | bigint(20) unsigned | NO   | PRI | NULL    | auto_increment |
| cupe_namespace  | int(11)             | NO   |     | 0       |                |
| cupe_title      | varbinary(255)      | NO   |     |         |                |
| cupe_actor      | bigint(20) unsigned | NO   | MUL | 0       |                |
| cupe_log_type   | varbinary(32)       | NO   |     |         |                |
| cupe_log_action | varbinary(32)       | NO   |     |         |                |
| cupe_params     | blob                | NO   |     | NULL    |                |
| cupe_comment_id | bigint(20) unsigned | NO   |     | 0       |                |
| cupe_page       | int(10) unsigned    | NO   |     | 0       |                |
| cupe_timestamp  | binary(14)          | NO   | MUL | NULL    |                |
| cupe_ip         | varbinary(255)      | YES  |     |         |                |
| cupe_ip_hex     | varbinary(255)      | YES  | MUL | NULL    |                |
| cupe_xff        | varbinary(255)      | YES  |     |         |                |
| cupe_xff_hex    | varbinary(255)      | YES  | MUL | NULL    |                |
| cupe_agent      | varbinary(255)      | YES  |     | NULL    |                |
| cupe_private    | mediumblob          | YES  |     | NULL    |                |
+-----------------+---------------------+------+-----+---------+----------------+