aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_op.py
Commit message (Expand)AuthorAgeFilesLines
* add channel mlock (mode lock) functionality to channel_op.pyGravatar jesopo2020-04-131-2/+68
* `masks` -> `args`Gravatar jesopo2020-03-101-1/+1
* move _get_hostmask logic out in to banmask.py core module, for reuseGravatar jesopo2020-03-081-15/+7
* ban-format-account is no longer relevantGravatar jesopo2020-03-041-9/+0
* `prefix` can be None - null-coalesce it to empty stringGravatar jesopo2020-02-261-1/+1
* kick bitbot last if he's covered by !kick/!kickbanGravatar jesopo2020-02-261-0/+6
* masks should be a list, otherwise we iterate a stringGravatar jesopo2020-02-261-1/+1
* support !aban and !akickban for account bansGravatar jesopo2020-02-261-26/+51
* send_modes takes list[tuple[s,s]], add !down, !deop yourself lastGravatar jesopo2020-02-251-20/+45
* !op/!deop and !voice/!devoice should assume own user without argsGravatar jesopo2020-02-251-8/+12
* only voice/op people that dont have it alreadyGravatar jesopo2020-02-251-1/+2
* unmode timer should use send_modesGravatar jesopo2020-02-251-2/+1
* add !invex, refactor all channel_op mode-type commandsGravatar jesopo2020-02-251-157/+143
* support `user` (as well as `cuser`) for user object mask banningGravatar jesopo2020-02-211-1/+1
* update channel_op.py ban formatting to use ${}Gravatar jesopo2020-02-211-6/+6
* i broke quieting when i was refactoring itGravatar jesopo2020-02-171-8/+11
* send multiple KICKs in the same line when possibleGravatar jesopo2020-02-171-7/+6
* support wildcards/masks for !ban, !unban and !kickbanGravatar jesopo2020-02-171-24/+38
* allow multipe require_accces (comma sep), support "low"/"high"/"admin"Gravatar jesopo2020-02-061-17/+17
* refactor -b/-q/-m timer logic in to 1 functionGravatar jesopo2020-02-051-27/+21
* !voice should target a nickname, not a user objectGravatar jesopo2020-02-041-1/+2
* `event` doesn't exist in _quiet_method()Gravatar jesopo2020-01-261-1/+1
* we should be checking if there are no flags specifiedGravatar jesopo2020-01-261-1/+1
* find "word" type, not cuser (because i can be 'user')Gravatar jesopo2020-01-261-3/+3
* fix _ban looking for user instead of cuser, fix kickban _kick argGravatar jesopo2020-01-261-2/+2
* fix channel_op spec arg indexesGravatar jesopo2020-01-261-3/+3
* remove channel_op.py usage, specs cover itGravatar jesopo2020-01-251-35/+19
* implement default spec argument typesGravatar jesopo2020-01-251-6/+6
* change command specs to be compiled at runtime by a decoratorGravatar jesopo2020-01-251-17/+17
* update mode list functions to not use `args`Gravatar jesopo2020-01-251-6/+1
* !cunmute needs an `event` argGravatar jesopo2020-01-251-1/+1
* use new command specs in channel_op.pyGravatar jesopo2020-01-241-94/+73
* add !lsearch to show what !clear would removeGravatar jesopo2020-01-231-34/+55
* search for QUIET prefix anywhere, not just at the start of stringGravatar jesopo2020-01-231-2/+2
* get channelset quiet-method list from QUIET_METHODSGravatar jesopo2020-01-231-1/+1
* fix duplicate "insp" QUIET_METHODS entryGravatar jesopo2020-01-231-1/+1
* add "!clear quiets|mutes"Gravatar jesopo2020-01-231-16/+44
* move mode list (beIq e.g.) to it's own module, mode_lists.pyGravatar jesopo2020-01-221-55/+0
* don't add modes to mode_lists until we have dataGravatar jesopo2020-01-221-8/+12
* support ISUPPORT MODES token having no argGravatar jesopo2020-01-221-1/+4
* add an optional mask pattern arg to !clearGravatar jesopo2020-01-221-3/+8
* effectively ignore ENDOF when there were no itemsGravatar jesopo2020-01-221-1/+2
* implement "!clear +b" to clear ban listsGravatar jesopo2020-01-221-8/+29
* track all channel list modes, not just ban and maybe quietGravatar jesopo2020-01-221-10/+13
* store ban (and maybe quiet) mode listsGravatar jesopo2020-01-221-0/+38
* query ban (and maybe quiet) list on joinGravatar jesopo2020-01-221-0/+10
* 'mute_method' -> 'quiet_method'Gravatar jesopo2020-01-221-1/+1
* default to quiet-method being unsupportedGravatar jesopo2020-01-221-1/+1
* use ISUPPORT QUIET when availableGravatar jesopo2020-01-221-5/+9
* !mute -> !quiet, refactor quiets to be mode,prefix,listnum,endnumGravatar jesopo2020-01-221-23/+42