mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 17:12:12 +00:00
* wip * wip2 * makes code actually compile on 511 + fixes * versioning * s * adds python conversion script, schema change and removes 'force ' from item_used_for_combat * fix to compile * forgot to actually commit this
76 lines
3.1 KiB
Plaintext
76 lines
3.1 KiB
Plaintext
//This proc allows download of past server logs saved within the data/logs/ folder.
|
|
//It works similarly to show-server-log.
|
|
/client/proc/getserverlog()
|
|
set name = ".getserverlog"
|
|
set desc = "Fetch logfiles from data/logs"
|
|
set category = null
|
|
|
|
var/path = browse_files("data/logs/")
|
|
if(!path)
|
|
return
|
|
|
|
if(file_spam_check())
|
|
return
|
|
|
|
message_admins("[key_name_admin(src)] accessed file: [path]")
|
|
//this is copypasta because making it a proc would mean locking out adminproccalls,
|
|
// and that system is buggy enough with false positives that I don't want to risk locking admins out of legit calls.
|
|
switch(alert("View (in game), Open (in your system's text editor), or Download file [path]?", "Log File Opening", "View", "Open", "Download"))
|
|
if ("View")
|
|
src << browse("<pre style='word-wrap: break-word;'>[html_encode(file2text(file(path)))]</pre>", list2params(list("window" = "viewfile.[path]")))
|
|
if ("Open")
|
|
src << run(file(path))
|
|
if ("Download")
|
|
src << ftp(file(path))
|
|
else
|
|
return
|
|
to_chat(src, "Attempting to send file, this may take a fair few minutes if the file is very large.")
|
|
return
|
|
|
|
|
|
//Other log stuff put here for the sake of organisation
|
|
|
|
//Shows today's server log
|
|
/datum/admins/proc/view_txt_log()
|
|
set category = "Admin"
|
|
set name = "Show Server Log"
|
|
set desc = "Shows server log for this round."
|
|
|
|
if(fexists("[GLOB.world_game_log]"))
|
|
switch(alert("View (in game), Open (in your system's text editor), or Download file [GLOB.world_game_log]?", "Log File Opening", "View", "Open", "Download"))
|
|
if ("View")
|
|
src << browse("<pre style='word-wrap: break-word;'>[html_encode(file2text(GLOB.world_game_log))]</pre>", list2params(list("window" = "viewfile.[GLOB.world_game_log]")))
|
|
if ("Open")
|
|
src << run(GLOB.world_game_log)
|
|
if ("Download")
|
|
src << ftp(GLOB.world_game_log)
|
|
else
|
|
return
|
|
else
|
|
to_chat(src, "<font color='red'>Server log not found, try using .getserverlog.</font>")
|
|
return
|
|
SSblackbox.record_feedback("tally", "admin_verb", 1, "Show Server Log") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
|
return
|
|
|
|
//Shows today's attack log
|
|
/datum/admins/proc/view_atk_log()
|
|
set category = "Admin"
|
|
set name = "Show Server Attack Log"
|
|
set desc = "Shows server attack log for this round."
|
|
|
|
if(fexists("[GLOB.world_attack_log]"))
|
|
switch(alert("View (in game), Open (in your system's text editor), or Download file [GLOB.world_attack_log]?", "Log File Opening", "View", "Open", "Download"))
|
|
if ("View")
|
|
src << browse("<pre style='word-wrap: break-word;'>[html_encode(file2text(GLOB.world_attack_log))]</pre>", list2params(list("window" = "viewfile.[GLOB.world_attack_log]")))
|
|
if ("Open")
|
|
src << run(GLOB.world_attack_log)
|
|
if ("Download")
|
|
src << ftp(GLOB.world_attack_log)
|
|
else
|
|
return
|
|
else
|
|
to_chat(src, "<font color='red'>Server attack log not found, try using .getserverlog.</font>")
|
|
return
|
|
SSblackbox.record_feedback("tally", "admin_verb", 1, "Show Server Attack log") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
|
return
|