mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-27 10:02:12 +00:00
There's a certain issue of people spoofing real byond links to admins. Now all links should come with a generated key that is validated when the Topic is run. Added DEBUG_ADMIN_HREFS to debug this system while we test it (Allows hrefs without tokens and complains about it in the logs) Just add [HrefToken()] as a parameter to all admin hrefs. Anything that ends up running through VV or Holder will be verified
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
/datum/admins/proc/create_object(mob/user)
|
|
var/static/create_object_html = null
|
|
if (!create_object_html)
|
|
var/objectjs = null
|
|
objectjs = jointext(typesof(/obj), ";")
|
|
create_object_html = file2text('html/create_object.html')
|
|
create_object_html = replacetext(create_object_html, "null /* object types */", "\"[objectjs]\"")
|
|
|
|
user << browse(replacetext(create_object_html, "/* ref src */", "\ref[src];[HrefToken()]"), "window=create_object;size=425x475")
|
|
|
|
/datum/admins/proc/quick_create_object(mob/user)
|
|
var/static/list/create_object_forms = list(
|
|
/obj, /obj/structure, /obj/machinery, /obj/effect,
|
|
/obj/item, /obj/item/clothing, /obj/item/stack, /obj/item/device,
|
|
/obj/item/reagent_containers, /obj/item/gun)
|
|
|
|
var/path = input("Select the path of the object you wish to create.", "Path", /obj) in create_object_forms
|
|
var/html_form = create_object_forms[path]
|
|
|
|
if (!html_form)
|
|
var/objectjs = jointext(typesof(path), ";")
|
|
html_form = file2text('html/create_object.html')
|
|
html_form = replacetext(html_form, "null /* object types */", "\"[objectjs]\"")
|
|
create_object_forms[path] = html_form
|
|
|
|
user << browse(replacetext(html_form, "/* ref src */", "\ref[src];[HrefToken()]"), "window=qco[path];size=425x475")
|