mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
61 lines
2.7 KiB
Plaintext
61 lines
2.7 KiB
Plaintext
/datum/tgs_api/v5/proc/ListCustomCommands()
|
|
var/results = list()
|
|
custom_commands = list()
|
|
for(var/I in typesof(/datum/tgs_chat_command) - /datum/tgs_chat_command)
|
|
var/datum/tgs_chat_command/stc = new I
|
|
if(stc.ignore_type == I)
|
|
continue
|
|
|
|
var/command_name = stc.name
|
|
if(!command_name || findtext(command_name, " ") || findtext(command_name, "'") || findtext(command_name, "\""))
|
|
TGS_ERROR_LOG("Custom command [command_name] ([I]) can't be used as it is empty or contains illegal characters!")
|
|
continue
|
|
|
|
if(results[command_name])
|
|
var/datum/other = custom_commands[command_name]
|
|
TGS_ERROR_LOG("Custom commands [other.type] and [I] have the same name (\"[command_name]\"), only [other.type] will be available!")
|
|
continue
|
|
results += list(list(DMAPI5_CUSTOM_CHAT_COMMAND_NAME = command_name, DMAPI5_CUSTOM_CHAT_COMMAND_HELP_TEXT = stc.help_text, DMAPI5_CUSTOM_CHAT_COMMAND_ADMIN_ONLY = stc.admin_only))
|
|
custom_commands[command_name] = stc
|
|
|
|
return results
|
|
|
|
/datum/tgs_api/v5/proc/HandleCustomCommand(list/command_json)
|
|
var/command = command_json[DMAPI5_CHAT_COMMAND_NAME]
|
|
var/user = command_json[DMAPI5_CHAT_COMMAND_USER]
|
|
var/params = command_json[DMAPI5_CHAT_COMMAND_PARAMS]
|
|
|
|
var/datum/tgs_chat_user/u = new
|
|
u.id = user[DMAPI5_CHAT_USER_ID]
|
|
u.friendly_name = user[DMAPI5_CHAT_USER_FRIENDLY_NAME]
|
|
u.mention = user[DMAPI5_CHAT_USER_MENTION]
|
|
u.channel = DecodeChannel(user[DMAPI5_CHAT_USER_CHANNEL])
|
|
|
|
var/datum/tgs_chat_command/sc = custom_commands[command]
|
|
if(sc)
|
|
var/datum/tgs_message_content/response = sc.Run(u, params)
|
|
response = UpgradeDeprecatedCommandResponse(response, command)
|
|
|
|
var/list/topic_response = TopicResponse()
|
|
topic_response[DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE_MESSAGE] = response ? response.text : null
|
|
topic_response[DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE] = response ? response._interop_serialize() : null
|
|
return topic_response
|
|
return TopicResponse("Unknown custom chat command: [command]!")
|
|
|
|
// Common proc b/c it's used by the V3/V4 APIs
|
|
/datum/tgs_api/proc/UpgradeDeprecatedCommandResponse(datum/tgs_message_content/response, command)
|
|
// Backwards compatibility, used to return a string
|
|
if(istext(response))
|
|
warned_deprecated_command_runs = warned_deprecated_command_runs || list()
|
|
if(!warned_deprecated_command_runs[command])
|
|
TGS_WARNING_LOG("Custom chat command \"[command]\" is still returning a string. This behaviour is deprecated, please upgrade it to return a [/datum/tgs_message_content].")
|
|
warned_deprecated_command_runs[command] = TRUE
|
|
|
|
return new /datum/tgs_message_content(response)
|
|
|
|
if(!istype(response))
|
|
TGS_ERROR_LOG("Custom chat command \"[command]\" should return a [/datum/tgs_message_content]! Got: \"[response]\"")
|
|
return null
|
|
|
|
return response
|