Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

help.go 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. // Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
  2. // released under the MIT license
  3. package irc
  4. import (
  5. "strings"
  6. "github.com/DanielOaks/girc-go/ircmsg"
  7. )
  8. // HelpEntry represents an entry in the Help map.
  9. type HelpEntry struct {
  10. oper bool
  11. text string
  12. }
  13. // used for duplicates
  14. var (
  15. cmodeHelpText = `== Channel Modes ==
  16. Oragono supports the following channel modes:
  17. = Type A - list modes =
  18. +b | Client masks that are banned from the channel.
  19. +e | Client masks that are exempted from bans.
  20. +I | Client masks that are exempted from the invite-only flag.
  21. = Type C - setting modes with a parameter =
  22. +l | Client join limit for the channel.
  23. +k | Key required when joining the channel.
  24. = Type D - flag modes =
  25. +i | Invite-only mode, only invited clients can join the channel.
  26. +m | Moderated mode, only privileged clients can talk on the channel.
  27. +n | No-outside-messages mode, only users that are on the channel can send
  28. | messages to it.
  29. +t | Only channel opers can modify the topic.
  30. +s | Secret mode, channel won't show up in /LIST or whois replies.
  31. = Prefixes =
  32. +q (~) | Founder channel mode.
  33. +a (&) | Admin channel mode.
  34. +o (@) | Operator channel mode.
  35. +h (%) | Halfop channel mode.
  36. +v (+) | Voice channel mode.`
  37. umodeHelpText = `== User Modes ==
  38. Oragono supports the following user modes:
  39. +a | User is marked as being away. This mode is set with the /AWAY command.
  40. +i | User is marked as invisible (their channels are hidden from whois replies).
  41. +o | User is an IRC operator.
  42. +Z | User is connected via TLS.`
  43. )
  44. // Help contains the help strings distributed with the IRCd.
  45. var Help = map[string]HelpEntry{
  46. // Commands
  47. "ambiance": {
  48. text: `AMBIANCE <target> <text to be sent>
  49. The AMBIANCE command is used to send a scene notification to the given target.`,
  50. },
  51. "authenticate": {
  52. text: `AUTHENTICATE
  53. Used during SASL authentication. See the IRCv3 specs for more info:
  54. http://ircv3.net/specs/extensions/sasl-3.1.html`,
  55. },
  56. "away": {
  57. text: `AWAY [message]
  58. If [message] is sent, marks you away. If [message] is not sent, marks you no
  59. longer away.`,
  60. },
  61. "cap": {
  62. text: `CAP <subcommand> [:<capabilities>]
  63. Used in capability negotiation. See the IRCv3 specs for more info:
  64. http://ircv3.net/specs/core/capability-negotiation-3.1.html
  65. http://ircv3.net/specs/core/capability-negotiation-3.2.html`,
  66. },
  67. "debug": {
  68. oper: true,
  69. text: `DEBUG <option>
  70. Prints debug information about the IRCd. <option> can be one of:
  71. * GCSTATS: Garbage control statistics.
  72. * NUMGOROUTINE: Number of goroutines in use.
  73. * STARTCPUPROFILE: Starts the CPU profiler.
  74. * STOPCPUPROFILE: Stops the CPU profiler.
  75. * PROFILEHEAP: Writes out the CPU profiler info.`,
  76. },
  77. "dline": {
  78. oper: true,
  79. text: `DLINE [MYSELF] [duration] <ip>/<net> [ON <server>] [reason [| oper reason]]
  80. Bans an IP address or network from connecting to the server. If the duration is
  81. given then only for that long. The reason is shown to the user themselves, but
  82. everyone else will see a standard message. The oper reason is shown to
  83. operators getting info about the DLINEs that exist.
  84. Bans are saved across subsequent launches of the server.
  85. "MYSELF" is required when the DLINE matches the address the person applying it is connected
  86. from. If "MYSELF" is not given, trying to DLINE yourself will result in an error.
  87. [duration] can be of the following forms:
  88. 10h 8m 13s
  89. <net> is specified in typical CIDR notation. For example:
  90. 127.0.0.1/8
  91. 8.8.8.8/24
  92. ON <server> specifies that the ban is to be set on that specific server.
  93. [reason] and [oper reason], if they exist, are separated by a vertical bar (|).`,
  94. },
  95. "help": {
  96. text: `HELP <argument>
  97. Get an explanation of <argument>.`,
  98. },
  99. "invite": {
  100. text: `INVITE <nickname> <channel>
  101. Invites the given user to the given channel, so long as you have the
  102. appropriate channel privs.`,
  103. },
  104. "ison": {
  105. text: `ISON <nickname>{ <nickname>}
  106. Returns whether the given nicks exist on the network.`,
  107. },
  108. "join": {
  109. text: `JOIN <channel>{,<channel>} [<key>{,<key>}]
  110. JOIN 0
  111. Joins the given channels with the matching keys, or if the only param is "0"
  112. parts all channels instead.`,
  113. },
  114. "kick": {
  115. text: `KICK <channel> <user> [reason]
  116. Removes the user from the given channel, so long as you have the appropriate
  117. channel privs.`,
  118. },
  119. "kill": {
  120. oper: true,
  121. text: `KILL <nickname> [reason]
  122. Removes the given user from the network, showing them the reason if it is
  123. supplied.`,
  124. },
  125. "list": {
  126. text: `LIST [<channel>{,<channel>}] [<elistcond>{,<elistcond>}]
  127. Shows information on the given channels (or if none are given, then on all
  128. channels). <elistcond>s modify how the channels are selected.`,
  129. //TODO(dan): Explain <elistcond>s in more specific detail
  130. },
  131. "mode": {
  132. text: `MODE <target> [<modestring> [<mode arguments>...]]
  133. Sets and removes modes from the given target. For more specific information on
  134. mode characters, see the help for "cmode" and "umode".`,
  135. },
  136. "monitor": {
  137. text: `MONITOR <subcmd>
  138. Allows the monitoring of nicknames, for alerts when they are online and
  139. offline. The subcommands are:
  140. MONITOR + target{,target}
  141. Adds the given names to your list of monitored nicknames.
  142. MONITOR - target{,target}
  143. Removes the given names from your list of monitored nicknames.
  144. MONITOR C
  145. Clears your list of monitored nicknames.
  146. MONITOR L
  147. Lists all the nicknames you are currently monitoring.
  148. MONITOR S
  149. Lists whether each nick in your MONITOR list is online or offline.`,
  150. },
  151. "motd": {
  152. text: `MOTD [server]
  153. Returns the message of the day for this, or the given, server.`,
  154. },
  155. "names": {
  156. text: `NAMES [<channel>{,<channel>}]
  157. Views the clients joined to a channel and their channel membership prefixes. To
  158. view the channel membership prefixes supported by this server, see the help for
  159. "PREFIX".`,
  160. },
  161. "nick": {
  162. text: `NICK <newnick>
  163. Sets your nickname to the new given one.`,
  164. },
  165. "notice": {
  166. text: `NOTICE <target>{,<target>} <text to be sent>
  167. Sends the text to the given targets as a NOTICE.`,
  168. },
  169. "npc": {
  170. text: `NPC <target> <sourcenick> <text to be sent>
  171. The NPC command is used to send a message to the target as the source.`,
  172. },
  173. "npca": {
  174. text: `NPCA <target> <sourcenick> <text to be sent>
  175. The NPC command is used to send an action to the target as the source.`,
  176. },
  177. "oper": {
  178. text: `OPER <name> <password>
  179. If the correct details are given, gives you IRCop privs.`,
  180. },
  181. "part": {
  182. text: `PART <channel>{,<channel>} [reason]
  183. Leaves the given channels and shows people the given reason.`,
  184. },
  185. "pass": {
  186. text: `PASS <password>
  187. When the server requires a connection password to join, used to send us the
  188. password.`,
  189. },
  190. "ping": {
  191. text: `PING <args>...
  192. Requests a PONG. Used to check link connectivity.`,
  193. },
  194. "pong": {
  195. text: `PONG <args>...
  196. Replies to a PING. Used to check link connectivity.`,
  197. },
  198. "privmsg": {
  199. text: `PRIVMSG <target>{,<target>} <text to be sent>
  200. Sends the text to the given targets as a PRIVMSG.`,
  201. },
  202. "sanick": {
  203. oper: true,
  204. text: `SANICK <currentnick> <newnick>
  205. Gives the given user a new nickname.`,
  206. },
  207. "scene": {
  208. text: `SCENE <target> <text to be sent>
  209. The SCENE command is used to send a scene notification to the given target.`,
  210. },
  211. "quit": {
  212. text: `QUIT [reason]
  213. Indicates that you're leaving the server, and shows everyone the given reason.`,
  214. },
  215. "reg": {
  216. text: `REG CREATE <accountname> [callback_namespace:]<callback> [cred_type] :<credential>
  217. REG VERIFY <accountname> <auth_code>
  218. Used in account registration. See the relevant specs for more info:
  219. http://oragono.io/specs.html`,
  220. },
  221. "rehash": {
  222. oper: true,
  223. text: `REHASH
  224. Reloads the config file and updates TLS certificates on listeners`,
  225. },
  226. "time": {
  227. text: `TIME [server]
  228. Shows the time of the current, or the given, server.`,
  229. },
  230. "topic": {
  231. text: `TOPIC <channel> [topic]
  232. If [topic] is given, sets the topic in the channel to that. If [topic] is not
  233. given, views the current topic on the channel.`,
  234. },
  235. "undline": {
  236. oper: true,
  237. text: `UNDLINE <ip>/<net>
  238. Removes an existing ban on an IP address or a network.
  239. <net> is specified in typical CIDR notation. For example:
  240. 127.0.0.1/8
  241. 8.8.8.8/24`,
  242. },
  243. "user": {
  244. text: `USER <username> 0 * <realname>
  245. Used in connection registration, sets your username and realname to the given
  246. values (though your username may also be looked up with Ident).`,
  247. },
  248. "version": {
  249. text: `VERSION [server]
  250. Views the version of software and the RPL_ISUPPORT tokens for the given server.`,
  251. },
  252. "who": {
  253. text: `WHO <name> [o]
  254. Returns information for the given user.`,
  255. },
  256. "whois": {
  257. text: `WHOIS <client>{,<client>}
  258. Returns information for the given user(s).`,
  259. },
  260. "whowas": {
  261. text: `WHOWAS <nickname>
  262. Returns historical information on the last user with the given nickname.`,
  263. },
  264. // Informational
  265. "cmode": {
  266. text: cmodeHelpText,
  267. },
  268. "cmodes": {
  269. text: cmodeHelpText,
  270. },
  271. "umode": {
  272. text: umodeHelpText,
  273. },
  274. "umodes": {
  275. text: umodeHelpText,
  276. },
  277. // RPL_ISUPPORT
  278. "casemapping": {
  279. text: `RPL_ISUPPORT CASEMAPPING
  280. Oragono supports an experimental unicode casemapping designed for extended
  281. Unicode support. This casemapping is based off RFC 7700 and the draft rfc7700
  282. casemapping spec here: http://oragono.io/specs.html`,
  283. },
  284. "prefix": {
  285. text: `RPL_ISUPPORT PREFIX
  286. Oragono supports the following channel membership prefixes:
  287. +q (~) | Founder channel mode.
  288. +a (&) | Admin channel mode.
  289. +o (@) | Operator channel mode.
  290. +h (%) | Halfop channel mode.
  291. +v (+) | Voice channel mode.`,
  292. },
  293. }
  294. // sendHelp sends the client help of the given string.
  295. func (client *Client) sendHelp(name string, text string) {
  296. splitName := strings.Split(name, " ")
  297. textLines := strings.Split(text, "\n")
  298. for i, line := range textLines {
  299. args := splitName
  300. args = append(args, line)
  301. if i == 0 {
  302. client.Send(nil, client.server.name, RPL_HELPSTART, args...)
  303. } else {
  304. client.Send(nil, client.server.name, RPL_HELPTXT, args...)
  305. }
  306. }
  307. args := splitName
  308. args = append(args, "End of /HELP")
  309. client.Send(nil, client.server.name, RPL_ENDOFHELP, args...)
  310. }
  311. // helpHandler returns the appropriate help for the given query.
  312. func helpHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
  313. argument := strings.ToLower(strings.TrimSpace(strings.Join(msg.Params, " ")))
  314. if len(argument) < 1 {
  315. client.sendHelp("HELP", `HELP <argument>
  316. Get an explanation of <argument>.`)
  317. return false
  318. }
  319. helpHandler, exists := Help[argument]
  320. if exists && (!helpHandler.oper || (helpHandler.oper && client.flags[Operator])) {
  321. client.sendHelp(strings.ToUpper(argument), helpHandler.text)
  322. } else {
  323. args := msg.Params
  324. args = append(args, "Help not found")
  325. client.Send(nil, server.name, ERR_HELPNOTFOUND, args...)
  326. }
  327. return false
  328. }