mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
Introduce a Developer staff level (proto flag 32, DB admin bit 8) that sits between admin and moderator: no kick/ban/warn/report/admin powers, but gets server log access via a new developer command container family (GET_SERVER_STATS, VIEWLOG_HISTORY) and an idle-timeout exemption. - Protocol: IsDeveloper flag, developer_commands.proto envelope, Command_GetServerStats/Command_GetLogHistory, Response_GetServerStats, Command_AdjustMod.should_be_developer - Servatrice: fail-closed developer dispatcher, uptime snapshot handler, shared log history handler reuse, bit-8 DB mapping - Client: burgundy pawn/badge/labels/sort order, prepareDeveloperCommand, minimal Developer stats tab, log tab access, promote/demote actions Took 24 minutes Took 18 seconds # Commit time for manual adjustment: # Took 15 minutes
19 lines
505 B
Protocol Buffer
19 lines
505 B
Protocol Buffer
syntax = "proto2";
|
|
import "response.proto";
|
|
|
|
message Response_GetServerStats {
|
|
extend Response {
|
|
optional Response_GetServerStats ext = 1220;
|
|
}
|
|
|
|
optional uint64 users_count = 1;
|
|
optional uint64 mods_count = 2;
|
|
optional uint64 games_count = 3;
|
|
|
|
// Traffic recorded during the last status update tick
|
|
optional uint64 tx_bytes = 4;
|
|
optional uint64 rx_bytes = 5;
|
|
|
|
optional uint64 uptime_secs = 6;
|
|
optional uint64 timest = 7; // unix timestamp of the snapshot
|
|
}
|