mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
docs: split exttargets info into a new page
This commit is contained in:
parent
5d629f7331
commit
fd15600d80
@ -9,9 +9,10 @@ This folder contains general documentation for PyLink IRC services.
|
|||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
- [Automode & Exttargets Guide](automode.md)
|
- [Automode Tutorial](automode.md)
|
||||||
- [Advanced Relay Configuration](advanced-relay-config.md)
|
- [Advanced Relay Configuration](advanced-relay-config.md)
|
||||||
- [Advanced Services Configuration](advanced-services-config.md)
|
- [Advanced Services Configuration](advanced-services-config.md)
|
||||||
|
- [Extended Targets (Exttargets) Guide](exttargets.md)
|
||||||
- [PyLink Permissions Reference](permissions-reference.md)
|
- [PyLink Permissions Reference](permissions-reference.md)
|
||||||
|
|
||||||
----
|
----
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Automode & Exttargets Guide
|
# Automode Tutorial
|
||||||
|
|
||||||
The Automode plugin was introduced in PyLink 0.9 as a simple way of managing channel access control lists with Relay. That said, it is not designed to entirely replace traditional IRC services such as ChanServ.
|
The Automode plugin was introduced in PyLink 0.9 as a simple way of managing channel access control lists with Relay. That said, it is not designed to entirely replace traditional IRC services such as ChanServ.
|
||||||
|
|
||||||
@ -26,31 +26,7 @@ Clearing all access entries on a channel:
|
|||||||
- `/msg ModeBot clearacc #channel`
|
- `/msg ModeBot clearacc #channel`
|
||||||
|
|
||||||
## Supported masks and extended targets
|
## Supported masks and extended targets
|
||||||
|
Automode supports any hostmask or extended target implemented in PyLink; see the [Exttargets Guide](exttargets.md) for more details.
|
||||||
Extended targets or exttargets *replace* regular hostmasks with conditional matching based on the given situation. The following exttargets are supported:
|
|
||||||
|
|
||||||
- `$account` -> Returns True (a match) if the target is registered.
|
|
||||||
- `$account:accountname` -> Returns True if the target's account name matches the one given, and the target is connected to the local network. Account names are case insensitive.
|
|
||||||
- `$account:accountname:netname` -> Returns True if both the target's account name and origin network name match the ones given. Account names are case insensitive, but network names ARE case sensitive.
|
|
||||||
- `$account:*:netname` -> Matches all logged in users on the given network. Globs are not supported here; only a literal `*`.
|
|
||||||
- `$ircop` -> Returns True (a match) if the target is opered.
|
|
||||||
- `$ircop:*admin*` -> Returns True if the target's is opered and their oper type matches the glob given (case insensitive).
|
|
||||||
- `$server:server.name` -> Returns True (a match) if the target is connected on the given server. Server names are matched case insensitively.
|
|
||||||
- `$server:*server.glob*` -> Returns True (a match) if the target is connected on a server matching the glob.
|
|
||||||
- `$server:1XY` -> Returns True if the target's is connected on the server with the given SID. Note: SIDs ARE case sensitive.
|
|
||||||
- `$channel:#channel` -> Returns True if the target is in the given channel (case insensitive).
|
|
||||||
- `$channel:#channel:op` -> Returns True if the target is in the given channel, and is opped. Any supported prefix mode (owner, admin, op, halfop, voice) can be used for the last part, but only one at a time.
|
|
||||||
- `$pylinkacc` -> Returns True if the target is logged in to PyLink.
|
|
||||||
- `$pylinkacc:accountname` -> Returns True if the target's PyLink login matches the one given (case insensitive).
|
|
||||||
- `$network:netname` -> Returns True if the target user originates from the given network (this supports and looks up the home network of Relay users).
|
|
||||||
|
|
||||||
### The "$and" target
|
|
||||||
The `$and` target is slightly more complex. Examples:
|
|
||||||
|
|
||||||
- `$and:($ircop:*admin*+$network:ovd)` -> Matches all opers on the network ovd.
|
|
||||||
- `$and:($account+$pylinkirc)` -> Matches all users logged in to both services and PyLink.
|
|
||||||
- `$and:(*!*@localhost+$ircop)` -> Matches all opers with the host `localhost`.
|
|
||||||
- `$and:(*!*@*.mibbit.com+!$ircop+!$account)` -> Matches all mibbit users that aren't opered or logged in to services.
|
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
|
|
||||||
|
61
docs/exttargets.md
Normal file
61
docs/exttargets.md
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
# Exttargets Guide
|
||||||
|
|
||||||
|
In PyLink, **extended targets** or **exttargets** *replace* regular hostmasks with conditional matching based on specific situations. PyLink exttargets are supported by most plugins in the place of `nick!user@host` masks (provided they use the `Irc.matchHost()` API with a user object).
|
||||||
|
|
||||||
|
Exttargets were introduced in PyLink 0.9 alongside [Automode](automode.md), with the goal of making user/ACL matching more versatile. As of PyLink 1.2-alpha2, the following exttargets are supported:
|
||||||
|
|
||||||
|
### The "$account" target (PyLink 0.9+)
|
||||||
|
Used to match users by their services account.
|
||||||
|
|
||||||
|
- `$account` -> Returns True (a match) if the target is registered.
|
||||||
|
- `$account:accountname` -> Returns True if the target's account name matches the one given, and the target is connected to the local network. Account names are case insensitive.
|
||||||
|
- `$account:accountname:netname` -> Returns True if both the target's account name and origin network name match the ones given. Account names are case insensitive, but network names ARE case sensitive.
|
||||||
|
- `$account:*:netname` -> Matches all logged in users on the given network. Globs are not supported here; only a literal `*`.
|
||||||
|
|
||||||
|
### The "$channel" target (PyLink 0.9+)
|
||||||
|
Used to match users in certain channels. Channel names are matched case insensitively.
|
||||||
|
|
||||||
|
- `$channel:#channel` -> Returns True if the target is in the given channel.
|
||||||
|
- `$channel:#channel:PREFIXMODE` -> Returns True if the target is in the given channel, and is opped. Any supported prefix mode (owner, admin, op, halfop, voice) can be used for the last part, but only one at a time.
|
||||||
|
|
||||||
|
### The "$ircop" target (PyLink 0.9+)
|
||||||
|
Used to match users by IRCop status.
|
||||||
|
|
||||||
|
- `$ircop` -> Returns True (a match) if the target is opered.
|
||||||
|
- `$ircop:*admin*` -> Returns True if the target's is opered and their oper type matches the glob given (case insensitive).
|
||||||
|
|
||||||
|
### Target inversion (PyLink 1.2+)
|
||||||
|
In PyLink 1.2 and above, all targets and hostmasks can be inverted by placing a `!` before the target:
|
||||||
|
|
||||||
|
- `!$account` -> Matches all users not registered with services.
|
||||||
|
- `!$ircop` -> Matches all non-opers.
|
||||||
|
- `!*!*@localhost` -> Matches all users not connecting from localhost.
|
||||||
|
- `!*!*@*:*` -> Matches all non-IPv6 users.
|
||||||
|
|
||||||
|
For users on PyLink version **before 1.2**, target inversion is *only* supported with exttargets (i.e. `!$account` will work, but not `!*!*@localhost`.
|
||||||
|
|
||||||
|
### The "$network" target (PyLink 1.2+)
|
||||||
|
Used to match users on specific networks.
|
||||||
|
|
||||||
|
- `$network:netname` -> Returns True if the target user originates from the given network (this supports and looks up the home network of Relay users).
|
||||||
|
|
||||||
|
### The "$and" target (PyLink 1.2+)
|
||||||
|
The `$and` target is slightly more complex, and involves chaining together multiple exttargets or hosts with a `+` between each. Note that parentheses are required around the list of targets to match.
|
||||||
|
|
||||||
|
- `$and:($ircop:*admin*+$network:ovd)` -> Matches all opers on the network ovd.
|
||||||
|
- `$and:($account+$pylinkirc)` -> Matches all users logged in to both services and PyLink.
|
||||||
|
- `$and:(*!*@localhost+$ircop)` -> Matches all opers with the host `localhost`.
|
||||||
|
- `$and:(*!*@*.mibbit.com+!$ircop+!$account)` -> Matches all (non-CGIIRC) Mibbit users that aren't opered or logged in to services.
|
||||||
|
|
||||||
|
### The "$server" target (PyLink 0.9+)
|
||||||
|
Used to match users on specific IRC servers.
|
||||||
|
|
||||||
|
- `$server:server.name` -> Returns True (a match) if the target is connected on the given server. Server names are matched case insensitively.
|
||||||
|
- `$server:*server.glob*` -> Returns True (a match) if the target is connected on a server matching the glob.
|
||||||
|
- `$server:1XY` -> Returns True if the target's is connected on the server with the given SID. Note: SIDs ARE case sensitive.
|
||||||
|
|
||||||
|
### The "$pylinkacc" target (PyLink 0.9+)
|
||||||
|
Used to match users logged in to *PyLink* (i.e. via the `identify` command).
|
||||||
|
|
||||||
|
- `$pylinkacc` -> Returns True if the target is logged in to PyLink.
|
||||||
|
- `$pylinkacc:accountname` -> Returns True if the target's PyLink login matches the one given (case insensitive).
|
Loading…
Reference in New Issue
Block a user