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
48 lines
1.1 KiB
Protocol Buffer
48 lines
1.1 KiB
Protocol Buffer
syntax = "proto2";
|
|
message AdminCommand {
|
|
enum AdminCommandType {
|
|
UPDATE_SERVER_MESSAGE = 1000;
|
|
SHUTDOWN_SERVER = 1001;
|
|
RELOAD_CONFIG = 1002;
|
|
ADJUST_MOD = 1003;
|
|
RESET_USER_PASSWORD = 1016;
|
|
}
|
|
extensions 100 to max;
|
|
}
|
|
|
|
message Command_UpdateServerMessage {
|
|
extend AdminCommand {
|
|
optional Command_UpdateServerMessage ext = 1000;
|
|
}
|
|
}
|
|
|
|
message Command_ShutdownServer {
|
|
extend AdminCommand {
|
|
optional Command_ShutdownServer ext = 1001;
|
|
}
|
|
optional string reason = 1;
|
|
optional uint32 minutes = 2;
|
|
}
|
|
|
|
message Command_ReloadConfig {
|
|
extend AdminCommand {
|
|
optional Command_ReloadConfig ext = 1002;
|
|
}
|
|
}
|
|
|
|
message Command_AdjustMod {
|
|
extend AdminCommand {
|
|
optional Command_AdjustMod ext = 1003;
|
|
}
|
|
required string user_name = 1;
|
|
optional bool should_be_mod = 2;
|
|
optional bool should_be_judge = 3;
|
|
optional bool should_be_developer = 4;
|
|
}
|
|
|
|
message Command_ResetUserPassword {
|
|
extend AdminCommand {
|
|
optional Command_ResetUserPassword ext = 1016;
|
|
}
|
|
optional string user_name = 1;
|
|
}
|