Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2853dc8a1f | ||
|
|
42157a7b23 |
+1
-1
@@ -53,7 +53,7 @@ RUN apk add --no-cache ca-certificates \
|
|||||||
COPY --from=builder /neoircd /usr/local/bin/neoircd
|
COPY --from=builder /neoircd /usr/local/bin/neoircd
|
||||||
|
|
||||||
USER neoirc
|
USER neoirc
|
||||||
EXPOSE 8080 6667
|
EXPOSE 8080
|
||||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||||||
CMD wget -qO- http://localhost:8080/.well-known/healthcheck.json || exit 1
|
CMD wget -qO- http://localhost:8080/.well-known/healthcheck.json || exit 1
|
||||||
ENTRYPOINT ["neoircd"]
|
ENTRYPOINT ["neoircd"]
|
||||||
|
|||||||
@@ -1080,8 +1080,8 @@ the server to the client (never C2S) and use 3-digit string codes in the
|
|||||||
| `001` | RPL_WELCOME | After session creation | `{"command":"001","to":"alice","body":["Welcome to the network, alice"]}` |
|
| `001` | RPL_WELCOME | After session creation | `{"command":"001","to":"alice","body":["Welcome to the network, alice"]}` |
|
||||||
| `002` | RPL_YOURHOST | After session creation | `{"command":"002","to":"alice","body":["Your host is neoirc, running version 0.1"]}` |
|
| `002` | RPL_YOURHOST | After session creation | `{"command":"002","to":"alice","body":["Your host is neoirc, running version 0.1"]}` |
|
||||||
| `003` | RPL_CREATED | After session creation | `{"command":"003","to":"alice","body":["This server was created 2026-02-10"]}` |
|
| `003` | RPL_CREATED | After session creation | `{"command":"003","to":"alice","body":["This server was created 2026-02-10"]}` |
|
||||||
| `004` | RPL_MYINFO | After session creation | `{"command":"004","to":"alice","params":["neoirc","0.1","","ikmnostl"]}` |
|
| `004` | RPL_MYINFO | After session creation | `{"command":"004","to":"alice","params":["neoirc","0.1","","mnst"]}` |
|
||||||
| `005` | RPL_ISUPPORT | After session creation | `{"command":"005","to":"alice","params":["CHANTYPES=#","NICKLEN=32","PREFIX=(ov)@+","CHANMODES=b,k,Hl,imnst","NETWORK=neoirc"],"body":["are supported by this server"]}` |
|
| `005` | RPL_ISUPPORT | After session creation | `{"command":"005","to":"alice","params":["CHANTYPES=#","NICKLEN=32","PREFIX=(ov)@+","CHANMODES=,,H,mnst","NETWORK=neoirc"],"body":["are supported by this server"]}` |
|
||||||
| `221` | RPL_UMODEIS | In response to user MODE query | `{"command":"221","to":"alice","body":["+"]}` |
|
| `221` | RPL_UMODEIS | In response to user MODE query | `{"command":"221","to":"alice","body":["+"]}` |
|
||||||
| `251` | RPL_LUSERCLIENT | On connect or LUSERS command | `{"command":"251","to":"alice","body":["There are 5 users and 0 invisible on 1 servers"]}` |
|
| `251` | RPL_LUSERCLIENT | On connect or LUSERS command | `{"command":"251","to":"alice","body":["There are 5 users and 0 invisible on 1 servers"]}` |
|
||||||
| `252` | RPL_LUSEROP | On connect or LUSERS command | `{"command":"252","to":"alice","params":["0"],"body":["operator(s) online"]}` |
|
| `252` | RPL_LUSEROP | On connect or LUSERS command | `{"command":"252","to":"alice","params":["0"],"body":["operator(s) online"]}` |
|
||||||
@@ -1129,15 +1129,12 @@ Inspired by IRC, simplified:
|
|||||||
|
|
||||||
| Mode | Name | Meaning | Status |
|
| Mode | Name | Meaning | Status |
|
||||||
|------|----------------|---------|--------|
|
|------|----------------|---------|--------|
|
||||||
| `+b` | Ban | Prevents matching hostmasks from joining or sending (parameter: `nick!user@host` mask with wildcards) | **Enforced** |
|
|
||||||
| `+i` | Invite-only | Only invited users can join; use `INVITE nick #channel` to invite | **Enforced** |
|
|
||||||
| `+k` | Channel key | Requires a password to join (parameter: key string) | **Enforced** |
|
|
||||||
| `+l` | User limit | Maximum number of members allowed in the channel (parameter: integer) | **Enforced** |
|
|
||||||
| `+m` | Moderated | Only voiced (`+v`) users and operators (`+o`) can send | **Enforced** |
|
| `+m` | Moderated | Only voiced (`+v`) users and operators (`+o`) can send | **Enforced** |
|
||||||
| `+n` | No external | Only channel members can send messages to the channel | **Enforced** |
|
|
||||||
| `+s` | Secret | Channel hidden from LIST and WHOIS for non-members | **Enforced** |
|
|
||||||
| `+t` | Topic lock | Only operators can change the topic (default: ON) | **Enforced** |
|
| `+t` | Topic lock | Only operators can change the topic (default: ON) | **Enforced** |
|
||||||
|
| `+n` | No external | Only channel members can send messages to the channel | **Enforced** |
|
||||||
| `+H` | Hashcash | Requires proof-of-work for PRIVMSG (parameter: bits, e.g. `+H 20`) | **Enforced** |
|
| `+H` | Hashcash | Requires proof-of-work for PRIVMSG (parameter: bits, e.g. `+H 20`) | **Enforced** |
|
||||||
|
| `+i` | Invite-only | Only invited users can join | Not yet enforced |
|
||||||
|
| `+s` | Secret | Channel hidden from LIST response | Not yet enforced |
|
||||||
|
|
||||||
**User channel modes (set per-user per-channel):**
|
**User channel modes (set per-user per-channel):**
|
||||||
|
|
||||||
@@ -1149,42 +1146,6 @@ Inspired by IRC, simplified:
|
|||||||
**Channel creator auto-op:** The first user to JOIN a channel (creating it)
|
**Channel creator auto-op:** The first user to JOIN a channel (creating it)
|
||||||
automatically receives `+o` operator status.
|
automatically receives `+o` operator status.
|
||||||
|
|
||||||
**Ban system (+b):** Operators can ban users by hostmask pattern with wildcard
|
|
||||||
matching (`*` and `?`). `MODE #channel +b` with no argument lists current bans.
|
|
||||||
Bans prevent both joining and sending messages.
|
|
||||||
|
|
||||||
```
|
|
||||||
MODE #channel +b *!*@*.example.com — ban all users from example.com
|
|
||||||
MODE #channel -b *!*@*.example.com — remove the ban
|
|
||||||
MODE #channel +b — list all bans (RPL_BANLIST 367/368)
|
|
||||||
```
|
|
||||||
|
|
||||||
**Invite-only (+i):** When set, users must be invited by an operator before
|
|
||||||
joining. The `INVITE` command records an invite that is consumed on JOIN.
|
|
||||||
|
|
||||||
```
|
|
||||||
MODE #channel +i — set invite-only
|
|
||||||
INVITE nick #channel — invite a user (operator only on +i channels)
|
|
||||||
```
|
|
||||||
|
|
||||||
**Channel key (+k):** Requires a password to join the channel.
|
|
||||||
|
|
||||||
```
|
|
||||||
MODE #channel +k secretpass — set a channel key
|
|
||||||
MODE #channel -k * — remove the key
|
|
||||||
JOIN #channel secretpass — join with key
|
|
||||||
```
|
|
||||||
|
|
||||||
**User limit (+l):** Caps the number of members in the channel.
|
|
||||||
|
|
||||||
```
|
|
||||||
MODE #channel +l 50 — set limit to 50 members
|
|
||||||
MODE #channel -l — remove the limit
|
|
||||||
```
|
|
||||||
|
|
||||||
**Secret (+s):** Hides the channel from `LIST` for non-members and from
|
|
||||||
`WHOIS` channel lists when the querier is not in the same channel.
|
|
||||||
|
|
||||||
**KICK command:** Channel operators can remove users with `KICK #channel nick
|
**KICK command:** Channel operators can remove users with `KICK #channel nick
|
||||||
[:reason]`. The kicked user and all channel members receive the KICK message.
|
[:reason]`. The kicked user and all channel members receive the KICK message.
|
||||||
|
|
||||||
@@ -1193,7 +1154,7 @@ RPL_AWAY), and skips hashcash validation on +H channels (servers and services
|
|||||||
use NOTICE).
|
use NOTICE).
|
||||||
|
|
||||||
**ISUPPORT:** The server advertises `PREFIX=(ov)@+` and
|
**ISUPPORT:** The server advertises `PREFIX=(ov)@+` and
|
||||||
`CHANMODES=b,k,Hl,imnst` in RPL_ISUPPORT (005).
|
`CHANMODES=,,H,mnst` in RPL_ISUPPORT (005).
|
||||||
|
|
||||||
### Per-Channel Hashcash (Anti-Spam)
|
### Per-Channel Hashcash (Anti-Spam)
|
||||||
|
|
||||||
@@ -2291,15 +2252,17 @@ neoirc includes an optional traditional IRC wire protocol listener (RFC
|
|||||||
backward compatibility with existing IRC clients like irssi, weechat, hexchat,
|
backward compatibility with existing IRC clients like irssi, weechat, hexchat,
|
||||||
and others.
|
and others.
|
||||||
|
|
||||||
### Configuration
|
### Enabling
|
||||||
|
|
||||||
The IRC listener is **enabled by default** on `:6667`. To disable it, set
|
Set the `IRC_LISTEN_ADDR` environment variable to a TCP address:
|
||||||
`IRC_LISTEN_ADDR` to an empty string:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
IRC_LISTEN_ADDR=
|
IRC_LISTEN_ADDR=:6667
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When unset or empty, the IRC listener is disabled and only the HTTP/JSON API is
|
||||||
|
available.
|
||||||
|
|
||||||
### Supported Commands
|
### Supported Commands
|
||||||
|
|
||||||
| Category | Commands |
|
| Category | Commands |
|
||||||
@@ -2307,8 +2270,8 @@ IRC_LISTEN_ADDR=
|
|||||||
| Connection | `NICK`, `USER`, `PASS`, `QUIT`, `PING`/`PONG`, `CAP` |
|
| Connection | `NICK`, `USER`, `PASS`, `QUIT`, `PING`/`PONG`, `CAP` |
|
||||||
| Channels | `JOIN`, `PART`, `MODE`, `TOPIC`, `NAMES`, `LIST`, `KICK`, `INVITE` |
|
| Channels | `JOIN`, `PART`, `MODE`, `TOPIC`, `NAMES`, `LIST`, `KICK`, `INVITE` |
|
||||||
| Messaging | `PRIVMSG`, `NOTICE` |
|
| Messaging | `PRIVMSG`, `NOTICE` |
|
||||||
| Info | `WHO`, `WHOIS`, `LUSERS`, `MOTD`, `AWAY`, `USERHOST`, `VERSION`, `ADMIN`, `INFO`, `TIME` |
|
| Info | `WHO`, `WHOIS`, `LUSERS`, `MOTD`, `AWAY` |
|
||||||
| Operator | `OPER`, `KILL`, `WALLOPS` (requires `NEOIRC_OPER_NAME` and `NEOIRC_OPER_PASSWORD`) |
|
| Operator | `OPER` (requires `NEOIRC_OPER_NAME` and `NEOIRC_OPER_PASSWORD`) |
|
||||||
|
|
||||||
### Protocol Details
|
### Protocol Details
|
||||||
|
|
||||||
@@ -2324,15 +2287,6 @@ IRC_LISTEN_ADDR=
|
|||||||
operator status (`@`).
|
operator status (`@`).
|
||||||
- **Channel modes**: `+m` (moderated), `+t` (topic lock), `+o` (operator),
|
- **Channel modes**: `+m` (moderated), `+t` (topic lock), `+o` (operator),
|
||||||
`+v` (voice)
|
`+v` (voice)
|
||||||
- **User modes**: `+o` (operator, set only via `OPER`), `+w` (receives
|
|
||||||
`WALLOPS`). `MODE` for any nick other than your own is rejected with
|
|
||||||
`ERR_USERSDONTMATCH` (502), for both queries and changes. Nick comparison
|
|
||||||
is case-insensitive.
|
|
||||||
- **KILL**: an operator's `KILL` broadcasts the victim's `QUIT` to its channel
|
|
||||||
peers, deletes its session, and then sends the victim a `KILL` and
|
|
||||||
`ERROR :Closing Link` before closing its socket. This applies to victims on
|
|
||||||
the IRC listener regardless of whether the `KILL` arrived over IRC or the
|
|
||||||
HTTP API.
|
|
||||||
|
|
||||||
### Bridge to HTTP API
|
### Bridge to HTTP API
|
||||||
|
|
||||||
@@ -2343,13 +2297,13 @@ connected via the HTTP API can communicate in the same channels seamlessly.
|
|||||||
|
|
||||||
### Docker Usage
|
### Docker Usage
|
||||||
|
|
||||||
To expose the IRC port in Docker (the listener is enabled by default on
|
To expose the IRC port in Docker:
|
||||||
`:6667`):
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d \
|
docker run -d \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
-p 6667:6667 \
|
-p 6667:6667 \
|
||||||
|
-e IRC_LISTEN_ADDR=:6667 \
|
||||||
-v neoirc-data:/var/lib/neoirc \
|
-v neoirc-data:/var/lib/neoirc \
|
||||||
neoirc
|
neoirc
|
||||||
```
|
```
|
||||||
@@ -2808,7 +2762,7 @@ guess is borne by the server (bcrypt), not the client.
|
|||||||
- [x] **Client output queue pruning** — delete old client output queue entries per `QUEUE_MAX_AGE`
|
- [x] **Client output queue pruning** — delete old client output queue entries per `QUEUE_MAX_AGE`
|
||||||
- [x] **Message rotation** — prune messages older than `MESSAGE_MAX_AGE`
|
- [x] **Message rotation** — prune messages older than `MESSAGE_MAX_AGE`
|
||||||
- [x] **Channel modes** — enforce `+m` (moderated), `+t` (topic lock), `+n` (no external)
|
- [x] **Channel modes** — enforce `+m` (moderated), `+t` (topic lock), `+n` (no external)
|
||||||
- [x] **Channel modes (tier 2)** — enforce `+i` (invite-only), `+s` (secret), `+b` (ban), `+k` (key), `+l` (limit)
|
- [ ] **Channel modes (tier 2)** — enforce `+i` (invite-only), `+s` (secret), `+b` (ban), `+k` (key), `+l` (limit)
|
||||||
- [x] **User channel modes** — `+o` (operator), `+v` (voice) with NAMES prefixes
|
- [x] **User channel modes** — `+o` (operator), `+v` (voice) with NAMES prefixes
|
||||||
- [x] **KICK command** — operator-only channel kick with broadcast
|
- [x] **KICK command** — operator-only channel kick with broadcast
|
||||||
- [x] **MODE command** — query and set channel/user modes
|
- [x] **MODE command** — query and set channel/user modes
|
||||||
@@ -2829,10 +2783,6 @@ guess is borne by the server (bcrypt), not the client.
|
|||||||
login from additional devices via `POST /api/v1/login`
|
login from additional devices via `POST /api/v1/login`
|
||||||
- [x] **Cookie-based auth** — HttpOnly cookies replace Bearer tokens for
|
- [x] **Cookie-based auth** — HttpOnly cookies replace Bearer tokens for
|
||||||
all API authentication
|
all API authentication
|
||||||
- [x] **Tier 3 utility commands** — USERHOST (302), VERSION (351), ADMIN
|
|
||||||
(256–259), INFO (371/374), TIME (391), KILL (oper-only forced
|
|
||||||
disconnect), WALLOPS (oper-only broadcast to +w users)
|
|
||||||
- [x] **User mode +w** — wallops usermode via `MODE nick +w/-w`
|
|
||||||
|
|
||||||
### Future (1.0+)
|
### Future (1.0+)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// Package main is the entry point for the neoirc-cli client.
|
// Package main is the entry point for the neoirc-cli client.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "sneak.berlin/go/neoirc/internal/cli"
|
import "git.eeqj.de/sneak/neoirc/internal/cli"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
cli.Run()
|
cli.Run()
|
||||||
|
|||||||
+12
-12
@@ -2,19 +2,19 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/handlers"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/healthcheck"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/ircserver"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/middleware"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/server"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/stats"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/handlers"
|
|
||||||
"sneak.berlin/go/neoirc/internal/healthcheck"
|
|
||||||
"sneak.berlin/go/neoirc/internal/ircserver"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/middleware"
|
|
||||||
"sneak.berlin/go/neoirc/internal/server"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
"sneak.berlin/go/neoirc/internal/stats"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
module sneak.berlin/go/neoirc
|
module git.eeqj.de/sneak/neoirc
|
||||||
|
|
||||||
go 1.24.0
|
go 1.24.0
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestNewBroker(t *testing.T) {
|
func TestNewBroker(t *testing.T) {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"math/big"
|
"math/big"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/hashcash"
|
"git.eeqj.de/sneak/neoirc/internal/hashcash"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|||||||
+2
-2
@@ -8,8 +8,8 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
api "sneak.berlin/go/neoirc/internal/cli/api"
|
api "git.eeqj.de/sneak/neoirc/internal/cli/api"
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
|
|
||||||
_ "github.com/joho/godotenv/autoload" // loads .env file
|
_ "github.com/joho/godotenv/autoload" // loads .env file
|
||||||
)
|
)
|
||||||
|
|||||||
+7
-20
@@ -12,9 +12,9 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
|
|
||||||
_ "github.com/joho/godotenv/autoload" // .env
|
_ "github.com/joho/godotenv/autoload" // .env
|
||||||
_ "modernc.org/sqlite" // driver
|
_ "modernc.org/sqlite" // driver
|
||||||
@@ -135,21 +135,13 @@ type migration struct {
|
|||||||
func (database *Database) runMigrations(
|
func (database *Database) runMigrations(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
) error {
|
) error {
|
||||||
bootstrap, err := SchemaFiles.ReadFile(
|
_, err := database.conn.ExecContext(ctx,
|
||||||
"schema/000.sql",
|
`CREATE TABLE IF NOT EXISTS schema_migrations (
|
||||||
)
|
version INTEGER PRIMARY KEY,
|
||||||
|
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP)`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"read bootstrap migration: %w", err,
|
"create schema_migrations: %w", err,
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = database.conn.ExecContext(
|
|
||||||
ctx, string(bootstrap),
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf(
|
|
||||||
"execute bootstrap migration: %w", err,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -278,11 +270,6 @@ func (database *Database) loadMigrations() (
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip bootstrap migration; it is executed separately.
|
|
||||||
if version == 0 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
content, readErr := SchemaFiles.ReadFile(
|
content, readErr := SchemaFiles.ReadFile(
|
||||||
"schema/" + entry.Name(),
|
"schema/" + entry.Name(),
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -58,19 +58,3 @@ func (database *Database) Close() error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExecForTest runs a raw statement against the test
|
|
||||||
// database. Tests use it to install SQLite triggers that
|
|
||||||
// force a specific write to fail, so that the atomicity of
|
|
||||||
// multi-statement helpers can be exercised.
|
|
||||||
func (database *Database) ExecForTest(
|
|
||||||
ctx context.Context,
|
|
||||||
query string,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx, query)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("exec for test: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
"golang.org/x/crypto/bcrypt"
|
"golang.org/x/crypto/bcrypt"
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
func TestMain(m *testing.M) {
|
||||||
|
|||||||
+1
-782
@@ -7,14 +7,12 @@ import (
|
|||||||
"database/sql"
|
"database/sql"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@@ -1837,782 +1835,3 @@ func (database *Database) PruneSpentHashcash(
|
|||||||
|
|
||||||
return deleted, nil
|
return deleted, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Tier 2: Ban system (+b) ---
|
|
||||||
|
|
||||||
// BanInfo represents a channel ban entry.
|
|
||||||
type BanInfo struct {
|
|
||||||
Mask string
|
|
||||||
SetBy string
|
|
||||||
CreatedAt time.Time
|
|
||||||
}
|
|
||||||
|
|
||||||
// AddChannelBan inserts a ban mask for a channel.
|
|
||||||
func (database *Database) AddChannelBan(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
mask, setBy string,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`INSERT OR IGNORE INTO channel_bans
|
|
||||||
(channel_id, mask, set_by, created_at)
|
|
||||||
VALUES (?, ?, ?, ?)`,
|
|
||||||
channelID, mask, setBy, time.Now())
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("add channel ban: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// RemoveChannelBan removes a ban mask from a channel.
|
|
||||||
func (database *Database) RemoveChannelBan(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
mask string,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`DELETE FROM channel_bans
|
|
||||||
WHERE channel_id = ? AND mask = ?`,
|
|
||||||
channelID, mask)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("remove channel ban: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ListChannelBans returns all bans for a channel.
|
|
||||||
//
|
|
||||||
//nolint:dupl // different query+type vs filtered variant
|
|
||||||
func (database *Database) ListChannelBans(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) ([]BanInfo, error) {
|
|
||||||
rows, err := database.conn.QueryContext(ctx,
|
|
||||||
`SELECT mask, set_by, created_at
|
|
||||||
FROM channel_bans
|
|
||||||
WHERE channel_id = ?
|
|
||||||
ORDER BY created_at ASC`,
|
|
||||||
channelID)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("list channel bans: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() { _ = rows.Close() }()
|
|
||||||
|
|
||||||
var bans []BanInfo
|
|
||||||
|
|
||||||
for rows.Next() {
|
|
||||||
var ban BanInfo
|
|
||||||
|
|
||||||
if scanErr := rows.Scan(
|
|
||||||
&ban.Mask, &ban.SetBy, &ban.CreatedAt,
|
|
||||||
); scanErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"scan channel ban: %w", scanErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
bans = append(bans, ban)
|
|
||||||
}
|
|
||||||
|
|
||||||
if rowErr := rows.Err(); rowErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"iterate channel bans: %w", rowErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return bans, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// IsSessionBanned checks if a session's hostmask matches
|
|
||||||
// any ban in the channel. Returns true if banned.
|
|
||||||
func (database *Database) IsSessionBanned(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID, sessionID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
// Get the session's hostmask parts.
|
|
||||||
var nick, username, hostname string
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT nick, username, hostname
|
|
||||||
FROM sessions WHERE id = ?`,
|
|
||||||
sessionID,
|
|
||||||
).Scan(&nick, &username, &hostname)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"get session hostmask: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
hostmask := FormatHostmask(nick, username, hostname)
|
|
||||||
|
|
||||||
// Get all ban masks for the channel.
|
|
||||||
bans, banErr := database.ListChannelBans(ctx, channelID)
|
|
||||||
if banErr != nil {
|
|
||||||
return false, banErr
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, ban := range bans {
|
|
||||||
if MatchBanMask(ban.Mask, hostmask) {
|
|
||||||
return true, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// MatchBanMask checks if hostmask matches a ban pattern
|
|
||||||
// using IRC-style wildcard matching (* and ?).
|
|
||||||
func MatchBanMask(pattern, hostmask string) bool {
|
|
||||||
return wildcardMatch(
|
|
||||||
strings.ToLower(pattern),
|
|
||||||
strings.ToLower(hostmask),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// wildcardMatch implements simple glob-style matching
|
|
||||||
// with * (any sequence) and ? (any single character).
|
|
||||||
func wildcardMatch(pattern, str string) bool {
|
|
||||||
for len(pattern) > 0 {
|
|
||||||
switch pattern[0] {
|
|
||||||
case '*':
|
|
||||||
// Skip consecutive asterisks.
|
|
||||||
for len(pattern) > 0 && pattern[0] == '*' {
|
|
||||||
pattern = pattern[1:]
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(pattern) == 0 {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
for i := 0; i <= len(str); i++ {
|
|
||||||
if wildcardMatch(pattern, str[i:]) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
|
||||||
case '?':
|
|
||||||
if len(str) == 0 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
pattern = pattern[1:]
|
|
||||||
str = str[1:]
|
|
||||||
default:
|
|
||||||
if len(str) == 0 || pattern[0] != str[0] {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
pattern = pattern[1:]
|
|
||||||
str = str[1:]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return len(str) == 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- Tier 2: Invite-only (+i) ---
|
|
||||||
|
|
||||||
// IsChannelInviteOnly checks if a channel has +i mode.
|
|
||||||
func (database *Database) IsChannelInviteOnly(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
var isInviteOnly int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT is_invite_only FROM channels
|
|
||||||
WHERE id = ?`,
|
|
||||||
channelID,
|
|
||||||
).Scan(&isInviteOnly)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"check invite only: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return isInviteOnly != 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetChannelInviteOnly sets or unsets +i mode.
|
|
||||||
func (database *Database) SetChannelInviteOnly(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
inviteOnly bool,
|
|
||||||
) error {
|
|
||||||
val := 0
|
|
||||||
if inviteOnly {
|
|
||||||
val = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`UPDATE channels
|
|
||||||
SET is_invite_only = ?, updated_at = ?
|
|
||||||
WHERE id = ?`,
|
|
||||||
val, time.Now(), channelID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf(
|
|
||||||
"set invite only: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// AddChannelInvite records that a session has been
|
|
||||||
// invited to a channel.
|
|
||||||
func (database *Database) AddChannelInvite(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID, sessionID int64,
|
|
||||||
invitedBy string,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`INSERT OR IGNORE INTO channel_invites
|
|
||||||
(channel_id, session_id, invited_by, created_at)
|
|
||||||
VALUES (?, ?, ?, ?)`,
|
|
||||||
channelID, sessionID, invitedBy, time.Now())
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("add channel invite: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// HasChannelInvite checks if a session has been invited
|
|
||||||
// to a channel.
|
|
||||||
func (database *Database) HasChannelInvite(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID, sessionID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
var count int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT COUNT(*) FROM channel_invites
|
|
||||||
WHERE channel_id = ? AND session_id = ?`,
|
|
||||||
channelID, sessionID,
|
|
||||||
).Scan(&count)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"check invite: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return count > 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ClearChannelInvite removes a session's invite to a
|
|
||||||
// channel (called after successful JOIN).
|
|
||||||
func (database *Database) ClearChannelInvite(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID, sessionID int64,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`DELETE FROM channel_invites
|
|
||||||
WHERE channel_id = ? AND session_id = ?`,
|
|
||||||
channelID, sessionID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("clear invite: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- Tier 2: Secret (+s) ---
|
|
||||||
|
|
||||||
// IsChannelSecret checks if a channel has +s mode.
|
|
||||||
func (database *Database) IsChannelSecret(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
var isSecret int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT is_secret FROM channels
|
|
||||||
WHERE id = ?`,
|
|
||||||
channelID,
|
|
||||||
).Scan(&isSecret)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"check secret: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return isSecret != 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetChannelSecret sets or unsets +s mode.
|
|
||||||
func (database *Database) SetChannelSecret(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
secret bool,
|
|
||||||
) error {
|
|
||||||
val := 0
|
|
||||||
if secret {
|
|
||||||
val = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`UPDATE channels
|
|
||||||
SET is_secret = ?, updated_at = ?
|
|
||||||
WHERE id = ?`,
|
|
||||||
val, time.Now(), channelID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("set secret: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- No External Messages (+n) ---
|
|
||||||
|
|
||||||
// IsChannelNoExternal checks if a channel has +n mode.
|
|
||||||
func (database *Database) IsChannelNoExternal(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
var isNoExternal int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT is_no_external FROM channels
|
|
||||||
WHERE id = ?`,
|
|
||||||
channelID,
|
|
||||||
).Scan(&isNoExternal)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"check no external: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return isNoExternal != 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetChannelNoExternal sets or unsets +n mode.
|
|
||||||
func (database *Database) SetChannelNoExternal(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
noExternal bool,
|
|
||||||
) error {
|
|
||||||
val := 0
|
|
||||||
if noExternal {
|
|
||||||
val = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`UPDATE channels
|
|
||||||
SET is_no_external = ?, updated_at = ?
|
|
||||||
WHERE id = ?`,
|
|
||||||
val, time.Now(), channelID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("set no external: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ListAllChannelsWithCountsFiltered returns all channels
|
|
||||||
// with member counts, excluding secret channels that
|
|
||||||
// the given session is not a member of.
|
|
||||||
//
|
|
||||||
//nolint:dupl // different query+type vs ListChannelBans
|
|
||||||
func (database *Database) ListAllChannelsWithCountsFiltered(
|
|
||||||
ctx context.Context,
|
|
||||||
sessionID int64,
|
|
||||||
) ([]ChannelInfoFull, error) {
|
|
||||||
rows, err := database.conn.QueryContext(ctx,
|
|
||||||
`SELECT c.name, COUNT(cm.id) AS member_count,
|
|
||||||
c.topic
|
|
||||||
FROM channels c
|
|
||||||
LEFT JOIN channel_members cm
|
|
||||||
ON cm.channel_id = c.id
|
|
||||||
WHERE c.is_secret = 0
|
|
||||||
OR c.id IN (
|
|
||||||
SELECT channel_id FROM channel_members
|
|
||||||
WHERE session_id = ?
|
|
||||||
)
|
|
||||||
GROUP BY c.id
|
|
||||||
ORDER BY c.name ASC`,
|
|
||||||
sessionID)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"list channels filtered: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() { _ = rows.Close() }()
|
|
||||||
|
|
||||||
var channels []ChannelInfoFull
|
|
||||||
|
|
||||||
for rows.Next() {
|
|
||||||
var chanInfo ChannelInfoFull
|
|
||||||
|
|
||||||
if scanErr := rows.Scan(
|
|
||||||
&chanInfo.Name,
|
|
||||||
&chanInfo.MemberCount,
|
|
||||||
&chanInfo.Topic,
|
|
||||||
); scanErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"scan channel: %w", scanErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
channels = append(channels, chanInfo)
|
|
||||||
}
|
|
||||||
|
|
||||||
if rowErr := rows.Err(); rowErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"iterate channels: %w", rowErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return channels, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetSessionChannelsFiltered returns channels a session
|
|
||||||
// belongs to, optionally excluding secret channels for
|
|
||||||
// WHOIS (when the querier is not in the same channel).
|
|
||||||
// If querierID == targetID, returns all channels.
|
|
||||||
func (database *Database) GetSessionChannelsFiltered(
|
|
||||||
ctx context.Context,
|
|
||||||
targetSID, querierSID int64,
|
|
||||||
) ([]ChannelInfo, error) {
|
|
||||||
// If querying yourself, return all channels.
|
|
||||||
if targetSID == querierSID {
|
|
||||||
return database.GetSessionChannels(ctx, targetSID)
|
|
||||||
}
|
|
||||||
|
|
||||||
rows, err := database.conn.QueryContext(ctx,
|
|
||||||
`SELECT c.id, c.name, c.topic
|
|
||||||
FROM channels c
|
|
||||||
JOIN channel_members cm
|
|
||||||
ON cm.channel_id = c.id
|
|
||||||
WHERE cm.session_id = ?
|
|
||||||
AND (c.is_secret = 0
|
|
||||||
OR c.id IN (
|
|
||||||
SELECT channel_id FROM channel_members
|
|
||||||
WHERE session_id = ?
|
|
||||||
))
|
|
||||||
ORDER BY c.name ASC`,
|
|
||||||
targetSID, querierSID)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"get session channels filtered: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() { _ = rows.Close() }()
|
|
||||||
|
|
||||||
var channels []ChannelInfo
|
|
||||||
|
|
||||||
for rows.Next() {
|
|
||||||
var chanInfo ChannelInfo
|
|
||||||
|
|
||||||
if scanErr := rows.Scan(
|
|
||||||
&chanInfo.ID,
|
|
||||||
&chanInfo.Name,
|
|
||||||
&chanInfo.Topic,
|
|
||||||
); scanErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"scan channel: %w", scanErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
channels = append(channels, chanInfo)
|
|
||||||
}
|
|
||||||
|
|
||||||
if rowErr := rows.Err(); rowErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"iterate channels: %w", rowErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return channels, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- Tier 2: Channel Key (+k) ---
|
|
||||||
|
|
||||||
// GetChannelKey returns the key for a channel (empty
|
|
||||||
// string means no key set).
|
|
||||||
func (database *Database) GetChannelKey(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) (string, error) {
|
|
||||||
var key string
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT channel_key FROM channels
|
|
||||||
WHERE id = ?`,
|
|
||||||
channelID,
|
|
||||||
).Scan(&key)
|
|
||||||
if err != nil {
|
|
||||||
return "", fmt.Errorf("get channel key: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return key, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetChannelKey sets or clears the key for a channel.
|
|
||||||
func (database *Database) SetChannelKey(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
key string,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`UPDATE channels
|
|
||||||
SET channel_key = ?, updated_at = ?
|
|
||||||
WHERE id = ?`,
|
|
||||||
key, time.Now(), channelID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("set channel key: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// --- Tier 2: User Limit (+l) ---
|
|
||||||
|
|
||||||
// GetChannelUserLimit returns the user limit for a
|
|
||||||
// channel (0 means no limit).
|
|
||||||
func (database *Database) GetChannelUserLimit(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
) (int, error) {
|
|
||||||
var limit int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(ctx,
|
|
||||||
`SELECT user_limit FROM channels
|
|
||||||
WHERE id = ?`,
|
|
||||||
channelID,
|
|
||||||
).Scan(&limit)
|
|
||||||
if err != nil {
|
|
||||||
return 0, fmt.Errorf(
|
|
||||||
"get channel user limit: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return limit, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetChannelUserLimit sets the user limit for a channel.
|
|
||||||
func (database *Database) SetChannelUserLimit(
|
|
||||||
ctx context.Context,
|
|
||||||
channelID int64,
|
|
||||||
limit int,
|
|
||||||
) error {
|
|
||||||
_, err := database.conn.ExecContext(ctx,
|
|
||||||
`UPDATE channels
|
|
||||||
SET user_limit = ?, updated_at = ?
|
|
||||||
WHERE id = ?`,
|
|
||||||
limit, time.Now(), channelID)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf(
|
|
||||||
"set channel user limit: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetSessionUserModes applies a set of user-mode flag
|
|
||||||
// changes to a session inside a single transaction, so a
|
|
||||||
// multi-mode change such as "+w-o" is all-or-nothing. A nil
|
|
||||||
// pointer means the caller did not mention that mode and
|
|
||||||
// the stored value must be left untouched.
|
|
||||||
func (database *Database) SetSessionUserModes(
|
|
||||||
ctx context.Context,
|
|
||||||
sessionID int64,
|
|
||||||
wallops *bool,
|
|
||||||
oper *bool,
|
|
||||||
) error {
|
|
||||||
if wallops == nil && oper == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
transaction, err := database.conn.BeginTx(ctx, nil)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("begin tx: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if wallops != nil {
|
|
||||||
if _, err := transaction.ExecContext(
|
|
||||||
ctx,
|
|
||||||
`UPDATE sessions SET is_wallops = ? WHERE id = ?`,
|
|
||||||
boolToInt(*wallops), sessionID,
|
|
||||||
); err != nil {
|
|
||||||
_ = transaction.Rollback()
|
|
||||||
|
|
||||||
return fmt.Errorf(
|
|
||||||
"set session wallops: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if oper != nil {
|
|
||||||
if _, err := transaction.ExecContext(
|
|
||||||
ctx,
|
|
||||||
`UPDATE sessions SET is_oper = ? WHERE id = ?`,
|
|
||||||
boolToInt(*oper), sessionID,
|
|
||||||
); err != nil {
|
|
||||||
_ = transaction.Rollback()
|
|
||||||
|
|
||||||
return fmt.Errorf("set session oper: %w", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := transaction.Commit(); err != nil {
|
|
||||||
_ = transaction.Rollback()
|
|
||||||
|
|
||||||
return fmt.Errorf("commit user modes: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// boolToInt renders a Go bool as the 0/1 integer used for
|
|
||||||
// boolean columns in the SQLite schema.
|
|
||||||
func boolToInt(value bool) int {
|
|
||||||
if value {
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetSessionWallops sets the wallops (+w) flag on a
|
|
||||||
// session.
|
|
||||||
func (database *Database) SetSessionWallops(
|
|
||||||
ctx context.Context,
|
|
||||||
sessionID int64,
|
|
||||||
enabled bool,
|
|
||||||
) error {
|
|
||||||
val := 0
|
|
||||||
if enabled {
|
|
||||||
val = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := database.conn.ExecContext(
|
|
||||||
ctx,
|
|
||||||
`UPDATE sessions SET is_wallops = ? WHERE id = ?`,
|
|
||||||
val, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("set session wallops: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// IsSessionWallops returns whether the session has the
|
|
||||||
// wallops (+w) usermode set.
|
|
||||||
func (database *Database) IsSessionWallops(
|
|
||||||
ctx context.Context,
|
|
||||||
sessionID int64,
|
|
||||||
) (bool, error) {
|
|
||||||
var isWallops int
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(
|
|
||||||
ctx,
|
|
||||||
`SELECT is_wallops FROM sessions WHERE id = ?`,
|
|
||||||
sessionID,
|
|
||||||
).Scan(&isWallops)
|
|
||||||
if err != nil {
|
|
||||||
return false, fmt.Errorf(
|
|
||||||
"check session wallops: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return isWallops != 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetWallopsSessionIDs returns all session IDs that have
|
|
||||||
// the wallops (+w) usermode set.
|
|
||||||
func (database *Database) GetWallopsSessionIDs(
|
|
||||||
ctx context.Context,
|
|
||||||
) ([]int64, error) {
|
|
||||||
rows, err := database.conn.QueryContext(
|
|
||||||
ctx,
|
|
||||||
`SELECT id FROM sessions WHERE is_wallops = 1`,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"get wallops sessions: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() { _ = rows.Close() }()
|
|
||||||
|
|
||||||
var ids []int64
|
|
||||||
|
|
||||||
for rows.Next() {
|
|
||||||
var sessionID int64
|
|
||||||
if scanErr := rows.Scan(&sessionID); scanErr != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"scan wallops session: %w", scanErr,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
ids = append(ids, sessionID)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := rows.Err(); err != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"iterate wallops sessions: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return ids, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// UserhostInfo holds the data needed for RPL_USERHOST.
|
|
||||||
type UserhostInfo struct {
|
|
||||||
Nick string
|
|
||||||
Username string
|
|
||||||
Hostname string
|
|
||||||
IsOper bool
|
|
||||||
AwayMessage string
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetUserhostInfo returns USERHOST info for the given
|
|
||||||
// nicks. Nicks with no session are omitted from the
|
|
||||||
// result; any other database failure is returned, because
|
|
||||||
// an unreadable row is not the same as an absent one.
|
|
||||||
func (database *Database) GetUserhostInfo(
|
|
||||||
ctx context.Context,
|
|
||||||
nicks []string,
|
|
||||||
) ([]UserhostInfo, error) {
|
|
||||||
if len(nicks) == 0 {
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
results := make([]UserhostInfo, 0, len(nicks))
|
|
||||||
|
|
||||||
for _, nick := range nicks {
|
|
||||||
var info UserhostInfo
|
|
||||||
|
|
||||||
err := database.conn.QueryRowContext(
|
|
||||||
ctx,
|
|
||||||
`SELECT nick, username, hostname,
|
|
||||||
is_oper, away_message
|
|
||||||
FROM sessions WHERE nick = ?`,
|
|
||||||
nick,
|
|
||||||
).Scan(
|
|
||||||
&info.Nick, &info.Username, &info.Hostname,
|
|
||||||
&info.IsOper, &info.AwayMessage,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, sql.ErrNoRows) {
|
|
||||||
continue // nick not online
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"userhost lookup %q: %w", nick, err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
results = append(results, info)
|
|
||||||
}
|
|
||||||
|
|
||||||
return results, nil
|
|
||||||
}
|
|
||||||
|
|||||||
+1
-596
@@ -4,7 +4,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
|
||||||
_ "modernc.org/sqlite"
|
_ "modernc.org/sqlite"
|
||||||
)
|
)
|
||||||
@@ -1017,598 +1017,3 @@ func TestGetOperCount(t *testing.T) {
|
|||||||
t.Fatalf("expected 1 oper, got %d", count)
|
t.Fatalf("expected 1 oper, got %d", count)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Tier 2 Tests ---
|
|
||||||
|
|
||||||
func TestWildcardMatch(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
tests := []struct {
|
|
||||||
pattern string
|
|
||||||
input string
|
|
||||||
match bool
|
|
||||||
}{
|
|
||||||
{"*!*@*", "nick!user@host", true},
|
|
||||||
{"*!*@*.example.com", "nick!user@foo.example.com", true},
|
|
||||||
{"*!*@*.example.com", "nick!user@other.net", false},
|
|
||||||
{"badnick!*@*", "badnick!user@host", true},
|
|
||||||
{"badnick!*@*", "goodnick!user@host", false},
|
|
||||||
{"nick!user@host", "nick!user@host", true},
|
|
||||||
{"nick!user@host", "nick!user@other", false},
|
|
||||||
{"*", "anything", true},
|
|
||||||
{"?ick!*@*", "nick!user@host", true},
|
|
||||||
{"?ick!*@*", "nn!user@host", false},
|
|
||||||
// Case-insensitive.
|
|
||||||
{"Nick!*@*", "nick!user@host", true},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tc := range tests {
|
|
||||||
result := db.MatchBanMask(tc.pattern, tc.input)
|
|
||||||
if result != tc.match {
|
|
||||||
t.Errorf(
|
|
||||||
"MatchBanMask(%q, %q) = %v, want %v",
|
|
||||||
tc.pattern, tc.input, result, tc.match,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestChannelBanCRUD(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#test")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// No bans initially.
|
|
||||||
bans, err := database.ListChannelBans(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(bans) != 0 {
|
|
||||||
t.Fatalf("expected 0 bans, got %d", len(bans))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add a ban.
|
|
||||||
err = database.AddChannelBan(
|
|
||||||
ctx, chID, "*!*@evil.com", "op",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
bans, err = database.ListChannelBans(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(bans) != 1 {
|
|
||||||
t.Fatalf("expected 1 ban, got %d", len(bans))
|
|
||||||
}
|
|
||||||
|
|
||||||
if bans[0].Mask != "*!*@evil.com" {
|
|
||||||
t.Fatalf("wrong mask: %s", bans[0].Mask)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Duplicate add is ignored (OR IGNORE).
|
|
||||||
err = database.AddChannelBan(
|
|
||||||
ctx, chID, "*!*@evil.com", "op2",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
bans, _ = database.ListChannelBans(ctx, chID)
|
|
||||||
if len(bans) != 1 {
|
|
||||||
t.Fatalf("expected 1 ban after dup, got %d", len(bans))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove ban.
|
|
||||||
err = database.RemoveChannelBan(
|
|
||||||
ctx, chID, "*!*@evil.com",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
bans, _ = database.ListChannelBans(ctx, chID)
|
|
||||||
if len(bans) != 0 {
|
|
||||||
t.Fatalf("expected 0 bans after remove, got %d", len(bans))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestIsSessionBanned(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid, _, _, err := database.CreateSession(
|
|
||||||
ctx, "victim", "victim", "evil.com", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#bantest")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Not banned initially.
|
|
||||||
banned, err := database.IsSessionBanned(ctx, chID, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if banned {
|
|
||||||
t.Fatal("should not be banned initially")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add ban matching the hostmask.
|
|
||||||
err = database.AddChannelBan(
|
|
||||||
ctx, chID, "*!*@evil.com", "op",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
banned, err = database.IsSessionBanned(ctx, chID, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !banned {
|
|
||||||
t.Fatal("should be banned")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestChannelInviteOnly(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#invite")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default: not invite-only.
|
|
||||||
isIO, err := database.IsChannelInviteOnly(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if isIO {
|
|
||||||
t.Fatal("should not be invite-only by default")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set invite-only.
|
|
||||||
err = database.SetChannelInviteOnly(ctx, chID, true)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
isIO, _ = database.IsChannelInviteOnly(ctx, chID)
|
|
||||||
if !isIO {
|
|
||||||
t.Fatal("should be invite-only")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unset.
|
|
||||||
err = database.SetChannelInviteOnly(ctx, chID, false)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
isIO, _ = database.IsChannelInviteOnly(ctx, chID)
|
|
||||||
if isIO {
|
|
||||||
t.Fatal("should not be invite-only")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestChannelInviteCRUD(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid, _, _, err := database.CreateSession(
|
|
||||||
ctx, "invited", "", "", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#inv")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// No invite initially.
|
|
||||||
has, err := database.HasChannelInvite(ctx, chID, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if has {
|
|
||||||
t.Fatal("should not have invite")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add invite.
|
|
||||||
err = database.AddChannelInvite(ctx, chID, sid, "op")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
has, _ = database.HasChannelInvite(ctx, chID, sid)
|
|
||||||
if !has {
|
|
||||||
t.Fatal("should have invite")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear invite.
|
|
||||||
err = database.ClearChannelInvite(ctx, chID, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
has, _ = database.HasChannelInvite(ctx, chID, sid)
|
|
||||||
if has {
|
|
||||||
t.Fatal("invite should be cleared")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestChannelSecret(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#secret")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default: not secret.
|
|
||||||
isSec, err := database.IsChannelSecret(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if isSec {
|
|
||||||
t.Fatal("should not be secret by default")
|
|
||||||
}
|
|
||||||
|
|
||||||
err = database.SetChannelSecret(ctx, chID, true)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
isSec, _ = database.IsChannelSecret(ctx, chID)
|
|
||||||
if !isSec {
|
|
||||||
t.Fatal("should be secret")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// createTestSession is a helper to create a session and
|
|
||||||
// return only the session ID.
|
|
||||||
func createTestSession(
|
|
||||||
t *testing.T,
|
|
||||||
database *db.Database,
|
|
||||||
nick string,
|
|
||||||
) int64 {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
sid, _, _, err := database.CreateSession(
|
|
||||||
t.Context(), nick, "", "", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("create session %s: %v", nick, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return sid
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSecretChannelFiltering(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
// Create two sessions.
|
|
||||||
sid1 := createTestSession(t, database, "member")
|
|
||||||
sid2 := createTestSession(t, database, "outsider")
|
|
||||||
|
|
||||||
// Create a secret channel.
|
|
||||||
chID, _ := database.GetOrCreateChannel(ctx, "#secret")
|
|
||||||
_ = database.SetChannelSecret(ctx, chID, true)
|
|
||||||
_ = database.JoinChannel(ctx, chID, sid1)
|
|
||||||
|
|
||||||
// Create a non-secret channel.
|
|
||||||
chID2, _ := database.GetOrCreateChannel(ctx, "#public")
|
|
||||||
_ = database.JoinChannel(ctx, chID2, sid1)
|
|
||||||
|
|
||||||
// Member should see both.
|
|
||||||
list, err := database.ListAllChannelsWithCountsFiltered(
|
|
||||||
ctx, sid1,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(list) != 2 {
|
|
||||||
t.Fatalf("member should see 2 channels, got %d", len(list))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Outsider should only see public.
|
|
||||||
list, _ = database.ListAllChannelsWithCountsFiltered(
|
|
||||||
ctx, sid2,
|
|
||||||
)
|
|
||||||
if len(list) != 1 {
|
|
||||||
t.Fatalf("outsider should see 1 channel, got %d", len(list))
|
|
||||||
}
|
|
||||||
|
|
||||||
if list[0].Name != "#public" {
|
|
||||||
t.Fatalf("outsider should see #public, got %s", list[0].Name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestWhoisChannelFiltering(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid1 := createTestSession(t, database, "target")
|
|
||||||
sid2 := createTestSession(t, database, "querier")
|
|
||||||
|
|
||||||
// Create secret channel, target joins it.
|
|
||||||
chID, _ := database.GetOrCreateChannel(ctx, "#hidden")
|
|
||||||
_ = database.SetChannelSecret(ctx, chID, true)
|
|
||||||
_ = database.JoinChannel(ctx, chID, sid1)
|
|
||||||
|
|
||||||
// Querier (non-member) should not see the channel.
|
|
||||||
channels, err := database.GetSessionChannelsFiltered(
|
|
||||||
ctx, sid1, sid2,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(channels) != 0 {
|
|
||||||
t.Fatalf(
|
|
||||||
"querier should see 0 channels, got %d",
|
|
||||||
len(channels),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Target querying self should see it.
|
|
||||||
channels, _ = database.GetSessionChannelsFiltered(
|
|
||||||
ctx, sid1, sid1,
|
|
||||||
)
|
|
||||||
if len(channels) != 1 {
|
|
||||||
t.Fatalf(
|
|
||||||
"self-query should see 1 channel, got %d",
|
|
||||||
len(channels),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//nolint:dupl // structurally similar to TestChannelUserLimit
|
|
||||||
func TestChannelKey(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#keyed")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default: no key.
|
|
||||||
key, err := database.GetChannelKey(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if key != "" {
|
|
||||||
t.Fatalf("expected empty key, got %q", key)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set key.
|
|
||||||
err = database.SetChannelKey(ctx, chID, "secret123")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
key, _ = database.GetChannelKey(ctx, chID)
|
|
||||||
if key != "secret123" {
|
|
||||||
t.Fatalf("expected secret123, got %q", key)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear key.
|
|
||||||
err = database.SetChannelKey(ctx, chID, "")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
key, _ = database.GetChannelKey(ctx, chID)
|
|
||||||
if key != "" {
|
|
||||||
t.Fatalf("expected empty key, got %q", key)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//nolint:dupl // structurally similar to TestChannelKey
|
|
||||||
func TestChannelUserLimit(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
chID, err := database.GetOrCreateChannel(ctx, "#limited")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default: no limit.
|
|
||||||
limit, err := database.GetChannelUserLimit(ctx, chID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if limit != 0 {
|
|
||||||
t.Fatalf("expected 0 limit, got %d", limit)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set limit.
|
|
||||||
err = database.SetChannelUserLimit(ctx, chID, 50)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
limit, _ = database.GetChannelUserLimit(ctx, chID)
|
|
||||||
if limit != 50 {
|
|
||||||
t.Fatalf("expected 50, got %d", limit)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear limit.
|
|
||||||
err = database.SetChannelUserLimit(ctx, chID, 0)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
limit, _ = database.GetChannelUserLimit(ctx, chID)
|
|
||||||
if limit != 0 {
|
|
||||||
t.Fatalf("expected 0, got %d", limit)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestSetSessionUserModesIsAtomic proves that a multi-mode
|
|
||||||
// change is all-or-nothing. A trigger makes the is_oper
|
|
||||||
// UPDATE fail after the is_wallops UPDATE has already run,
|
|
||||||
// which is exactly the "+w-o" partial-failure the previous
|
|
||||||
// implementation exhibited: it issued the two UPDATEs
|
|
||||||
// independently, so +w persisted while the caller reported
|
|
||||||
// total failure.
|
|
||||||
func TestSetSessionUserModesIsAtomic(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sessionID, _, _, err := database.CreateSession(
|
|
||||||
ctx, "alice", "", "", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = database.ExecForTest(ctx,
|
|
||||||
`CREATE TRIGGER reject_oper
|
|
||||||
BEFORE UPDATE OF is_oper ON sessions
|
|
||||||
BEGIN SELECT RAISE(ABORT, 'oper write rejected');
|
|
||||||
END`,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
wallops := true
|
|
||||||
oper := false
|
|
||||||
|
|
||||||
err = database.SetSessionUserModes(
|
|
||||||
ctx, sessionID, &wallops, &oper,
|
|
||||||
)
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("expected the rejected oper write to fail")
|
|
||||||
}
|
|
||||||
|
|
||||||
gotWallops, err := database.IsSessionWallops(
|
|
||||||
ctx, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if gotWallops {
|
|
||||||
t.Error(
|
|
||||||
"wallops persisted despite the transaction " +
|
|
||||||
"failing; the apply stage is not atomic",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestSetSessionUserModesAppliesBoth is the success-path
|
|
||||||
// counterpart: when nothing fails, both flags are written,
|
|
||||||
// and a nil pointer leaves that flag untouched.
|
|
||||||
func TestSetSessionUserModesAppliesBoth(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
database := setupTestDB(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sessionID, _, _, err := database.CreateSession(
|
|
||||||
ctx, "alice", "", "", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := database.SetSessionOper(
|
|
||||||
ctx, sessionID, true,
|
|
||||||
); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
wallops := true
|
|
||||||
oper := false
|
|
||||||
|
|
||||||
if err := database.SetSessionUserModes(
|
|
||||||
ctx, sessionID, &wallops, &oper,
|
|
||||||
); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
gotWallops, err := database.IsSessionWallops(
|
|
||||||
ctx, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
gotOper, err := database.IsSessionOper(ctx, sessionID)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !gotWallops || gotOper {
|
|
||||||
t.Errorf(
|
|
||||||
"want wallops=true oper=false, got %v/%v",
|
|
||||||
gotWallops, gotOper,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// A nil pointer must leave the stored value alone.
|
|
||||||
if err := database.SetSessionUserModes(
|
|
||||||
ctx, sessionID, nil, nil,
|
|
||||||
); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
gotWallops, err = database.IsSessionWallops(
|
|
||||||
ctx, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !gotWallops {
|
|
||||||
t.Error("nil pointers must not clear wallops")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
-- Bootstrap: create the schema_migrations table itself.
|
|
||||||
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
||||||
version INTEGER PRIMARY KEY,
|
|
||||||
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
||||||
);
|
|
||||||
INSERT OR IGNORE INTO schema_migrations (version) VALUES (0);
|
|
||||||
@@ -10,7 +10,6 @@ CREATE TABLE IF NOT EXISTS sessions (
|
|||||||
hostname TEXT NOT NULL DEFAULT '',
|
hostname TEXT NOT NULL DEFAULT '',
|
||||||
ip TEXT NOT NULL DEFAULT '',
|
ip TEXT NOT NULL DEFAULT '',
|
||||||
is_oper INTEGER NOT NULL DEFAULT 0,
|
is_oper INTEGER NOT NULL DEFAULT 0,
|
||||||
is_wallops INTEGER NOT NULL DEFAULT 0,
|
|
||||||
password_hash TEXT NOT NULL DEFAULT '',
|
password_hash TEXT NOT NULL DEFAULT '',
|
||||||
signing_key TEXT NOT NULL DEFAULT '',
|
signing_key TEXT NOT NULL DEFAULT '',
|
||||||
away_message TEXT NOT NULL DEFAULT '',
|
away_message TEXT NOT NULL DEFAULT '',
|
||||||
@@ -43,37 +42,10 @@ CREATE TABLE IF NOT EXISTS channels (
|
|||||||
hashcash_bits INTEGER NOT NULL DEFAULT 0,
|
hashcash_bits INTEGER NOT NULL DEFAULT 0,
|
||||||
is_moderated INTEGER NOT NULL DEFAULT 0,
|
is_moderated INTEGER NOT NULL DEFAULT 0,
|
||||||
is_topic_locked INTEGER NOT NULL DEFAULT 1,
|
is_topic_locked INTEGER NOT NULL DEFAULT 1,
|
||||||
is_invite_only INTEGER NOT NULL DEFAULT 0,
|
|
||||||
is_secret INTEGER NOT NULL DEFAULT 0,
|
|
||||||
is_no_external INTEGER NOT NULL DEFAULT 1,
|
|
||||||
channel_key TEXT NOT NULL DEFAULT '',
|
|
||||||
user_limit INTEGER NOT NULL DEFAULT 0,
|
|
||||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||||
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Channel bans
|
|
||||||
CREATE TABLE IF NOT EXISTS channel_bans (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
channel_id INTEGER NOT NULL REFERENCES channels(id) ON DELETE CASCADE,
|
|
||||||
mask TEXT NOT NULL,
|
|
||||||
set_by TEXT NOT NULL,
|
|
||||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
||||||
UNIQUE(channel_id, mask)
|
|
||||||
);
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_channel_bans_channel ON channel_bans(channel_id);
|
|
||||||
|
|
||||||
-- Channel invites (in-memory would be simpler but DB survives restarts)
|
|
||||||
CREATE TABLE IF NOT EXISTS channel_invites (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
channel_id INTEGER NOT NULL REFERENCES channels(id) ON DELETE CASCADE,
|
|
||||||
session_id INTEGER NOT NULL REFERENCES sessions(id) ON DELETE CASCADE,
|
|
||||||
invited_by TEXT NOT NULL DEFAULT '',
|
|
||||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
||||||
UNIQUE(channel_id, session_id)
|
|
||||||
);
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_channel_invites_channel ON channel_invites(channel_id);
|
|
||||||
|
|
||||||
-- Channel members
|
-- Channel members
|
||||||
CREATE TABLE IF NOT EXISTS channel_members (
|
CREATE TABLE IF NOT EXISTS channel_members (
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
|||||||
+1039
-1114
File diff suppressed because it is too large
Load Diff
+12
-506
@@ -18,21 +18,20 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/handlers"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/hashcash"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/healthcheck"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/middleware"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/server"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/stats"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"go.uber.org/fx/fxtest"
|
"go.uber.org/fx/fxtest"
|
||||||
"golang.org/x/crypto/bcrypt"
|
"golang.org/x/crypto/bcrypt"
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/handlers"
|
|
||||||
"sneak.berlin/go/neoirc/internal/hashcash"
|
|
||||||
"sneak.berlin/go/neoirc/internal/healthcheck"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/middleware"
|
|
||||||
"sneak.berlin/go/neoirc/internal/server"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
"sneak.berlin/go/neoirc/internal/stats"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
func TestMain(m *testing.M) {
|
||||||
@@ -208,15 +207,6 @@ func newTestHandlers(
|
|||||||
hcheck *healthcheck.Healthcheck,
|
hcheck *healthcheck.Healthcheck,
|
||||||
tracker *stats.Tracker,
|
tracker *stats.Tracker,
|
||||||
) (*handlers.Handlers, error) {
|
) (*handlers.Handlers, error) {
|
||||||
brk := broker.New()
|
|
||||||
svc := service.New(service.Params{ //nolint:exhaustruct
|
|
||||||
Logger: log,
|
|
||||||
Config: cfg,
|
|
||||||
Database: database,
|
|
||||||
Broker: brk,
|
|
||||||
Globals: globs,
|
|
||||||
})
|
|
||||||
|
|
||||||
hdlr, err := handlers.New(lifecycle, handlers.Params{ //nolint:exhaustruct
|
hdlr, err := handlers.New(lifecycle, handlers.Params{ //nolint:exhaustruct
|
||||||
Logger: log,
|
Logger: log,
|
||||||
Globals: globs,
|
Globals: globs,
|
||||||
@@ -224,8 +214,7 @@ func newTestHandlers(
|
|||||||
Database: database,
|
Database: database,
|
||||||
Healthcheck: hcheck,
|
Healthcheck: hcheck,
|
||||||
Stats: tracker,
|
Stats: tracker,
|
||||||
Broker: brk,
|
Broker: broker.New(),
|
||||||
Service: svc,
|
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("test handlers: %w", err)
|
return nil, fmt.Errorf("test handlers: %w", err)
|
||||||
@@ -4391,486 +4380,3 @@ func TestKickDefaultReason(t *testing.T) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Tier 2 Handler Tests ---
|
|
||||||
|
|
||||||
const (
|
|
||||||
inviteCmd = "INVITE"
|
|
||||||
joinedStatus = "joined"
|
|
||||||
)
|
|
||||||
|
|
||||||
// TestBanAddRemoveList verifies +b add, list, and -b
|
|
||||||
// remove via MODE commands.
|
|
||||||
func TestBanAddRemoveList(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("banop")
|
|
||||||
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#bans",
|
|
||||||
})
|
|
||||||
|
|
||||||
// Add a ban.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#bans",
|
|
||||||
bodyKey: []string{"+b", "*!*@evil.com"},
|
|
||||||
})
|
|
||||||
|
|
||||||
_, lastID := tserver.pollMessages(opToken, 0)
|
|
||||||
|
|
||||||
// List bans (+b with no argument).
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#bans",
|
|
||||||
bodyKey: []string{"+b"},
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(opToken, lastID)
|
|
||||||
|
|
||||||
// Should have RPL_BANLIST (367).
|
|
||||||
banMsg := findNumericWithParams(msgs, "367")
|
|
||||||
if banMsg == nil {
|
|
||||||
t.Fatalf("expected 367 RPL_BANLIST, got %v", msgs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Should have RPL_ENDOFBANLIST (368).
|
|
||||||
if !findNumeric(msgs, "368") {
|
|
||||||
t.Fatal("expected 368 RPL_ENDOFBANLIST")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove the ban.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#bans",
|
|
||||||
bodyKey: []string{"-b", "*!*@evil.com"},
|
|
||||||
})
|
|
||||||
|
|
||||||
_, lastID = tserver.pollMessages(opToken, lastID)
|
|
||||||
|
|
||||||
// List again — should be empty (just end-of-list).
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#bans",
|
|
||||||
bodyKey: []string{"+b"},
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ = tserver.pollMessages(opToken, lastID)
|
|
||||||
banMsg = findNumericWithParams(msgs, "367")
|
|
||||||
if banMsg != nil {
|
|
||||||
t.Fatal("expected no 367 after ban removal")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !findNumeric(msgs, "368") {
|
|
||||||
t.Fatal("expected 368 RPL_ENDOFBANLIST")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestBanBlocksJoin verifies that a banned user cannot
|
|
||||||
// join a channel.
|
|
||||||
func TestBanBlocksJoin(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("banop2")
|
|
||||||
userToken := tserver.createSession("banned2")
|
|
||||||
|
|
||||||
// Op creates channel and sets a ban.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#banjoin",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#banjoin",
|
|
||||||
bodyKey: []string{"+b", "banned2!*@*"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// Banned user tries to join.
|
|
||||||
_, lastID := tserver.pollMessages(userToken, 0)
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#banjoin",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(userToken, lastID)
|
|
||||||
|
|
||||||
// Should get ERR_BANNEDFROMCHAN (474).
|
|
||||||
if !findNumeric(msgs, "474") {
|
|
||||||
t.Fatalf("expected 474 ERR_BANNEDFROMCHAN, got %v", msgs)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestBanBlocksPrivmsg verifies that a banned user who
|
|
||||||
// is already in a channel cannot send messages.
|
|
||||||
func TestBanBlocksPrivmsg(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("banmsgop")
|
|
||||||
userToken := tserver.createSession("banmsgusr")
|
|
||||||
|
|
||||||
// Both join.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#banmsg",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#banmsg",
|
|
||||||
})
|
|
||||||
|
|
||||||
// Op bans the user.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#banmsg",
|
|
||||||
bodyKey: []string{"+b", "banmsgusr!*@*"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// User tries to send a message.
|
|
||||||
_, lastID := tserver.pollMessages(userToken, 0)
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: privmsgCmd,
|
|
||||||
toKey: "#banmsg",
|
|
||||||
bodyKey: []string{"hello"},
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(userToken, lastID)
|
|
||||||
|
|
||||||
// Should get ERR_CANNOTSENDTOCHAN (404).
|
|
||||||
if !findNumeric(msgs, "404") {
|
|
||||||
t.Fatalf("expected 404 ERR_CANNOTSENDTOCHAN, got %v", msgs)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestInviteOnlyJoin verifies +i behavior: join rejected
|
|
||||||
// without invite, accepted with invite.
|
|
||||||
func TestInviteOnlyJoin(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("invop")
|
|
||||||
userToken := tserver.createSession("invusr")
|
|
||||||
|
|
||||||
// Op creates channel and sets +i.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#invonly",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#invonly",
|
|
||||||
bodyKey: []string{"+i"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// User tries to join without invite.
|
|
||||||
_, lastID := tserver.pollMessages(userToken, 0)
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#invonly",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(userToken, lastID)
|
|
||||||
|
|
||||||
if !findNumeric(msgs, "473") {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected 473 ERR_INVITEONLYCHAN, got %v",
|
|
||||||
msgs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Op invites user.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: inviteCmd,
|
|
||||||
bodyKey: []string{"invusr", "#invonly"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// User tries again — should succeed with invite.
|
|
||||||
_, result := tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#invonly",
|
|
||||||
})
|
|
||||||
|
|
||||||
if result[statusKey] != joinedStatus {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected join to succeed with invite, got %v",
|
|
||||||
result,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestSecretChannelHiddenFromList verifies +s hides a
|
|
||||||
// channel from LIST for non-members.
|
|
||||||
func TestSecretChannelHiddenFromList(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("secop")
|
|
||||||
outsiderToken := tserver.createSession("secout")
|
|
||||||
|
|
||||||
// Op creates secret channel.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#secret",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#secret",
|
|
||||||
bodyKey: []string{"+s"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// Outsider does LIST.
|
|
||||||
_, lastID := tserver.pollMessages(outsiderToken, 0)
|
|
||||||
tserver.sendCommand(outsiderToken, map[string]any{
|
|
||||||
commandKey: "LIST",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(outsiderToken, lastID)
|
|
||||||
|
|
||||||
// Should NOT see #secret in any 322 (RPL_LIST).
|
|
||||||
for _, msg := range msgs {
|
|
||||||
code, ok := msg["code"].(float64)
|
|
||||||
if !ok || int(code) != 322 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
params := getNumericParams(msg)
|
|
||||||
for _, p := range params {
|
|
||||||
if p == "#secret" {
|
|
||||||
t.Fatal("outsider should not see #secret in LIST")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Member does LIST — should see it.
|
|
||||||
_, lastID = tserver.pollMessages(opToken, 0)
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: "LIST",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ = tserver.pollMessages(opToken, lastID)
|
|
||||||
|
|
||||||
found := false
|
|
||||||
|
|
||||||
for _, msg := range msgs {
|
|
||||||
code, ok := msg["code"].(float64)
|
|
||||||
if !ok || int(code) != 322 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
params := getNumericParams(msg)
|
|
||||||
for _, p := range params {
|
|
||||||
if p == "#secret" {
|
|
||||||
found = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !found {
|
|
||||||
t.Fatal("member should see #secret in LIST")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestChannelKeyJoin verifies +k behavior: wrong/missing
|
|
||||||
// key is rejected, correct key allows join.
|
|
||||||
func TestChannelKeyJoin(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("keyop")
|
|
||||||
userToken := tserver.createSession("keyusr")
|
|
||||||
|
|
||||||
// Op creates keyed channel.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#keyed",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#keyed",
|
|
||||||
bodyKey: []string{"+k", "mykey"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// User tries without key.
|
|
||||||
_, lastID := tserver.pollMessages(userToken, 0)
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#keyed",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(userToken, lastID)
|
|
||||||
|
|
||||||
if !findNumeric(msgs, "475") {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected 475 ERR_BADCHANNELKEY, got %v",
|
|
||||||
msgs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// User tries with wrong key.
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd,
|
|
||||||
toKey: "#keyed",
|
|
||||||
bodyKey: []string{"wrongkey"},
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ = tserver.pollMessages(userToken, lastID)
|
|
||||||
if !findNumeric(msgs, "475") {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected 475 ERR_BADCHANNELKEY for wrong key, got %v",
|
|
||||||
msgs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// User tries with correct key.
|
|
||||||
_, result := tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd,
|
|
||||||
toKey: "#keyed",
|
|
||||||
bodyKey: []string{"mykey"},
|
|
||||||
})
|
|
||||||
|
|
||||||
if result[statusKey] != joinedStatus {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected join to succeed with correct key, got %v",
|
|
||||||
result,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestUserLimitEnforcement verifies +l behavior: blocks
|
|
||||||
// join when at capacity.
|
|
||||||
func TestUserLimitEnforcement(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("limop")
|
|
||||||
user1Token := tserver.createSession("limusr1")
|
|
||||||
user2Token := tserver.createSession("limusr2")
|
|
||||||
|
|
||||||
// Op creates channel with limit 2.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#limited",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#limited",
|
|
||||||
bodyKey: []string{"+l", "2"},
|
|
||||||
})
|
|
||||||
|
|
||||||
// User1 joins — should succeed (2 members now: op + user1).
|
|
||||||
_, result := tserver.sendCommand(user1Token, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#limited",
|
|
||||||
})
|
|
||||||
if result[statusKey] != joinedStatus {
|
|
||||||
t.Fatalf("user1 should join, got %v", result)
|
|
||||||
}
|
|
||||||
|
|
||||||
// User2 tries to join — should fail (at limit: 2/2).
|
|
||||||
_, lastID := tserver.pollMessages(user2Token, 0)
|
|
||||||
tserver.sendCommand(user2Token, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#limited",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(user2Token, lastID)
|
|
||||||
|
|
||||||
if !findNumeric(msgs, "471") {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected 471 ERR_CHANNELISFULL, got %v",
|
|
||||||
msgs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestModeStringIncludesNewModes verifies that querying
|
|
||||||
// channel mode returns the new modes (+i, +s, +k, +l).
|
|
||||||
func TestModeStringIncludesNewModes(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("modestrop")
|
|
||||||
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#modestr",
|
|
||||||
})
|
|
||||||
|
|
||||||
// Set all tier 2 modes.
|
|
||||||
for _, modeChange := range [][]string{
|
|
||||||
{"+i"}, {"+s"}, {"+k", "pw"}, {"+l", "50"},
|
|
||||||
} {
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#modestr",
|
|
||||||
bodyKey: modeChange,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
_, lastID := tserver.pollMessages(opToken, 0)
|
|
||||||
|
|
||||||
// Query mode.
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: modeCmd, toKey: "#modestr",
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(opToken, lastID)
|
|
||||||
modeMsg := findNumericWithParams(msgs, "324")
|
|
||||||
|
|
||||||
if modeMsg == nil {
|
|
||||||
t.Fatal("expected 324 RPL_CHANNELMODEIS")
|
|
||||||
}
|
|
||||||
|
|
||||||
params := getNumericParams(modeMsg)
|
|
||||||
if len(params) < 2 {
|
|
||||||
t.Fatalf("too few params in 324: %v", params)
|
|
||||||
}
|
|
||||||
|
|
||||||
modeString := params[1]
|
|
||||||
|
|
||||||
for _, c := range []string{"i", "s", "k", "l"} {
|
|
||||||
if !strings.Contains(modeString, c) {
|
|
||||||
t.Fatalf(
|
|
||||||
"mode string %q missing %q",
|
|
||||||
modeString, c,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestISUPPORT verifies the 005 numeric includes the
|
|
||||||
// updated CHANMODES string.
|
|
||||||
func TestISUPPORT(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
token := tserver.createSession("isupport")
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(token, 0)
|
|
||||||
|
|
||||||
isupp := findNumericWithParams(msgs, "005")
|
|
||||||
if isupp == nil {
|
|
||||||
t.Fatal("expected 005 RPL_ISUPPORT")
|
|
||||||
}
|
|
||||||
|
|
||||||
body, _ := isupp["body"].(string)
|
|
||||||
params := getNumericParams(isupp)
|
|
||||||
|
|
||||||
combined := body + " " + strings.Join(params, " ")
|
|
||||||
|
|
||||||
if !strings.Contains(combined, "CHANMODES=b,k,Hl,imnst") {
|
|
||||||
t.Fatalf(
|
|
||||||
"ISUPPORT missing updated CHANMODES, got body=%q params=%v",
|
|
||||||
body, params,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestNonOpCannotSetModes verifies non-operators
|
|
||||||
// cannot set +i, +s, +k, +l, +b.
|
|
||||||
func TestNonOpCannotSetModes(t *testing.T) {
|
|
||||||
tserver := newTestServer(t)
|
|
||||||
opToken := tserver.createSession("modeopx")
|
|
||||||
userToken := tserver.createSession("modeusrx")
|
|
||||||
|
|
||||||
tserver.sendCommand(opToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#noperm",
|
|
||||||
})
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: joinCmd, toKey: "#noperm",
|
|
||||||
})
|
|
||||||
|
|
||||||
modes := [][]string{
|
|
||||||
{"+i"}, {"+s"}, {"+k", "key"}, {"+l", "10"},
|
|
||||||
{"+b", "bad!*@*"},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, modeChange := range modes {
|
|
||||||
_, lastID := tserver.pollMessages(userToken, 0)
|
|
||||||
tserver.sendCommand(userToken, map[string]any{
|
|
||||||
commandKey: modeCmd,
|
|
||||||
toKey: "#noperm",
|
|
||||||
bodyKey: modeChange,
|
|
||||||
})
|
|
||||||
|
|
||||||
msgs, _ := tserver.pollMessages(userToken, lastID)
|
|
||||||
|
|
||||||
// Should get 482 ERR_CHANOPRIVSNEEDED.
|
|
||||||
if !findNumeric(msgs, "482") {
|
|
||||||
t.Fatalf(
|
|
||||||
"expected 482 for %v, got %v",
|
|
||||||
modeChange, msgs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
const minPasswordLength = 8
|
const minPasswordLength = 8
|
||||||
|
|||||||
@@ -9,17 +9,17 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/hashcash"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/healthcheck"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/ratelimit"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/stats"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/hashcash"
|
|
||||||
"sneak.berlin/go/neoirc/internal/healthcheck"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/ratelimit"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
"sneak.berlin/go/neoirc/internal/stats"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var errUnauthorized = errors.New("unauthorized")
|
var errUnauthorized = errors.New("unauthorized")
|
||||||
|
|||||||
@@ -1,576 +0,0 @@
|
|||||||
package handlers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"net/http"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
|
||||||
)
|
|
||||||
|
|
||||||
// maxUserhostNicks is the maximum number of nicks allowed
|
|
||||||
// in a single USERHOST query (RFC 2812).
|
|
||||||
const maxUserhostNicks = 5
|
|
||||||
|
|
||||||
// dispatchBodyOnlyCommand routes commands that take
|
|
||||||
// (writer, request, sessionID, clientID, nick, bodyLines).
|
|
||||||
func (hdlr *Handlers) dispatchBodyOnlyCommand(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick, command string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
switch command {
|
|
||||||
case irc.CmdAway:
|
|
||||||
hdlr.handleAway(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
case irc.CmdNick:
|
|
||||||
hdlr.handleNick(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
case irc.CmdPass:
|
|
||||||
hdlr.handlePass(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
case irc.CmdInvite:
|
|
||||||
hdlr.handleInvite(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// dispatchOperCommand routes oper-related commands (OPER,
|
|
||||||
// KILL, WALLOPS) to their handlers.
|
|
||||||
func (hdlr *Handlers) dispatchOperCommand(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick, command string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
switch command {
|
|
||||||
case irc.CmdOper:
|
|
||||||
hdlr.handleOper(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
case irc.CmdKill:
|
|
||||||
hdlr.handleKill(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
case irc.CmdWallops:
|
|
||||||
hdlr.handleWallops(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, bodyLines,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleUserhost handles the USERHOST command.
|
|
||||||
// Returns user@host info for up to 5 nicks.
|
|
||||||
func (hdlr *Handlers) handleUserhost(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
lines := bodyLines()
|
|
||||||
if len(lines) == 0 {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNeedMoreParams, nick,
|
|
||||||
[]string{irc.CmdUserhost},
|
|
||||||
"Not enough parameters",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Limit to 5 nicks per RFC 2812.
|
|
||||||
nicks := lines
|
|
||||||
if len(nicks) > maxUserhostNicks {
|
|
||||||
nicks = nicks[:maxUserhostNicks]
|
|
||||||
}
|
|
||||||
|
|
||||||
infos, err := hdlr.params.Database.GetUserhostInfo(
|
|
||||||
ctx, nicks,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
hdlr.log.Error(
|
|
||||||
"userhost query failed", "error", err,
|
|
||||||
)
|
|
||||||
hdlr.respondError(
|
|
||||||
writer, request,
|
|
||||||
"internal error",
|
|
||||||
http.StatusInternalServerError,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
replyStr := hdlr.buildUserhostReply(infos)
|
|
||||||
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplUserHost, nick, nil,
|
|
||||||
replyStr,
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// buildUserhostReply builds the RPL_USERHOST reply
|
|
||||||
// string per RFC 2812.
|
|
||||||
func (hdlr *Handlers) buildUserhostReply(
|
|
||||||
infos []db.UserhostInfo,
|
|
||||||
) string {
|
|
||||||
replies := make([]string, 0, len(infos))
|
|
||||||
|
|
||||||
for idx := range infos {
|
|
||||||
info := &infos[idx]
|
|
||||||
|
|
||||||
username := info.Username
|
|
||||||
if username == "" {
|
|
||||||
username = info.Nick
|
|
||||||
}
|
|
||||||
|
|
||||||
hostname := info.Hostname
|
|
||||||
if hostname == "" {
|
|
||||||
hostname = hdlr.serverName()
|
|
||||||
}
|
|
||||||
|
|
||||||
operStar := ""
|
|
||||||
if info.IsOper {
|
|
||||||
operStar = "*"
|
|
||||||
}
|
|
||||||
|
|
||||||
awayPrefix := "+"
|
|
||||||
if info.AwayMessage != "" {
|
|
||||||
awayPrefix = "-"
|
|
||||||
}
|
|
||||||
|
|
||||||
replies = append(replies,
|
|
||||||
info.Nick+operStar+"="+
|
|
||||||
awayPrefix+username+"@"+hostname,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return strings.Join(replies, " ")
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleVersion handles the VERSION command.
|
|
||||||
// Returns the server version string.
|
|
||||||
func (hdlr *Handlers) handleVersion(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
srvName := hdlr.serverName()
|
|
||||||
version := hdlr.svc.ServerVersion()
|
|
||||||
|
|
||||||
// 351 RPL_VERSION
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplVersion, nick,
|
|
||||||
[]string{version + ".", srvName},
|
|
||||||
"",
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleAdmin handles the ADMIN command.
|
|
||||||
// Returns server admin contact info.
|
|
||||||
func (hdlr *Handlers) handleAdmin(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
srvName := hdlr.serverName()
|
|
||||||
|
|
||||||
// 256 RPL_ADMINME
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplAdminMe, nick,
|
|
||||||
[]string{srvName},
|
|
||||||
"Administrative info",
|
|
||||||
)
|
|
||||||
|
|
||||||
// 257 RPL_ADMINLOC1
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplAdminLoc1, nick, nil,
|
|
||||||
"neoirc server",
|
|
||||||
)
|
|
||||||
|
|
||||||
// 258 RPL_ADMINLOC2
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplAdminLoc2, nick, nil,
|
|
||||||
"IRC over HTTP",
|
|
||||||
)
|
|
||||||
|
|
||||||
// 259 RPL_ADMINEMAIL
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplAdminEmail, nick, nil,
|
|
||||||
"admin@"+srvName,
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleInfo handles the INFO command.
|
|
||||||
// Returns server software information.
|
|
||||||
func (hdlr *Handlers) handleInfo(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
for _, line := range hdlr.svc.InfoLines() {
|
|
||||||
// 371 RPL_INFO
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplInfo, nick, nil,
|
|
||||||
line,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// 374 RPL_ENDOFINFO
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplEndOfInfo, nick, nil,
|
|
||||||
"End of /INFO list",
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleTime handles the TIME command.
|
|
||||||
// Returns the server's local time in RFC format.
|
|
||||||
func (hdlr *Handlers) handleTime(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
srvName := hdlr.serverName()
|
|
||||||
|
|
||||||
// 391 RPL_TIME
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplTime, nick,
|
|
||||||
[]string{srvName},
|
|
||||||
time.Now().Format(time.RFC1123),
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleKill handles the KILL command.
|
|
||||||
// Forcibly disconnects a user (oper only).
|
|
||||||
func (hdlr *Handlers) handleKill(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
// Check oper status.
|
|
||||||
isOper, err := hdlr.params.Database.IsSessionOper(
|
|
||||||
ctx, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil || !isOper {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNoPrivileges, nick, nil,
|
|
||||||
"Permission Denied- You're not an IRC operator",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
lines := bodyLines()
|
|
||||||
|
|
||||||
var targetNick string
|
|
||||||
if len(lines) > 0 {
|
|
||||||
targetNick = strings.TrimSpace(lines[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
if targetNick == "" {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNeedMoreParams, nick,
|
|
||||||
[]string{irc.CmdKill},
|
|
||||||
"Not enough parameters",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
reason := "KILLed"
|
|
||||||
if len(lines) > 1 {
|
|
||||||
reason = lines[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
targetSID, lookupErr := hdlr.params.Database.
|
|
||||||
GetSessionByNick(ctx, targetNick)
|
|
||||||
if lookupErr != nil {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNoSuchNick, nick,
|
|
||||||
[]string{targetNick},
|
|
||||||
"No such nick/channel",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Do not allow killing yourself.
|
|
||||||
if targetSID == sessionID {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrCantKillServer, nick, nil,
|
|
||||||
"You cannot KILL yourself",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
quitReason := "Killed (" + nick + " (" + reason + "))"
|
|
||||||
|
|
||||||
// KillSession broadcasts the QUIT, deletes the session
|
|
||||||
// and disconnects the victim's wire connection if it
|
|
||||||
// holds one.
|
|
||||||
hdlr.svc.KillSession(
|
|
||||||
ctx, targetSID, targetNick, quitReason,
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleWallops handles the WALLOPS command.
|
|
||||||
// Broadcasts a message to all users with +w usermode
|
|
||||||
// (oper only).
|
|
||||||
func (hdlr *Handlers) handleWallops(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
// Check oper status.
|
|
||||||
isOper, err := hdlr.params.Database.IsSessionOper(
|
|
||||||
ctx, sessionID,
|
|
||||||
)
|
|
||||||
if err != nil || !isOper {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNoPrivileges, nick, nil,
|
|
||||||
"Permission Denied- You're not an IRC operator",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
lines := bodyLines()
|
|
||||||
if len(lines) == 0 {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrNeedMoreParams, nick,
|
|
||||||
[]string{irc.CmdWallops},
|
|
||||||
"Not enough parameters",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
message := strings.Join(lines, " ")
|
|
||||||
|
|
||||||
wallopsSIDs, err := hdlr.params.Database.
|
|
||||||
GetWallopsSessionIDs(ctx)
|
|
||||||
if err != nil {
|
|
||||||
hdlr.log.Error(
|
|
||||||
"get wallops sessions failed", "error", err,
|
|
||||||
)
|
|
||||||
hdlr.respondError(
|
|
||||||
writer, request,
|
|
||||||
"internal error",
|
|
||||||
http.StatusInternalServerError,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(wallopsSIDs) > 0 {
|
|
||||||
body, mErr := json.Marshal([]string{message})
|
|
||||||
if mErr != nil {
|
|
||||||
hdlr.log.Error(
|
|
||||||
"marshal wallops body", "error", mErr,
|
|
||||||
)
|
|
||||||
hdlr.respondError(
|
|
||||||
writer, request,
|
|
||||||
"internal error",
|
|
||||||
http.StatusInternalServerError,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
_ = hdlr.fanOutSilent(
|
|
||||||
request, irc.CmdWallops, nick, "*",
|
|
||||||
json.RawMessage(body), wallopsSIDs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleUserMode handles user mode queries and changes
|
|
||||||
// (e.g., MODE nick, MODE nick +w). Delegates to the
|
|
||||||
// shared service.ApplyUserMode / service.QueryUserMode so
|
|
||||||
// that mode string processing is identical for both the
|
|
||||||
// HTTP API and IRC wire protocol.
|
|
||||||
func (hdlr *Handlers) handleUserMode(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick, target string,
|
|
||||||
bodyLines func() []string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
// Users can only query or change their own modes. The
|
|
||||||
// check is above the query/change split so that both
|
|
||||||
// forms are rejected, and uses EqualFold because IRC
|
|
||||||
// nicks are case-insensitive — matching the wire path
|
|
||||||
// in ircserver.handleUserMode.
|
|
||||||
if target != "" && !strings.EqualFold(target, nick) {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request, clientID, sessionID,
|
|
||||||
irc.ErrUsersDoNotMatch, nick, nil,
|
|
||||||
"Can't change mode for other users",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
lines := bodyLines()
|
|
||||||
|
|
||||||
// Mode change requested.
|
|
||||||
if len(lines) > 0 {
|
|
||||||
hdlr.changeUserMode(
|
|
||||||
writer, request,
|
|
||||||
sessionID, clientID, nick, lines[0],
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mode query — delegate to shared service.
|
|
||||||
modeStr, err := hdlr.svc.QueryUserMode(ctx, sessionID)
|
|
||||||
if err != nil {
|
|
||||||
hdlr.log.Error(
|
|
||||||
"query user mode failed", "error", err,
|
|
||||||
)
|
|
||||||
hdlr.respondError(
|
|
||||||
writer, request,
|
|
||||||
"internal error",
|
|
||||||
http.StatusInternalServerError,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplUmodeIs, nick, nil,
|
|
||||||
modeStr,
|
|
||||||
)
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
|
|
||||||
// changeUserMode applies a mode string to the caller's own
|
|
||||||
// session. The caller has already verified that the target
|
|
||||||
// nick is the caller's own.
|
|
||||||
func (hdlr *Handlers) changeUserMode(
|
|
||||||
writer http.ResponseWriter,
|
|
||||||
request *http.Request,
|
|
||||||
sessionID, clientID int64,
|
|
||||||
nick, modeStr string,
|
|
||||||
) {
|
|
||||||
ctx := request.Context()
|
|
||||||
|
|
||||||
newModes, err := hdlr.svc.ApplyUserMode(
|
|
||||||
ctx, sessionID, modeStr,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
var ircErr *service.IRCError
|
|
||||||
if errors.As(err, &ircErr) {
|
|
||||||
hdlr.respondIRCError(
|
|
||||||
writer, request,
|
|
||||||
clientID, sessionID,
|
|
||||||
ircErr.Code, nick, ircErr.Params,
|
|
||||||
ircErr.Message,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
hdlr.respondError(
|
|
||||||
writer, request,
|
|
||||||
"internal error",
|
|
||||||
http.StatusInternalServerError,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
hdlr.enqueueNumeric(
|
|
||||||
ctx, clientID, irc.RplUmodeIs, nick, nil,
|
|
||||||
newModes,
|
|
||||||
)
|
|
||||||
|
|
||||||
hdlr.broker.Notify(sessionID)
|
|
||||||
hdlr.respondJSON(writer, request,
|
|
||||||
map[string]string{"status": "ok"},
|
|
||||||
http.StatusOK)
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ import (
|
|||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/hashcash"
|
"git.eeqj.de/sneak/neoirc/internal/hashcash"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/hashcash"
|
"git.eeqj.de/sneak/neoirc/internal/hashcash"
|
||||||
)
|
)
|
||||||
|
|
||||||
const testBits = 2
|
const testBits = 2
|
||||||
|
|||||||
@@ -6,12 +6,12 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/stats"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/stats"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Params defines the dependencies for creating a Healthcheck.
|
// Params defines the dependencies for creating a Healthcheck.
|
||||||
|
|||||||
+36
-382
@@ -8,8 +8,8 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
// sendIRCError maps a service.IRCError to an IRC numeric
|
// sendIRCError maps a service.IRCError to an IRC numeric
|
||||||
@@ -118,7 +118,7 @@ func (c *Conn) handlePrivmsg(
|
|||||||
body, _ := json.Marshal([]string{text}) //nolint:errchkjson
|
body, _ := json.Marshal([]string{text}) //nolint:errchkjson
|
||||||
|
|
||||||
if strings.HasPrefix(target, "#") {
|
if strings.HasPrefix(target, "#") {
|
||||||
_, _, err := c.svc.SendChannelMessage(
|
_, err := c.svc.SendChannelMessage(
|
||||||
ctx, c.sessionID, c.nick,
|
ctx, c.sessionID, c.nick,
|
||||||
msg.Command, target, body, nil,
|
msg.Command, target, body, nil,
|
||||||
)
|
)
|
||||||
@@ -179,7 +179,7 @@ func (c *Conn) joinChannel(
|
|||||||
channel string,
|
channel string,
|
||||||
) {
|
) {
|
||||||
result, err := c.svc.JoinChannel(
|
result, err := c.svc.JoinChannel(
|
||||||
ctx, c.sessionID, c.nick, channel, "",
|
ctx, c.sessionID, c.nick, channel,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.sendIRCError(err)
|
c.sendIRCError(err)
|
||||||
@@ -349,10 +349,7 @@ func (c *Conn) handleQuit(msg *Message) {
|
|||||||
|
|
||||||
c.send("ERROR :Closing Link: " + c.hostname +
|
c.send("ERROR :Closing Link: " + c.hostname +
|
||||||
" (Quit: " + reason + ")")
|
" (Quit: " + reason + ")")
|
||||||
|
|
||||||
c.mu.Lock()
|
|
||||||
c.closed = true
|
c.closed = true
|
||||||
c.mu.Unlock()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// handleTopic gets or sets a channel topic via the shared
|
// handleTopic gets or sets a channel topic via the shared
|
||||||
@@ -434,7 +431,7 @@ func (c *Conn) handleMode(
|
|||||||
if strings.HasPrefix(target, "#") {
|
if strings.HasPrefix(target, "#") {
|
||||||
c.handleChannelMode(ctx, msg)
|
c.handleChannelMode(ctx, msg)
|
||||||
} else {
|
} else {
|
||||||
c.handleUserMode(ctx, msg)
|
c.handleUserMode(msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -493,124 +490,6 @@ func (c *Conn) handleChannelMode(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// modeResult holds the delta strings produced by a
|
|
||||||
// single mode-char application.
|
|
||||||
type modeResult struct {
|
|
||||||
applied string
|
|
||||||
appliedArgs string
|
|
||||||
consumed int
|
|
||||||
skip bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyHashcashMode handles +H/-H (hashcash difficulty).
|
|
||||||
func (c *Conn) applyHashcashMode(
|
|
||||||
ctx context.Context,
|
|
||||||
chID int64,
|
|
||||||
adding bool,
|
|
||||||
args []string,
|
|
||||||
argIdx int,
|
|
||||||
) modeResult {
|
|
||||||
if !adding {
|
|
||||||
_ = c.database.SetChannelHashcashBits(
|
|
||||||
ctx, chID, 0,
|
|
||||||
)
|
|
||||||
|
|
||||||
return modeResult{
|
|
||||||
applied: "-H",
|
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 0,
|
|
||||||
skip: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if argIdx >= len(args) {
|
|
||||||
return modeResult{
|
|
||||||
applied: "",
|
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 0,
|
|
||||||
skip: true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bitsStr := args[argIdx]
|
|
||||||
|
|
||||||
bits, parseErr := strconv.Atoi(bitsStr)
|
|
||||||
if parseErr != nil ||
|
|
||||||
bits < 1 || bits > maxHashcashBits {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrUnknownMode, "H",
|
|
||||||
"is unknown mode char to me",
|
|
||||||
)
|
|
||||||
|
|
||||||
return modeResult{
|
|
||||||
applied: "",
|
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 1,
|
|
||||||
skip: true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_ = c.database.SetChannelHashcashBits(
|
|
||||||
ctx, chID, bits,
|
|
||||||
)
|
|
||||||
|
|
||||||
return modeResult{
|
|
||||||
applied: "+H",
|
|
||||||
appliedArgs: " " + bitsStr,
|
|
||||||
consumed: 1,
|
|
||||||
skip: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyMemberMode handles +o/-o and +v/-v.
|
|
||||||
func (c *Conn) applyMemberMode(
|
|
||||||
ctx context.Context,
|
|
||||||
chID int64,
|
|
||||||
channel string,
|
|
||||||
modeChar rune,
|
|
||||||
adding bool,
|
|
||||||
args []string,
|
|
||||||
argIdx int,
|
|
||||||
) modeResult {
|
|
||||||
if argIdx >= len(args) {
|
|
||||||
return modeResult{
|
|
||||||
applied: "",
|
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 0,
|
|
||||||
skip: true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
targetNick := args[argIdx]
|
|
||||||
|
|
||||||
err := c.svc.ApplyMemberMode(
|
|
||||||
ctx, chID, channel,
|
|
||||||
targetNick, modeChar, adding,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
c.sendIRCError(err)
|
|
||||||
|
|
||||||
return modeResult{
|
|
||||||
applied: "",
|
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 1,
|
|
||||||
skip: true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
prefix := "+"
|
|
||||||
if !adding {
|
|
||||||
prefix = "-"
|
|
||||||
}
|
|
||||||
|
|
||||||
return modeResult{
|
|
||||||
applied: prefix + string(modeChar),
|
|
||||||
appliedArgs: " " + targetNick,
|
|
||||||
consumed: 1,
|
|
||||||
skip: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyChannelModes applies mode changes using the
|
// applyChannelModes applies mode changes using the
|
||||||
// service for individual mode operations.
|
// service for individual mode operations.
|
||||||
func (c *Conn) applyChannelModes(
|
func (c *Conn) applyChannelModes(
|
||||||
@@ -626,57 +505,52 @@ func (c *Conn) applyChannelModes(
|
|||||||
appliedArgs := ""
|
appliedArgs := ""
|
||||||
|
|
||||||
for _, modeChar := range modeStr {
|
for _, modeChar := range modeStr {
|
||||||
var res modeResult
|
|
||||||
|
|
||||||
switch modeChar {
|
switch modeChar {
|
||||||
case '+':
|
case '+':
|
||||||
adding = true
|
adding = true
|
||||||
|
|
||||||
continue
|
|
||||||
case '-':
|
case '-':
|
||||||
adding = false
|
adding = false
|
||||||
|
case 'm', 't':
|
||||||
continue
|
|
||||||
case 'i', 'm', 'n', 's', 't':
|
|
||||||
_ = c.svc.SetChannelFlag(
|
_ = c.svc.SetChannelFlag(
|
||||||
ctx, chID, modeChar, adding,
|
ctx, chID, modeChar, adding,
|
||||||
)
|
)
|
||||||
|
|
||||||
prefix := "+"
|
if adding {
|
||||||
if !adding {
|
applied += "+" + string(modeChar)
|
||||||
prefix = "-"
|
} else {
|
||||||
|
applied += "-" + string(modeChar)
|
||||||
|
}
|
||||||
|
case 'o', 'v':
|
||||||
|
if argIdx >= len(args) {
|
||||||
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
res = modeResult{
|
targetNick := args[argIdx]
|
||||||
applied: prefix + string(modeChar),
|
argIdx++
|
||||||
appliedArgs: "",
|
|
||||||
consumed: 0,
|
err := c.svc.ApplyMemberMode(
|
||||||
skip: false,
|
|
||||||
}
|
|
||||||
case 'H':
|
|
||||||
res = c.applyHashcashMode(
|
|
||||||
ctx, chID, adding, args, argIdx,
|
|
||||||
)
|
|
||||||
case 'o', 'v':
|
|
||||||
res = c.applyMemberMode(
|
|
||||||
ctx, chID, channel,
|
ctx, chID, channel,
|
||||||
modeChar, adding, args, argIdx,
|
targetNick, modeChar, adding,
|
||||||
)
|
)
|
||||||
|
if err != nil {
|
||||||
|
c.sendIRCError(err)
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if adding {
|
||||||
|
applied += "+" + string(modeChar)
|
||||||
|
} else {
|
||||||
|
applied += "-" + string(modeChar)
|
||||||
|
}
|
||||||
|
|
||||||
|
appliedArgs += " " + targetNick
|
||||||
default:
|
default:
|
||||||
c.sendNumeric(
|
c.sendNumeric(
|
||||||
irc.ErrUnknownMode,
|
irc.ErrUnknownMode,
|
||||||
string(modeChar),
|
string(modeChar),
|
||||||
"is unknown mode char to me",
|
"is unknown mode char to me",
|
||||||
)
|
)
|
||||||
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
argIdx += res.consumed
|
|
||||||
|
|
||||||
if !res.skip {
|
|
||||||
applied += res.applied
|
|
||||||
appliedArgs += res.appliedArgs
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -697,13 +571,10 @@ func (c *Conn) applyChannelModes(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// handleUserMode handles MODE for users.
|
// handleUserMode handles MODE for users.
|
||||||
func (c *Conn) handleUserMode(
|
func (c *Conn) handleUserMode(msg *Message) {
|
||||||
ctx context.Context,
|
|
||||||
msg *Message,
|
|
||||||
) {
|
|
||||||
target := msg.Params[0]
|
target := msg.Params[0]
|
||||||
|
|
||||||
if !strings.EqualFold(target, c.currentNick()) {
|
if !strings.EqualFold(target, c.nick) {
|
||||||
c.sendNumeric(
|
c.sendNumeric(
|
||||||
irc.ErrUsersDoNotMatch,
|
irc.ErrUsersDoNotMatch,
|
||||||
"Can't change mode for other users",
|
"Can't change mode for other users",
|
||||||
@@ -712,48 +583,8 @@ func (c *Conn) handleUserMode(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mode query (no mode string).
|
// We don't support user modes beyond the basics.
|
||||||
if len(msg.Params) < 2 { //nolint:mnd
|
c.sendNumeric(irc.RplUmodeIs, "+")
|
||||||
modes, err := c.svc.QueryUserMode(
|
|
||||||
ctx, c.sessionID,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
c.log.Error(
|
|
||||||
"query user mode failed", "error", err,
|
|
||||||
)
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrUmodeUnknownFlag,
|
|
||||||
"Unable to read user modes",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c.sendNumeric(irc.RplUmodeIs, modes)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
newModes, err := c.svc.ApplyUserMode(
|
|
||||||
ctx, c.sessionID, msg.Params[1],
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
var ircErr *service.IRCError
|
|
||||||
if errors.As(err, &ircErr) {
|
|
||||||
c.sendNumeric(ircErr.Code, ircErr.Message)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrUmodeUnknownFlag,
|
|
||||||
"Unknown MODE flag",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c.sendNumeric(irc.RplUmodeIs, newModes)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// handleNames replies with channel member list.
|
// handleNames replies with channel member list.
|
||||||
@@ -1345,180 +1176,3 @@ func (c *Conn) handleUserhost(
|
|||||||
strings.Join(replies, " "),
|
strings.Join(replies, " "),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// handleVersion replies with the server version string.
|
|
||||||
func (c *Conn) handleVersion() {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplVersion,
|
|
||||||
c.svc.ServerVersion()+".", c.serverSfx,
|
|
||||||
"",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleAdmin replies with server admin info.
|
|
||||||
func (c *Conn) handleAdmin() {
|
|
||||||
srvName := c.serverSfx
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplAdminMe,
|
|
||||||
srvName, "Administrative info",
|
|
||||||
)
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplAdminLoc1,
|
|
||||||
"neoirc server",
|
|
||||||
)
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplAdminLoc2,
|
|
||||||
"IRC over HTTP",
|
|
||||||
)
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplAdminEmail,
|
|
||||||
"admin@"+srvName,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleInfo replies with server software info.
|
|
||||||
func (c *Conn) handleInfo() {
|
|
||||||
for _, line := range c.svc.InfoLines() {
|
|
||||||
c.sendNumeric(irc.RplInfo, line)
|
|
||||||
}
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplEndOfInfo,
|
|
||||||
"End of /INFO list",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleTime replies with the server's current time.
|
|
||||||
func (c *Conn) handleTime() {
|
|
||||||
srvName := c.serverSfx
|
|
||||||
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.RplTime,
|
|
||||||
srvName, time.Now().Format(time.RFC1123),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleKillCmd forcibly disconnects a target user (oper
|
|
||||||
// only).
|
|
||||||
func (c *Conn) handleKillCmd(
|
|
||||||
ctx context.Context,
|
|
||||||
msg *Message,
|
|
||||||
) {
|
|
||||||
isOper, err := c.database.IsSessionOper(
|
|
||||||
ctx, c.sessionID,
|
|
||||||
)
|
|
||||||
if err != nil || !isOper {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrNoPrivileges,
|
|
||||||
"Permission Denied- "+
|
|
||||||
"You're not an IRC operator",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(msg.Params) < 1 {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrNeedMoreParams,
|
|
||||||
"KILL", "Not enough parameters",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
targetNick := msg.Params[0]
|
|
||||||
|
|
||||||
reason := "KILLed"
|
|
||||||
if len(msg.Params) > 1 {
|
|
||||||
reason = msg.Params[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
killerNick := c.currentNick()
|
|
||||||
|
|
||||||
if strings.EqualFold(targetNick, killerNick) {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrCantKillServer,
|
|
||||||
"You cannot KILL yourself",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
targetSID, lookupErr := c.database.GetSessionByNick(
|
|
||||||
ctx, targetNick,
|
|
||||||
)
|
|
||||||
if lookupErr != nil {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrNoSuchNick,
|
|
||||||
targetNick, "No such nick/channel",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
quitReason := "Killed (" + killerNick +
|
|
||||||
" (" + reason + "))"
|
|
||||||
|
|
||||||
// KillSession broadcasts the QUIT, deletes the session
|
|
||||||
// and disconnects the victim's wire connection.
|
|
||||||
c.svc.KillSession(
|
|
||||||
ctx, targetSID, targetNick, quitReason,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// handleWallopsCmd broadcasts to all +w users (oper only).
|
|
||||||
func (c *Conn) handleWallopsCmd(
|
|
||||||
ctx context.Context,
|
|
||||||
msg *Message,
|
|
||||||
) {
|
|
||||||
isOper, err := c.database.IsSessionOper(
|
|
||||||
ctx, c.sessionID,
|
|
||||||
)
|
|
||||||
if err != nil || !isOper {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrNoPrivileges,
|
|
||||||
"Permission Denied- "+
|
|
||||||
"You're not an IRC operator",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(msg.Params) < 1 {
|
|
||||||
c.sendNumeric(
|
|
||||||
irc.ErrNeedMoreParams,
|
|
||||||
"WALLOPS", "Not enough parameters",
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
message := msg.Params[0]
|
|
||||||
|
|
||||||
wallopsSIDs, wallErr := c.database.
|
|
||||||
GetWallopsSessionIDs(ctx)
|
|
||||||
if wallErr != nil {
|
|
||||||
c.log.Error(
|
|
||||||
"get wallops sessions failed",
|
|
||||||
"error", wallErr,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(wallopsSIDs) > 0 {
|
|
||||||
body, mErr := json.Marshal([]string{message})
|
|
||||||
if mErr != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
_, _, _ = c.svc.FanOut(
|
|
||||||
ctx, irc.CmdWallops, c.currentNick(), "*",
|
|
||||||
nil, body, nil, wallopsSIDs,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
+21
-154
@@ -11,25 +11,23 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxLineLen = 512
|
maxLineLen = 512
|
||||||
readTimeout = 5 * time.Minute
|
readTimeout = 5 * time.Minute
|
||||||
writeTimeout = 30 * time.Second
|
writeTimeout = 30 * time.Second
|
||||||
killWriteWindow = 2 * time.Second
|
dnsTimeout = 3 * time.Second
|
||||||
dnsTimeout = 3 * time.Second
|
pollInterval = 100 * time.Millisecond
|
||||||
pollInterval = 100 * time.Millisecond
|
pingInterval = 90 * time.Second
|
||||||
pingInterval = 90 * time.Second
|
pongDeadline = 30 * time.Second
|
||||||
pongDeadline = 30 * time.Second
|
maxNickLen = 32
|
||||||
maxNickLen = 32
|
minPasswordLen = 8
|
||||||
minPasswordLen = 8
|
|
||||||
maxHashcashBits = 40
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// cmdHandler is the signature for registered IRC command
|
// cmdHandler is the signature for registered IRC command
|
||||||
@@ -47,12 +45,6 @@ type Conn struct {
|
|||||||
serverSfx string
|
serverSfx string
|
||||||
commands map[string]cmdHandler
|
commands map[string]cmdHandler
|
||||||
|
|
||||||
// writeMu serializes writes to conn. A connection is
|
|
||||||
// written to by its own read loop, by its relay
|
|
||||||
// goroutine, and — when an operator KILLs it — by
|
|
||||||
// another client's goroutine.
|
|
||||||
writeMu sync.Mutex
|
|
||||||
|
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
nick string
|
nick string
|
||||||
username string
|
username string
|
||||||
@@ -69,7 +61,6 @@ type Conn struct {
|
|||||||
|
|
||||||
lastQueueID int64
|
lastQueueID int64
|
||||||
closed bool
|
closed bool
|
||||||
killed bool
|
|
||||||
cancel context.CancelFunc
|
cancel context.CancelFunc
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -106,76 +97,6 @@ func newConn(
|
|||||||
return conn
|
return conn
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disconnect terminates the connection on behalf of an
|
|
||||||
// operator KILL issued from either transport. The victim
|
|
||||||
// is told why, then its socket is closed so that the read
|
|
||||||
// loop unblocks and serve() returns; without the close the
|
|
||||||
// victim would keep a socket that looks alive but silently
|
|
||||||
// delivers nothing. Disconnect is called from the killer's
|
|
||||||
// goroutine, never the victim's.
|
|
||||||
//
|
|
||||||
// The notify-and-close half runs on its own goroutine and
|
|
||||||
// under a short deadline. There is no per-client send
|
|
||||||
// queue: send() writes straight to the victim's socket, so
|
|
||||||
// a victim that has stopped reading would otherwise stall
|
|
||||||
// the killer for the full writeTimeout on each of the two
|
|
||||||
// writes -- wedging the operator's own serve() loop on the
|
|
||||||
// IRC path, or the API request on the HTTP path. Any
|
|
||||||
// client could trigger that deliberately. Disconnect
|
|
||||||
// therefore returns as soon as the victim is marked closed;
|
|
||||||
// the socket is closed shortly afterwards regardless of
|
|
||||||
// whether the notification could be delivered.
|
|
||||||
func (c *Conn) Disconnect(reason string) {
|
|
||||||
c.mu.Lock()
|
|
||||||
|
|
||||||
if c.closed {
|
|
||||||
c.mu.Unlock()
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
c.closed = true
|
|
||||||
c.killed = true
|
|
||||||
nick := c.nick
|
|
||||||
host := c.hostname
|
|
||||||
c.mu.Unlock()
|
|
||||||
|
|
||||||
if nick == "" {
|
|
||||||
nick = "*"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Stop the relay goroutine, which would otherwise keep
|
|
||||||
// polling a queue belonging to a deleted session.
|
|
||||||
if c.cancel != nil {
|
|
||||||
c.cancel()
|
|
||||||
}
|
|
||||||
|
|
||||||
go c.notifyKilledAndClose(nick, host, reason)
|
|
||||||
}
|
|
||||||
|
|
||||||
// notifyKilledAndClose delivers the KILL and ERROR lines to
|
|
||||||
// a killed victim and then closes its socket. It runs on a
|
|
||||||
// goroutine owned by neither the killer nor the victim, and
|
|
||||||
// bounds both writes with killWriteWindow so an unresponsive
|
|
||||||
// victim cannot hold the socket open indefinitely.
|
|
||||||
func (c *Conn) notifyKilledAndClose(
|
|
||||||
nick, host, reason string,
|
|
||||||
) {
|
|
||||||
defer c.conn.Close() //nolint:errcheck
|
|
||||||
|
|
||||||
c.sendWithin(
|
|
||||||
killWriteWindow,
|
|
||||||
FormatMessage(
|
|
||||||
c.serverSfx, irc.CmdKill, nick, reason,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
c.sendWithin(
|
|
||||||
killWriteWindow,
|
|
||||||
"ERROR :Closing Link: "+host+
|
|
||||||
" ("+reason+")",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// buildCommandMap returns a map from IRC command strings
|
// buildCommandMap returns a map from IRC command strings
|
||||||
// to handler functions.
|
// to handler functions.
|
||||||
func (c *Conn) buildCommandMap() map[string]cmdHandler {
|
func (c *Conn) buildCommandMap() map[string]cmdHandler {
|
||||||
@@ -208,13 +129,7 @@ func (c *Conn) buildCommandMap() map[string]cmdHandler {
|
|||||||
"CAP": func(_ context.Context, msg *Message) {
|
"CAP": func(_ context.Context, msg *Message) {
|
||||||
c.handleCAP(msg)
|
c.handleCAP(msg)
|
||||||
},
|
},
|
||||||
"USERHOST": c.handleUserhost,
|
"USERHOST": c.handleUserhost,
|
||||||
irc.CmdVersion: func(context.Context, *Message) { c.handleVersion() },
|
|
||||||
irc.CmdAdmin: func(context.Context, *Message) { c.handleAdmin() },
|
|
||||||
irc.CmdInfo: func(context.Context, *Message) { c.handleInfo() },
|
|
||||||
irc.CmdTime: func(context.Context, *Message) { c.handleTime() },
|
|
||||||
irc.CmdKill: c.handleKillCmd,
|
|
||||||
irc.CmdWallops: c.handleWallopsCmd,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -263,7 +178,7 @@ func (c *Conn) serve(ctx context.Context) {
|
|||||||
|
|
||||||
c.handleMessage(ctx, msg)
|
c.handleMessage(ctx, msg)
|
||||||
|
|
||||||
if c.isClosed() {
|
if c.closed {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -272,65 +187,24 @@ func (c *Conn) serve(ctx context.Context) {
|
|||||||
func (c *Conn) cleanup(ctx context.Context) {
|
func (c *Conn) cleanup(ctx context.Context) {
|
||||||
c.mu.Lock()
|
c.mu.Lock()
|
||||||
wasRegistered := c.registered
|
wasRegistered := c.registered
|
||||||
wasKilled := c.killed
|
|
||||||
sessID := c.sessionID
|
sessID := c.sessionID
|
||||||
nick := c.nick
|
nick := c.nick
|
||||||
c.closed = true
|
c.closed = true
|
||||||
c.mu.Unlock()
|
c.mu.Unlock()
|
||||||
|
|
||||||
if wasRegistered && sessID > 0 {
|
if wasRegistered && sessID > 0 {
|
||||||
c.svc.UnregisterWireConn(sessID, c)
|
c.svc.BroadcastQuit(
|
||||||
|
ctx, sessID, nick, "Connection closed",
|
||||||
// A KILLed session has already been broadcast and
|
)
|
||||||
// deleted by the killer; broadcasting again would
|
|
||||||
// fan out a QUIT for a session row that is gone.
|
|
||||||
if !wasKilled {
|
|
||||||
c.svc.BroadcastQuit(
|
|
||||||
ctx, sessID, nick, "Connection closed",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
c.conn.Close() //nolint:errcheck,gosec
|
c.conn.Close() //nolint:errcheck,gosec
|
||||||
}
|
}
|
||||||
|
|
||||||
// isClosed reports whether the connection has been marked
|
|
||||||
// for teardown, either by QUIT or by an operator KILL.
|
|
||||||
func (c *Conn) isClosed() bool {
|
|
||||||
c.mu.Lock()
|
|
||||||
defer c.mu.Unlock()
|
|
||||||
|
|
||||||
return c.closed
|
|
||||||
}
|
|
||||||
|
|
||||||
// currentNick returns the connection's registered nick.
|
|
||||||
// c.nick is written under c.mu during registration and
|
|
||||||
// NICK changes, so every read must take the mutex.
|
|
||||||
func (c *Conn) currentNick() string {
|
|
||||||
c.mu.Lock()
|
|
||||||
defer c.mu.Unlock()
|
|
||||||
|
|
||||||
return c.nick
|
|
||||||
}
|
|
||||||
|
|
||||||
// send writes a formatted IRC line to the connection.
|
// send writes a formatted IRC line to the connection.
|
||||||
func (c *Conn) send(line string) {
|
func (c *Conn) send(line string) {
|
||||||
c.sendWithin(writeTimeout, line)
|
|
||||||
}
|
|
||||||
|
|
||||||
// sendWithin writes a formatted IRC line to the connection
|
|
||||||
// under the given write deadline. Callers that must not be
|
|
||||||
// held hostage by an unresponsive peer pass a shorter window
|
|
||||||
// than writeTimeout.
|
|
||||||
func (c *Conn) sendWithin(
|
|
||||||
timeout time.Duration,
|
|
||||||
line string,
|
|
||||||
) {
|
|
||||||
c.writeMu.Lock()
|
|
||||||
defer c.writeMu.Unlock()
|
|
||||||
|
|
||||||
_ = c.conn.SetWriteDeadline(
|
_ = c.conn.SetWriteDeadline(
|
||||||
time.Now().Add(timeout),
|
time.Now().Add(writeTimeout),
|
||||||
)
|
)
|
||||||
|
|
||||||
_, _ = fmt.Fprintf(c.conn, "%s\r\n", line)
|
_, _ = fmt.Fprintf(c.conn, "%s\r\n", line)
|
||||||
@@ -511,10 +385,7 @@ func (c *Conn) completeRegistration(ctx context.Context) {
|
|||||||
"failed to create session", "error", err,
|
"failed to create session", "error", err,
|
||||||
)
|
)
|
||||||
c.send("ERROR :Internal server error")
|
c.send("ERROR :Internal server error")
|
||||||
|
|
||||||
c.mu.Lock()
|
|
||||||
c.closed = true
|
c.closed = true
|
||||||
c.mu.Unlock()
|
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -525,10 +396,6 @@ func (c *Conn) completeRegistration(ctx context.Context) {
|
|||||||
c.registered = true
|
c.registered = true
|
||||||
c.mu.Unlock()
|
c.mu.Unlock()
|
||||||
|
|
||||||
// Make this connection reachable by session ID so that
|
|
||||||
// KILL from either transport can disconnect it.
|
|
||||||
c.svc.RegisterWireConn(sessionID, c)
|
|
||||||
|
|
||||||
// If PASS was provided before registration, set the
|
// If PASS was provided before registration, set the
|
||||||
// session password.
|
// session password.
|
||||||
if c.passWord != "" && len(c.passWord) >= minPasswordLen {
|
if c.passWord != "" && len(c.passWord) >= minPasswordLen {
|
||||||
@@ -567,7 +434,7 @@ func (c *Conn) deliverWelcome() {
|
|||||||
"CHANTYPES=#",
|
"CHANTYPES=#",
|
||||||
"NICKLEN=32",
|
"NICKLEN=32",
|
||||||
"PREFIX=(ov)@+",
|
"PREFIX=(ov)@+",
|
||||||
"CHANMODES=,,H,imnst",
|
"CHANMODES=,,H,mnst",
|
||||||
"NETWORK="+c.serverSfx,
|
"NETWORK="+c.serverSfx,
|
||||||
"are supported by this server",
|
"are supported by this server",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,128 +0,0 @@
|
|||||||
package ircserver_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"log/slog"
|
|
||||||
"net"
|
|
||||||
"os"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/ircserver"
|
|
||||||
)
|
|
||||||
|
|
||||||
// disconnectBudget is how long Disconnect is allowed to
|
|
||||||
// take when the victim never reads. It is far below the
|
|
||||||
// 30s writeTimeout that the old synchronous implementation
|
|
||||||
// would have burned on each of its two writes.
|
|
||||||
const disconnectBudget = 2 * time.Second
|
|
||||||
|
|
||||||
// TestDisconnectDoesNotBlockOnUnresponsiveVictim proves
|
|
||||||
// that an operator KILL cannot be stalled by its target.
|
|
||||||
// The victim's socket is a net.Pipe, so every write blocks
|
|
||||||
// until the peer reads and the peer here never does. The
|
|
||||||
// old implementation performed both notification writes on
|
|
||||||
// the killer's goroutine, which wedged the operator's own
|
|
||||||
// serve() loop on the IRC path and the API request on the
|
|
||||||
// HTTP path for as long as the victim cared to stay silent.
|
|
||||||
func TestDisconnectDoesNotBlockOnUnresponsiveVictim(
|
|
||||||
t *testing.T,
|
|
||||||
) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
serverSide, clientSide := net.Pipe()
|
|
||||||
|
|
||||||
t.Cleanup(func() {
|
|
||||||
_ = clientSide.Close()
|
|
||||||
})
|
|
||||||
|
|
||||||
log := slog.New(slog.NewTextHandler(
|
|
||||||
os.Stderr,
|
|
||||||
&slog.HandlerOptions{Level: slog.LevelError}, //nolint:exhaustruct
|
|
||||||
))
|
|
||||||
cfg := &config.Config{ //nolint:exhaustruct
|
|
||||||
ServerName: "test.irc",
|
|
||||||
}
|
|
||||||
|
|
||||||
victim := ircserver.NewTestConn(
|
|
||||||
log, cfg, serverSide, "victim",
|
|
||||||
)
|
|
||||||
|
|
||||||
returned := make(chan struct{})
|
|
||||||
|
|
||||||
go func() {
|
|
||||||
victim.Disconnect("killed by oper")
|
|
||||||
close(returned)
|
|
||||||
}()
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-returned:
|
|
||||||
case <-time.After(disconnectBudget):
|
|
||||||
t.Fatal(
|
|
||||||
"Disconnect blocked on the victim's socket; " +
|
|
||||||
"the killer must not be held hostage",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestDisconnectNotifiesAndClosesVictim is the other half
|
|
||||||
// of the contract: moving the notification off the killer's
|
|
||||||
// goroutine must not lose it. A victim that does read gets
|
|
||||||
// both the KILL and the ERROR line, and then its socket is
|
|
||||||
// closed so its read loop unblocks.
|
|
||||||
func TestDisconnectNotifiesAndClosesVictim(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
serverSide, clientSide := net.Pipe()
|
|
||||||
|
|
||||||
t.Cleanup(func() {
|
|
||||||
_ = clientSide.Close()
|
|
||||||
})
|
|
||||||
|
|
||||||
log := slog.New(slog.NewTextHandler(
|
|
||||||
os.Stderr,
|
|
||||||
&slog.HandlerOptions{Level: slog.LevelError}, //nolint:exhaustruct
|
|
||||||
))
|
|
||||||
cfg := &config.Config{ //nolint:exhaustruct
|
|
||||||
ServerName: "test.irc",
|
|
||||||
}
|
|
||||||
|
|
||||||
victim := ircserver.NewTestConn(
|
|
||||||
log, cfg, serverSide, "victim",
|
|
||||||
)
|
|
||||||
|
|
||||||
lines := make(chan []string, 1)
|
|
||||||
|
|
||||||
go func() {
|
|
||||||
var got []string
|
|
||||||
|
|
||||||
scanner := bufio.NewScanner(clientSide)
|
|
||||||
for scanner.Scan() {
|
|
||||||
got = append(got, scanner.Text())
|
|
||||||
}
|
|
||||||
|
|
||||||
lines <- got
|
|
||||||
}()
|
|
||||||
|
|
||||||
victim.Disconnect("killed by oper")
|
|
||||||
|
|
||||||
var got []string
|
|
||||||
|
|
||||||
select {
|
|
||||||
case got = <-lines:
|
|
||||||
case <-time.After(5 * time.Second):
|
|
||||||
t.Fatal("victim socket was never closed")
|
|
||||||
}
|
|
||||||
|
|
||||||
joined := strings.Join(got, "\n")
|
|
||||||
|
|
||||||
if !strings.Contains(joined, "KILL victim") {
|
|
||||||
t.Errorf("missing KILL line, got: %q", joined)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.Contains(joined, "ERROR :Closing Link:") {
|
|
||||||
t.Errorf("missing ERROR line, got: %q", joined)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,13 +4,11 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewTestServer creates a Server suitable for testing.
|
// NewTestServer creates a Server suitable for testing.
|
||||||
@@ -21,16 +19,13 @@ func NewTestServer(
|
|||||||
database *db.Database,
|
database *db.Database,
|
||||||
brk *broker.Broker,
|
brk *broker.Broker,
|
||||||
) *Server {
|
) *Server {
|
||||||
globs := &globals.Globals{
|
svc := &service.Service{
|
||||||
Appname: "neoirc",
|
DB: database,
|
||||||
Version: "test",
|
Broker: brk,
|
||||||
StartTime: time.Now(),
|
Config: cfg,
|
||||||
|
Log: log,
|
||||||
}
|
}
|
||||||
|
|
||||||
svc := service.NewTestService(
|
|
||||||
database, brk, cfg, globs, log,
|
|
||||||
)
|
|
||||||
|
|
||||||
return &Server{ //nolint:exhaustruct
|
return &Server{ //nolint:exhaustruct
|
||||||
log: log,
|
log: log,
|
||||||
cfg: cfg,
|
cfg: cfg,
|
||||||
@@ -55,21 +50,3 @@ func (s *Server) Stop() {
|
|||||||
func (s *Server) Listener() net.Listener {
|
func (s *Server) Listener() net.Listener {
|
||||||
return s.listener
|
return s.listener
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTestConn wraps an already-established net.Conn in a
|
|
||||||
// Conn so tests can drive connection-level behaviour such
|
|
||||||
// as Disconnect without standing up a whole server.
|
|
||||||
func NewTestConn(
|
|
||||||
log *slog.Logger,
|
|
||||||
cfg *config.Config,
|
|
||||||
tcpConn net.Conn,
|
|
||||||
nick string,
|
|
||||||
) *Conn {
|
|
||||||
conn := newConn(
|
|
||||||
context.Background(), tcpConn, log,
|
|
||||||
nil, nil, cfg, nil,
|
|
||||||
)
|
|
||||||
conn.nick = nick
|
|
||||||
|
|
||||||
return conn
|
|
||||||
}
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ package ircserver_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/ircserver"
|
"git.eeqj.de/sneak/neoirc/internal/ircserver"
|
||||||
)
|
)
|
||||||
|
|
||||||
//nolint:funlen // table-driven test
|
//nolint:funlen // table-driven test
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
// relayMessages polls the client output queue and delivers
|
// relayMessages polls the client output queue and delivers
|
||||||
@@ -120,8 +120,6 @@ func (c *Conn) deliverIRCMessage(
|
|||||||
c.deliverKickMsg(msg, text)
|
c.deliverKickMsg(msg, text)
|
||||||
case command == "INVITE":
|
case command == "INVITE":
|
||||||
c.deliverInviteMsg(msg, text)
|
c.deliverInviteMsg(msg, text)
|
||||||
case command == irc.CmdWallops:
|
|
||||||
c.deliverWallops(msg, text)
|
|
||||||
case command == irc.CmdMode:
|
case command == irc.CmdMode:
|
||||||
c.deliverMode(msg, text)
|
c.deliverMode(msg, text)
|
||||||
case command == irc.CmdPing:
|
case command == irc.CmdPing:
|
||||||
@@ -307,18 +305,6 @@ func (c *Conn) deliverInviteMsg(
|
|||||||
c.sendFromServer("NOTICE", c.nick, text)
|
c.sendFromServer("NOTICE", c.nick, text)
|
||||||
}
|
}
|
||||||
|
|
||||||
// deliverWallops sends a WALLOPS notification.
|
|
||||||
func (c *Conn) deliverWallops(
|
|
||||||
msg *db.IRCMessage,
|
|
||||||
text string,
|
|
||||||
) {
|
|
||||||
prefix := msg.From + "!" + msg.From + "@*"
|
|
||||||
|
|
||||||
c.send(FormatMessage(
|
|
||||||
prefix, irc.CmdWallops, text,
|
|
||||||
))
|
|
||||||
}
|
|
||||||
|
|
||||||
// deliverMode sends a MODE change notification.
|
// deliverMode sends a MODE change notification.
|
||||||
func (c *Conn) deliverMode(
|
func (c *Conn) deliverMode(
|
||||||
msg *db.IRCMessage,
|
msg *db.IRCMessage,
|
||||||
|
|||||||
@@ -7,12 +7,12 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/service"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Params defines the dependencies for creating an IRC
|
// Params defines the dependencies for creating an IRC
|
||||||
|
|||||||
@@ -11,10 +11,10 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
"git.eeqj.de/sneak/neoirc/internal/broker"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
"git.eeqj.de/sneak/neoirc/internal/db"
|
||||||
"sneak.berlin/go/neoirc/internal/ircserver"
|
"git.eeqj.de/sneak/neoirc/internal/ircserver"
|
||||||
|
|
||||||
_ "modernc.org/sqlite"
|
_ "modernc.org/sqlite"
|
||||||
)
|
)
|
||||||
@@ -38,20 +38,6 @@ type testEnv struct {
|
|||||||
func newTestEnv(t *testing.T) *testEnv {
|
func newTestEnv(t *testing.T) *testEnv {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
|
|
||||||
return newTestEnvWithServerName(t, "test.irc")
|
|
||||||
}
|
|
||||||
|
|
||||||
// newTestEnvWithServerName creates a test environment with
|
|
||||||
// an explicit SERVER_NAME. Passing "" exercises the shipped
|
|
||||||
// default from config.go, under which the server must fall
|
|
||||||
// back to "neoirc" rather than emitting an empty
|
|
||||||
// server-name parameter.
|
|
||||||
func newTestEnvWithServerName(
|
|
||||||
t *testing.T,
|
|
||||||
serverName string,
|
|
||||||
) *testEnv {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
dsn := fmt.Sprintf(
|
dsn := fmt.Sprintf(
|
||||||
"file:%s?mode=memory&cache=shared&_journal_mode=WAL",
|
"file:%s?mode=memory&cache=shared&_journal_mode=WAL",
|
||||||
t.Name(),
|
t.Name(),
|
||||||
@@ -81,7 +67,7 @@ func newTestEnvWithServerName(
|
|||||||
brk := broker.New()
|
brk := broker.New()
|
||||||
|
|
||||||
cfg := &config.Config{ //nolint:exhaustruct
|
cfg := &config.Config{ //nolint:exhaustruct
|
||||||
ServerName: serverName,
|
ServerName: "test.irc",
|
||||||
MOTD: "Welcome to test IRC",
|
MOTD: "Welcome to test IRC",
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,87 +112,6 @@ func newTestEnvWithServerName(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// newTestEnvWithOper creates a test environment with oper
|
|
||||||
// credentials configured.
|
|
||||||
func newTestEnvWithOper(t *testing.T) *testEnv {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
dsn := fmt.Sprintf(
|
|
||||||
"file:%s?mode=memory&cache=shared&_journal_mode=WAL",
|
|
||||||
t.Name(),
|
|
||||||
)
|
|
||||||
|
|
||||||
conn, err := sql.Open("sqlite", dsn)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("open db: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
conn.SetMaxOpenConns(1)
|
|
||||||
|
|
||||||
_, err = conn.ExecContext(
|
|
||||||
t.Context(), "PRAGMA foreign_keys = ON",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("pragma: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
database := db.NewTestDatabaseFromConn(conn)
|
|
||||||
|
|
||||||
err = database.RunMigrations(t.Context())
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("migrate: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
brk := broker.New()
|
|
||||||
|
|
||||||
cfg := &config.Config{ //nolint:exhaustruct
|
|
||||||
ServerName: "test.irc",
|
|
||||||
MOTD: "Welcome to test IRC",
|
|
||||||
OperName: "testoper",
|
|
||||||
OperPassword: "testpass",
|
|
||||||
}
|
|
||||||
|
|
||||||
listener, err := net.Listen("tcp", "127.0.0.1:0")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("listen: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
addr := listener.Addr().String()
|
|
||||||
|
|
||||||
err = listener.Close()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("close listener: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
log := slog.New(slog.NewTextHandler(
|
|
||||||
os.Stderr,
|
|
||||||
&slog.HandlerOptions{Level: slog.LevelError}, //nolint:exhaustruct
|
|
||||||
))
|
|
||||||
|
|
||||||
srv := ircserver.NewTestServer(log, cfg, database, brk)
|
|
||||||
|
|
||||||
err = srv.Start(addr)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("start irc server: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
t.Cleanup(func() {
|
|
||||||
srv.Stop()
|
|
||||||
|
|
||||||
err := conn.Close()
|
|
||||||
if err != nil {
|
|
||||||
t.Logf("close db: %v", err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
return &testEnv{
|
|
||||||
database: database,
|
|
||||||
brk: brk,
|
|
||||||
cfg: cfg,
|
|
||||||
srv: srv,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// dial connects to the test server.
|
// dial connects to the test server.
|
||||||
func (env *testEnv) dial(t *testing.T) *testClient {
|
func (env *testEnv) dial(t *testing.T) *testClient {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
@@ -305,36 +210,6 @@ func (tc *testClient) register(nick string) []string {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// readUntilClosed reads until the peer closes the
|
|
||||||
// connection, returning the lines received first. It
|
|
||||||
// fails the test if the connection is still open when the
|
|
||||||
// read deadline expires, which is what a KILL that never
|
|
||||||
// terminates the victim's socket looks like.
|
|
||||||
func (tc *testClient) readUntilClosed() []string {
|
|
||||||
tc.t.Helper()
|
|
||||||
|
|
||||||
_ = tc.conn.SetReadDeadline(
|
|
||||||
time.Now().Add(testTimeout),
|
|
||||||
)
|
|
||||||
|
|
||||||
var lines []string
|
|
||||||
|
|
||||||
for tc.scanner.Scan() {
|
|
||||||
lines = append(lines, tc.scanner.Text())
|
|
||||||
}
|
|
||||||
|
|
||||||
err := tc.scanner.Err()
|
|
||||||
if err != nil {
|
|
||||||
tc.t.Fatalf(
|
|
||||||
"expected EOF on victim socket, got %v "+
|
|
||||||
"(lines: %v)",
|
|
||||||
err, lines,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return lines
|
|
||||||
}
|
|
||||||
|
|
||||||
// assertContains checks that at least one line matches the
|
// assertContains checks that at least one line matches the
|
||||||
// given substring.
|
// given substring.
|
||||||
func assertContains(
|
func assertContains(
|
||||||
@@ -353,27 +228,6 @@ func assertContains(
|
|||||||
t.Errorf("did not find %q in output: %s", substr, description)
|
t.Errorf("did not find %q in output: %s", substr, description)
|
||||||
}
|
}
|
||||||
|
|
||||||
// assertNotContains checks that no line matches the given
|
|
||||||
// substring.
|
|
||||||
func assertNotContains(
|
|
||||||
t *testing.T,
|
|
||||||
lines []string,
|
|
||||||
substr, description string,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
for _, line := range lines {
|
|
||||||
if strings.Contains(line, substr) {
|
|
||||||
t.Errorf(
|
|
||||||
"unexpectedly found %q in output: %s",
|
|
||||||
substr, description,
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// joinAndDrain joins a channel and reads until
|
// joinAndDrain joins a channel and reads until
|
||||||
// RPL_ENDOFNAMES.
|
// RPL_ENDOFNAMES.
|
||||||
func (tc *testClient) joinAndDrain(channel string) {
|
func (tc *testClient) joinAndDrain(channel string) {
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Params defines the dependencies for creating a Logger.
|
// Params defines the dependencies for creating a Logger.
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
basicauth "github.com/99designs/basicauth-go"
|
basicauth "github.com/99designs/basicauth-go"
|
||||||
chimw "github.com/go-chi/chi/v5/middleware"
|
chimw "github.com/go-chi/chi/v5/middleware"
|
||||||
"github.com/go-chi/cors"
|
"github.com/go-chi/cors"
|
||||||
@@ -15,9 +18,6 @@ import (
|
|||||||
"github.com/slok/go-http-metrics/middleware/std"
|
"github.com/slok/go-http-metrics/middleware/std"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const corsMaxAge = 300
|
const corsMaxAge = 300
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package ratelimit_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/ratelimit"
|
"git.eeqj.de/sneak/neoirc/internal/ratelimit"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestNewCreatesLimiter(t *testing.T) {
|
func TestNewCreatesLimiter(t *testing.T) {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/web"
|
"git.eeqj.de/sneak/neoirc/web"
|
||||||
|
|
||||||
sentryhttp "github.com/getsentry/sentry-go/http"
|
sentryhttp "github.com/getsentry/sentry-go/http"
|
||||||
"github.com/go-chi/chi/v5"
|
"github.com/go-chi/chi/v5"
|
||||||
|
|||||||
+21
-17
@@ -12,12 +12,12 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/config"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/globals"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/handlers"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/logger"
|
||||||
|
"git.eeqj.de/sneak/neoirc/internal/middleware"
|
||||||
"go.uber.org/fx"
|
"go.uber.org/fx"
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/handlers"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/middleware"
|
|
||||||
|
|
||||||
"github.com/getsentry/sentry-go"
|
"github.com/getsentry/sentry-go"
|
||||||
"github.com/go-chi/chi/v5"
|
"github.com/go-chi/chi/v5"
|
||||||
@@ -45,6 +45,7 @@ type Params struct {
|
|||||||
// It manages routing, middleware, and lifecycle.
|
// It manages routing, middleware, and lifecycle.
|
||||||
type Server struct {
|
type Server struct {
|
||||||
startupTime time.Time
|
startupTime time.Time
|
||||||
|
exitCode int
|
||||||
sentryEnabled bool
|
sentryEnabled bool
|
||||||
log *slog.Logger
|
log *slog.Logger
|
||||||
ctx context.Context //nolint:containedctx // signal handling pattern
|
ctx context.Context //nolint:containedctx // signal handling pattern
|
||||||
@@ -70,17 +71,7 @@ func New(
|
|||||||
lifecycle.Append(fx.Hook{
|
lifecycle.Append(fx.Hook{
|
||||||
OnStart: func(_ context.Context) error {
|
OnStart: func(_ context.Context) error {
|
||||||
srv.startupTime = time.Now()
|
srv.startupTime = time.Now()
|
||||||
// Configure, enable Sentry, and build the router
|
go srv.Run() //nolint:contextcheck
|
||||||
// synchronously so that srv.router is fully initialized
|
|
||||||
// before OnStart returns. Any HTTP traffic (including
|
|
||||||
// httptest harnesses that wrap srv as a handler) is
|
|
||||||
// therefore guaranteed to see an initialized router,
|
|
||||||
// eliminating the previous race between SetupRoutes
|
|
||||||
// and ServeHTTP.
|
|
||||||
srv.configure()
|
|
||||||
srv.enableSentry()
|
|
||||||
srv.SetupRoutes()
|
|
||||||
go srv.serve() //nolint:contextcheck
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
@@ -92,6 +83,13 @@ func New(
|
|||||||
return srv, nil
|
return srv, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Run starts the server configuration, Sentry, and begins serving.
|
||||||
|
func (srv *Server) Run() {
|
||||||
|
srv.configure()
|
||||||
|
srv.enableSentry()
|
||||||
|
srv.serve()
|
||||||
|
}
|
||||||
|
|
||||||
// ServeHTTP delegates to the chi router.
|
// ServeHTTP delegates to the chi router.
|
||||||
func (srv *Server) ServeHTTP(
|
func (srv *Server) ServeHTTP(
|
||||||
writer http.ResponseWriter,
|
writer http.ResponseWriter,
|
||||||
@@ -129,7 +127,7 @@ func (srv *Server) enableSentry() {
|
|||||||
srv.sentryEnabled = true
|
srv.sentryEnabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srv *Server) serve() {
|
func (srv *Server) serve() int {
|
||||||
srv.ctx, srv.cancelFunc = context.WithCancel(
|
srv.ctx, srv.cancelFunc = context.WithCancel(
|
||||||
context.Background(),
|
context.Background(),
|
||||||
)
|
)
|
||||||
@@ -154,6 +152,8 @@ func (srv *Server) serve() {
|
|||||||
<-srv.ctx.Done()
|
<-srv.ctx.Done()
|
||||||
|
|
||||||
srv.cleanShutdown()
|
srv.cleanShutdown()
|
||||||
|
|
||||||
|
return srv.exitCode
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srv *Server) cleanupForExit() {
|
func (srv *Server) cleanupForExit() {
|
||||||
@@ -161,6 +161,8 @@ func (srv *Server) cleanupForExit() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (srv *Server) cleanShutdown() {
|
func (srv *Server) cleanShutdown() {
|
||||||
|
srv.exitCode = 0
|
||||||
|
|
||||||
ctxShutdown, shutdownCancel := context.WithTimeout(
|
ctxShutdown, shutdownCancel := context.WithTimeout(
|
||||||
context.Background(), shutdownTimeout,
|
context.Background(), shutdownTimeout,
|
||||||
)
|
)
|
||||||
@@ -200,6 +202,8 @@ func (srv *Server) serveUntilShutdown() {
|
|||||||
Handler: srv,
|
Handler: srv,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
srv.SetupRoutes()
|
||||||
|
|
||||||
srv.log.Info(
|
srv.log.Info(
|
||||||
"http begin listen", "listenaddr", listenAddr,
|
"http begin listen", "listenaddr", listenAddr,
|
||||||
)
|
)
|
||||||
|
|||||||
+110
-580
File diff suppressed because it is too large
Load Diff
@@ -1,814 +0,0 @@
|
|||||||
// Tests use a global viper instance for configuration,
|
|
||||||
// making parallel execution unsafe.
|
|
||||||
//
|
|
||||||
//nolint:paralleltest
|
|
||||||
package service_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"go.uber.org/fx"
|
|
||||||
"go.uber.org/fx/fxtest"
|
|
||||||
"golang.org/x/crypto/bcrypt"
|
|
||||||
"sneak.berlin/go/neoirc/internal/broker"
|
|
||||||
"sneak.berlin/go/neoirc/internal/config"
|
|
||||||
"sneak.berlin/go/neoirc/internal/db"
|
|
||||||
"sneak.berlin/go/neoirc/internal/globals"
|
|
||||||
"sneak.berlin/go/neoirc/internal/logger"
|
|
||||||
"sneak.berlin/go/neoirc/internal/service"
|
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
|
||||||
db.SetBcryptCost(bcrypt.MinCost)
|
|
||||||
os.Exit(m.Run())
|
|
||||||
}
|
|
||||||
|
|
||||||
// testEnv holds all dependencies for a service test.
|
|
||||||
type testEnv struct {
|
|
||||||
svc *service.Service
|
|
||||||
db *db.Database
|
|
||||||
broker *broker.Broker
|
|
||||||
app *fxtest.App
|
|
||||||
}
|
|
||||||
|
|
||||||
func newTestEnv(t *testing.T) *testEnv {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
dbURL := fmt.Sprintf(
|
|
||||||
"file:svc_test_%p?mode=memory&cache=shared",
|
|
||||||
t,
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
database *db.Database
|
|
||||||
svc *service.Service
|
|
||||||
)
|
|
||||||
|
|
||||||
brk := broker.New()
|
|
||||||
|
|
||||||
app := fxtest.New(t,
|
|
||||||
fx.Provide(
|
|
||||||
func() *globals.Globals {
|
|
||||||
return &globals.Globals{
|
|
||||||
Appname: "neoirc-test",
|
|
||||||
Version: "test",
|
|
||||||
StartTime: time.Now(),
|
|
||||||
}
|
|
||||||
},
|
|
||||||
logger.New,
|
|
||||||
func(
|
|
||||||
lifecycle fx.Lifecycle,
|
|
||||||
globs *globals.Globals,
|
|
||||||
log *logger.Logger,
|
|
||||||
) (*config.Config, error) {
|
|
||||||
cfg, err := config.New(
|
|
||||||
lifecycle, config.Params{ //nolint:exhaustruct
|
|
||||||
Globals: globs, Logger: log,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf(
|
|
||||||
"test config: %w", err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
cfg.DBURL = dbURL
|
|
||||||
cfg.Port = 0
|
|
||||||
cfg.OperName = "admin"
|
|
||||||
cfg.OperPassword = "secret"
|
|
||||||
|
|
||||||
return cfg, nil
|
|
||||||
},
|
|
||||||
func(
|
|
||||||
lifecycle fx.Lifecycle,
|
|
||||||
log *logger.Logger,
|
|
||||||
cfg *config.Config,
|
|
||||||
) (*db.Database, error) {
|
|
||||||
return db.New(lifecycle, db.Params{ //nolint:exhaustruct
|
|
||||||
Logger: log, Config: cfg,
|
|
||||||
})
|
|
||||||
},
|
|
||||||
func() *broker.Broker { return brk },
|
|
||||||
service.New,
|
|
||||||
),
|
|
||||||
fx.Populate(&database, &svc),
|
|
||||||
)
|
|
||||||
|
|
||||||
app.RequireStart()
|
|
||||||
|
|
||||||
t.Cleanup(func() {
|
|
||||||
app.RequireStop()
|
|
||||||
})
|
|
||||||
|
|
||||||
return &testEnv{
|
|
||||||
svc: svc,
|
|
||||||
db: database,
|
|
||||||
broker: brk,
|
|
||||||
app: app,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// createSession is a test helper that creates a session
|
|
||||||
// and returns the session ID.
|
|
||||||
func createSession(
|
|
||||||
ctx context.Context,
|
|
||||||
t *testing.T,
|
|
||||||
database *db.Database,
|
|
||||||
nick string,
|
|
||||||
) int64 {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
sessionID, _, _, err := database.CreateSession(
|
|
||||||
ctx, nick, nick, "localhost", "127.0.0.1",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("create session %s: %v", nick, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return sessionID
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestFanOut(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid1 := createSession(ctx, t, env.db, "alice")
|
|
||||||
sid2 := createSession(ctx, t, env.db, "bob")
|
|
||||||
|
|
||||||
body, _ := json.Marshal([]string{"hello"}) //nolint:errchkjson
|
|
||||||
|
|
||||||
dbID, uuid, err := env.svc.FanOut(
|
|
||||||
ctx, irc.CmdPrivmsg, "alice", "#test",
|
|
||||||
nil, body, nil,
|
|
||||||
[]int64{sid1, sid2},
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("FanOut: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if dbID == 0 {
|
|
||||||
t.Error("expected non-zero dbID")
|
|
||||||
}
|
|
||||||
|
|
||||||
if uuid == "" {
|
|
||||||
t.Error("expected non-empty UUID")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestJoinChannel(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid := createSession(ctx, t, env.db, "alice")
|
|
||||||
|
|
||||||
result, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid, "alice", "#general", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("JoinChannel: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if result.ChannelID == 0 {
|
|
||||||
t.Error("expected non-zero channel ID")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !result.IsCreator {
|
|
||||||
t.Error("first joiner should be creator")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Second user joins — not creator.
|
|
||||||
sid2 := createSession(ctx, t, env.db, "bob")
|
|
||||||
|
|
||||||
result2, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid2, "bob", "#general", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("JoinChannel bob: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if result2.IsCreator {
|
|
||||||
t.Error("second joiner should not be creator")
|
|
||||||
}
|
|
||||||
|
|
||||||
if result2.ChannelID != result.ChannelID {
|
|
||||||
t.Error("both should join the same channel")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestPartChannel(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid := createSession(ctx, t, env.db, "alice")
|
|
||||||
|
|
||||||
_, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid, "alice", "#general", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("JoinChannel: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = env.svc.PartChannel(
|
|
||||||
ctx, sid, "alice", "#general", "bye",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("PartChannel: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parting a non-existent channel returns error.
|
|
||||||
err = env.svc.PartChannel(
|
|
||||||
ctx, sid, "alice", "#nonexistent", "",
|
|
||||||
)
|
|
||||||
if err == nil {
|
|
||||||
t.Error("expected error for non-existent channel")
|
|
||||||
}
|
|
||||||
|
|
||||||
var ircErr *service.IRCError
|
|
||||||
if !errors.As(err, &ircErr) {
|
|
||||||
t.Errorf("expected IRCError, got %T", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSendChannelMessage(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid1 := createSession(ctx, t, env.db, "alice")
|
|
||||||
sid2 := createSession(ctx, t, env.db, "bob")
|
|
||||||
|
|
||||||
_, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid1, "alice", "#chat", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join alice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = env.svc.JoinChannel(
|
|
||||||
ctx, sid2, "bob", "#chat", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join bob: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
body, _ := json.Marshal([]string{"hello world"}) //nolint:errchkjson
|
|
||||||
|
|
||||||
dbID, uuid, err := env.svc.SendChannelMessage(
|
|
||||||
ctx, sid1, "alice",
|
|
||||||
irc.CmdPrivmsg, "#chat", body, nil,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("SendChannelMessage: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if dbID == 0 {
|
|
||||||
t.Error("expected non-zero dbID")
|
|
||||||
}
|
|
||||||
|
|
||||||
if uuid == "" {
|
|
||||||
t.Error("expected non-empty UUID")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Non-member cannot send.
|
|
||||||
sid3 := createSession(ctx, t, env.db, "charlie")
|
|
||||||
|
|
||||||
_, _, err = env.svc.SendChannelMessage(
|
|
||||||
ctx, sid3, "charlie",
|
|
||||||
irc.CmdPrivmsg, "#chat", body, nil,
|
|
||||||
)
|
|
||||||
if err == nil {
|
|
||||||
t.Error("expected error for non-member send")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestBroadcastQuit(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid1 := createSession(ctx, t, env.db, "alice")
|
|
||||||
sid2 := createSession(ctx, t, env.db, "bob")
|
|
||||||
|
|
||||||
_, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid1, "alice", "#room", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join alice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = env.svc.JoinChannel(
|
|
||||||
ctx, sid2, "bob", "#room", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join bob: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// BroadcastQuit should not panic and should clean up.
|
|
||||||
env.svc.BroadcastQuit(
|
|
||||||
ctx, sid1, "alice", "Goodbye",
|
|
||||||
)
|
|
||||||
|
|
||||||
// Session should be deleted.
|
|
||||||
_, lookupErr := env.db.GetSessionByNick(ctx, "alice")
|
|
||||||
if lookupErr == nil {
|
|
||||||
t.Error("expected session to be deleted after quit")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSendChannelMessage_Moderated(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid1 := createSession(ctx, t, env.db, "alice")
|
|
||||||
sid2 := createSession(ctx, t, env.db, "bob")
|
|
||||||
|
|
||||||
result, err := env.svc.JoinChannel(
|
|
||||||
ctx, sid1, "alice", "#modchat", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join alice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = env.svc.JoinChannel(
|
|
||||||
ctx, sid2, "bob", "#modchat", "",
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("join bob: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set channel to moderated.
|
|
||||||
chID := result.ChannelID
|
|
||||||
_ = env.svc.SetChannelFlag(ctx, chID, 'm', true)
|
|
||||||
|
|
||||||
body, _ := json.Marshal([]string{"test"}) //nolint:errchkjson
|
|
||||||
|
|
||||||
// Bob (non-op, non-voiced) should fail to send.
|
|
||||||
_, _, err = env.svc.SendChannelMessage(
|
|
||||||
ctx, sid2, "bob",
|
|
||||||
irc.CmdPrivmsg, "#modchat", body, nil,
|
|
||||||
)
|
|
||||||
if err == nil {
|
|
||||||
t.Error("expected error for non-voiced user in moderated channel")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Alice (operator) should succeed.
|
|
||||||
_, _, err = env.svc.SendChannelMessage(
|
|
||||||
ctx, sid1, "alice",
|
|
||||||
irc.CmdPrivmsg, "#modchat", body, nil,
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("operator should be able to send in moderated channel: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestQueryUserMode(t *testing.T) {
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
|
|
||||||
sid := createSession(ctx, t, env.db, "alice")
|
|
||||||
|
|
||||||
// Fresh session has no modes.
|
|
||||||
modes, err := env.svc.QueryUserMode(ctx, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("query user mode: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if modes != "+" {
|
|
||||||
t.Errorf("expected +, got %s", modes)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set wallops.
|
|
||||||
_ = env.db.SetSessionWallops(ctx, sid, true)
|
|
||||||
|
|
||||||
modes, err = env.svc.QueryUserMode(ctx, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("query user mode: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if modes != "+w" {
|
|
||||||
t.Errorf("expected +w, got %s", modes)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set oper.
|
|
||||||
_ = env.db.SetSessionOper(ctx, sid, true)
|
|
||||||
|
|
||||||
modes, err = env.svc.QueryUserMode(ctx, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("query user mode: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if modes != "+ow" {
|
|
||||||
t.Errorf("expected +ow, got %s", modes)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeCaseState is the subset of session user-mode
|
|
||||||
// state the rigorous TestApplyUserMode suite asserts on. It
|
|
||||||
// mirrors the columns (oper, wallops) that the parser is
|
|
||||||
// permitted to mutate.
|
|
||||||
type applyUserModeCaseState struct {
|
|
||||||
oper bool
|
|
||||||
wallops bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeCase describes one rigor-suite case for
|
|
||||||
// Service.ApplyUserMode: the pre-call DB state, the mode
|
|
||||||
// string input, and the expected post-call observable state
|
|
||||||
// (mode string on success, IRC error code on rejection, and
|
|
||||||
// persisted session state either way).
|
|
||||||
type applyUserModeCase struct {
|
|
||||||
name string
|
|
||||||
initialState applyUserModeCaseState
|
|
||||||
modeStr string
|
|
||||||
wantModes string
|
|
||||||
wantErr bool
|
|
||||||
wantErrCode irc.IRCMessageType
|
|
||||||
wantState applyUserModeCaseState
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeCases returns every case listed in sneak's
|
|
||||||
// review of PR #96 plus a few adjacent ones. Split across
|
|
||||||
// helpers by category so each stays under funlen.
|
|
||||||
func applyUserModeCases() []applyUserModeCase {
|
|
||||||
cases := applyUserModeHappyPathCases()
|
|
||||||
cases = append(cases, applyUserModeSignTransitionCases()...)
|
|
||||||
cases = append(cases, applyUserModeMalformedCases()...)
|
|
||||||
cases = append(cases, applyUserModeUnknownLetterCases()...)
|
|
||||||
|
|
||||||
return cases
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeHappyPathCases covers valid single-char and
|
|
||||||
// multi-char-without-sign-transition mode operations.
|
|
||||||
func applyUserModeHappyPathCases() []applyUserModeCase {
|
|
||||||
return []applyUserModeCase{
|
|
||||||
{
|
|
||||||
name: "+w from empty",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+w",
|
|
||||||
wantModes: "+w",
|
|
||||||
wantErr: false,
|
|
||||||
wantErrCode: 0,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: true},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "-w from +w",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: true},
|
|
||||||
modeStr: "-w",
|
|
||||||
wantModes: "+",
|
|
||||||
wantErr: false,
|
|
||||||
wantErrCode: 0,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "-o from +o",
|
|
||||||
initialState: applyUserModeCaseState{oper: true, wallops: false},
|
|
||||||
modeStr: "-o",
|
|
||||||
wantModes: "+",
|
|
||||||
wantErr: false,
|
|
||||||
wantErrCode: 0,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "-wo from +ow",
|
|
||||||
initialState: applyUserModeCaseState{oper: true, wallops: true},
|
|
||||||
modeStr: "-wo",
|
|
||||||
wantModes: "+",
|
|
||||||
wantErr: false,
|
|
||||||
wantErrCode: 0,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeSignTransitionCases covers multi-char mode
|
|
||||||
// strings where '+' and '-' flip partway through. +o is
|
|
||||||
// never legal via MODE, so strings containing it must be
|
|
||||||
// rejected atomically.
|
|
||||||
func applyUserModeSignTransitionCases() []applyUserModeCase {
|
|
||||||
return []applyUserModeCase{
|
|
||||||
{
|
|
||||||
name: "+w-o from +o",
|
|
||||||
initialState: applyUserModeCaseState{oper: true, wallops: false},
|
|
||||||
modeStr: "+w-o",
|
|
||||||
wantModes: "+w",
|
|
||||||
wantErr: false,
|
|
||||||
wantErrCode: 0,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: true},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// +o is rejected before any op applies; wallops
|
|
||||||
// stays set.
|
|
||||||
name: "-w+o always rejects +o",
|
|
||||||
initialState: applyUserModeCaseState{oper: true, wallops: true},
|
|
||||||
modeStr: "-w+o",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: true, wallops: true},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// Wallops must NOT be cleared; oper must NOT be
|
|
||||||
// cleared. Rejection is fully atomic.
|
|
||||||
name: "+o-w+w rejects because of +o",
|
|
||||||
initialState: applyUserModeCaseState{oper: true, wallops: true},
|
|
||||||
modeStr: "+o-w+w",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: true, wallops: true},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeMalformedCases covers inputs that lack a
|
|
||||||
// leading '+' or '-' and inputs that consist of bare signs
|
|
||||||
// without mode letters. All must be rejected with no side
|
|
||||||
// effects.
|
|
||||||
func applyUserModeMalformedCases() []applyUserModeCase {
|
|
||||||
return []applyUserModeCase{
|
|
||||||
{
|
|
||||||
name: "w no prefix rejects",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "w",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// Prove wallops is NOT cleared — the whole point
|
|
||||||
// of sneak's review.
|
|
||||||
name: "xw no prefix rejects (would have been" +
|
|
||||||
" silently -w before)",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: true},
|
|
||||||
modeStr: "xw",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: true},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "empty string rejects",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "bare + rejects",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "bare - rejects",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "-",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "+-+ rejects (no mode letters)",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+-+",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// applyUserModeUnknownLetterCases covers well-formed prefix
|
|
||||||
// strings that contain unknown mode letters. Rejection must
|
|
||||||
// be atomic: any valid letters before the invalid one must
|
|
||||||
// not persist.
|
|
||||||
func applyUserModeUnknownLetterCases() []applyUserModeCase {
|
|
||||||
return []applyUserModeCase{
|
|
||||||
{
|
|
||||||
name: "-x+y rejects unknown -x",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "-x+y",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "+y-x rejects unknown +y",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+y-x",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "+z unknown mode rejects",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+z",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// Wallops must NOT be set.
|
|
||||||
name: "+wz rejects whole thing; +w side effect" +
|
|
||||||
" must NOT persist",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+wz",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "+wo rejects whole thing; +w side effect" +
|
|
||||||
" must NOT persist",
|
|
||||||
initialState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
modeStr: "+wo",
|
|
||||||
wantModes: "",
|
|
||||||
wantErr: true,
|
|
||||||
wantErrCode: irc.ErrUmodeUnknownFlag,
|
|
||||||
wantState: applyUserModeCaseState{oper: false, wallops: false},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestApplyUserMode is the rigorous table-driven suite for
|
|
||||||
// the shared user-mode parser. It covers every case listed
|
|
||||||
// in sneak's review of PR #96 plus a few adjacent ones.
|
|
||||||
// Each case asserts the resulting mode string AND the
|
|
||||||
// persisted session state, to prove that rejected input
|
|
||||||
// leaves no side effects.
|
|
||||||
func TestApplyUserMode(t *testing.T) {
|
|
||||||
for _, testCase := range applyUserModeCases() {
|
|
||||||
t.Run(testCase.name, func(t *testing.T) {
|
|
||||||
runApplyUserModeCase(t, testCase)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// runApplyUserModeCase executes one applyUserModeCase: seed
|
|
||||||
// the session state, invoke ApplyUserMode, and verify both
|
|
||||||
// the returned value and the post-call persisted state.
|
|
||||||
func runApplyUserModeCase(
|
|
||||||
t *testing.T, testCase applyUserModeCase,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
env := newTestEnv(t)
|
|
||||||
ctx := t.Context()
|
|
||||||
sid := createSession(ctx, t, env.db, "alice")
|
|
||||||
|
|
||||||
seedApplyUserModeState(ctx, t, env.db, sid, testCase.initialState)
|
|
||||||
|
|
||||||
result, err := env.svc.ApplyUserMode(
|
|
||||||
ctx, sid, testCase.modeStr,
|
|
||||||
)
|
|
||||||
|
|
||||||
verifyApplyUserModeOutcome(t, testCase, result, err)
|
|
||||||
verifyApplyUserModeState(ctx, t, env.db, sid, testCase.wantState)
|
|
||||||
}
|
|
||||||
|
|
||||||
// seedApplyUserModeState installs the pre-call session
|
|
||||||
// state described by initialState.
|
|
||||||
func seedApplyUserModeState(
|
|
||||||
ctx context.Context,
|
|
||||||
t *testing.T,
|
|
||||||
database *db.Database,
|
|
||||||
sid int64,
|
|
||||||
initialState applyUserModeCaseState,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
if initialState.oper {
|
|
||||||
if err := database.SetSessionOper(
|
|
||||||
ctx, sid, true,
|
|
||||||
); err != nil {
|
|
||||||
t.Fatalf("init oper: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if initialState.wallops {
|
|
||||||
if err := database.SetSessionWallops(
|
|
||||||
ctx, sid, true,
|
|
||||||
); err != nil {
|
|
||||||
t.Fatalf("init wallops: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// verifyApplyUserModeOutcome asserts the direct return
|
|
||||||
// value of ApplyUserMode. It dispatches to the error- or
|
|
||||||
// success-specific verifier based on wantErr.
|
|
||||||
func verifyApplyUserModeOutcome(
|
|
||||||
t *testing.T,
|
|
||||||
testCase applyUserModeCase,
|
|
||||||
result string,
|
|
||||||
err error,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
if testCase.wantErr {
|
|
||||||
verifyApplyUserModeError(t, testCase, err)
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
verifyApplyUserModeSuccess(t, testCase, result, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// verifyApplyUserModeError checks that err is a
|
|
||||||
// *service.IRCError whose code matches wantErrCode.
|
|
||||||
func verifyApplyUserModeError(
|
|
||||||
t *testing.T, testCase applyUserModeCase, err error,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
var ircErr *service.IRCError
|
|
||||||
if !errors.As(err, &ircErr) {
|
|
||||||
t.Fatalf("expected IRCError, got %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if ircErr.Code != testCase.wantErrCode {
|
|
||||||
t.Errorf(
|
|
||||||
"code: want %d got %d",
|
|
||||||
testCase.wantErrCode, ircErr.Code,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// verifyApplyUserModeSuccess checks that err is nil and the
|
|
||||||
// returned mode string matches wantModes.
|
|
||||||
func verifyApplyUserModeSuccess(
|
|
||||||
t *testing.T,
|
|
||||||
testCase applyUserModeCase,
|
|
||||||
result string,
|
|
||||||
err error,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unexpected error: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if result != testCase.wantModes {
|
|
||||||
t.Errorf(
|
|
||||||
"modes: want %q got %q",
|
|
||||||
testCase.wantModes, result,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// verifyApplyUserModeState asserts the post-call persisted
|
|
||||||
// session state. This is the atomicity guarantee sneak
|
|
||||||
// demanded: whether the call succeeded or was rejected, the
|
|
||||||
// DB must match wantState exactly.
|
|
||||||
func verifyApplyUserModeState(
|
|
||||||
ctx context.Context,
|
|
||||||
t *testing.T,
|
|
||||||
database *db.Database,
|
|
||||||
sid int64,
|
|
||||||
wantState applyUserModeCaseState,
|
|
||||||
) {
|
|
||||||
t.Helper()
|
|
||||||
|
|
||||||
gotOper, err := database.IsSessionOper(ctx, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("read oper: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
gotWallops, err := database.IsSessionWallops(ctx, sid)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("read wallops: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if gotOper != wantState.oper {
|
|
||||||
t.Errorf(
|
|
||||||
"oper: want %v got %v",
|
|
||||||
wantState.oper, gotOper,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
if gotWallops != wantState.wallops {
|
|
||||||
t.Errorf(
|
|
||||||
"wallops: want %v got %v",
|
|
||||||
wantState.wallops, gotWallops,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,7 @@ package stats_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/internal/stats"
|
"git.eeqj.de/sneak/neoirc/internal/stats"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestNew(t *testing.T) {
|
func TestNew(t *testing.T) {
|
||||||
|
|||||||
+22
-29
@@ -2,33 +2,26 @@ package irc
|
|||||||
|
|
||||||
// IRC command names (RFC 1459 / RFC 2812).
|
// IRC command names (RFC 1459 / RFC 2812).
|
||||||
const (
|
const (
|
||||||
CmdAdmin = "ADMIN"
|
CmdAway = "AWAY"
|
||||||
CmdAway = "AWAY"
|
CmdInvite = "INVITE"
|
||||||
CmdInfo = "INFO"
|
CmdJoin = "JOIN"
|
||||||
CmdInvite = "INVITE"
|
CmdKick = "KICK"
|
||||||
CmdJoin = "JOIN"
|
CmdList = "LIST"
|
||||||
CmdKick = "KICK"
|
CmdLusers = "LUSERS"
|
||||||
CmdKill = "KILL"
|
CmdMode = "MODE"
|
||||||
CmdList = "LIST"
|
CmdMotd = "MOTD"
|
||||||
CmdLusers = "LUSERS"
|
CmdNames = "NAMES"
|
||||||
CmdMode = "MODE"
|
CmdNick = "NICK"
|
||||||
CmdMotd = "MOTD"
|
CmdNotice = "NOTICE"
|
||||||
CmdNames = "NAMES"
|
CmdOper = "OPER"
|
||||||
CmdNick = "NICK"
|
CmdPass = "PASS"
|
||||||
CmdNotice = "NOTICE"
|
CmdPart = "PART"
|
||||||
CmdOper = "OPER"
|
CmdPing = "PING"
|
||||||
CmdPass = "PASS"
|
CmdPong = "PONG"
|
||||||
CmdPart = "PART"
|
CmdPrivmsg = "PRIVMSG"
|
||||||
CmdPing = "PING"
|
CmdQuit = "QUIT"
|
||||||
CmdPong = "PONG"
|
CmdTopic = "TOPIC"
|
||||||
CmdPrivmsg = "PRIVMSG"
|
CmdUser = "USER"
|
||||||
CmdQuit = "QUIT"
|
CmdWho = "WHO"
|
||||||
CmdTime = "TIME"
|
CmdWhois = "WHOIS"
|
||||||
CmdTopic = "TOPIC"
|
|
||||||
CmdUser = "USER"
|
|
||||||
CmdUserhost = "USERHOST"
|
|
||||||
CmdVersion = "VERSION"
|
|
||||||
CmdWallops = "WALLOPS"
|
|
||||||
CmdWho = "WHO"
|
|
||||||
CmdWhois = "WHOIS"
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sneak.berlin/go/neoirc/pkg/irc"
|
"git.eeqj.de/sneak/neoirc/pkg/irc"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestName(t *testing.T) {
|
func TestName(t *testing.T) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/JOIN.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/JOIN.json",
|
||||||
"title": "JOIN",
|
"title": "JOIN",
|
||||||
"description": "Join a channel. C2S: request to join. S2C: notification that a user joined. RFC 1459 §4.2.1.",
|
"description": "Join a channel. C2S: request to join. S2C: notification that a user joined. RFC 1459 §4.2.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/KICK.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/KICK.json",
|
||||||
"title": "KICK",
|
"title": "KICK",
|
||||||
"description": "Kick a user from a channel. RFC 1459 §4.2.8.",
|
"description": "Kick a user from a channel. RFC 1459 §4.2.8.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/MODE.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/MODE.json",
|
||||||
"title": "MODE",
|
"title": "MODE",
|
||||||
"description": "Set or query channel/user modes. RFC 1459 §4.2.3.",
|
"description": "Set or query channel/user modes. RFC 1459 §4.2.3.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/NICK.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/NICK.json",
|
||||||
"title": "NICK",
|
"title": "NICK",
|
||||||
"description": "Change nickname. C2S: request new nick. S2C: notification of nick change. RFC 1459 §4.1.2.",
|
"description": "Change nickname. C2S: request new nick. S2C: notification of nick change. RFC 1459 §4.1.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/NOTICE.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/NOTICE.json",
|
||||||
"title": "NOTICE",
|
"title": "NOTICE",
|
||||||
"description": "Send a notice. Like PRIVMSG but must not trigger automatic replies. RFC 1459 §4.4.2.",
|
"description": "Send a notice. Like PRIVMSG but must not trigger automatic replies. RFC 1459 §4.4.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/PART.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/PART.json",
|
||||||
"title": "PART",
|
"title": "PART",
|
||||||
"description": "Leave a channel. C2S: request to leave. S2C: notification that a user left. RFC 1459 §4.2.2.",
|
"description": "Leave a channel. C2S: request to leave. S2C: notification that a user left. RFC 1459 §4.2.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/PING.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/PING.json",
|
||||||
"title": "PING",
|
"title": "PING",
|
||||||
"description": "Keepalive. C2S or S2S. Server responds with PONG. RFC 1459 §4.6.2.",
|
"description": "Keepalive. C2S or S2S. Server responds with PONG. RFC 1459 §4.6.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/PONG.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/PONG.json",
|
||||||
"title": "PONG",
|
"title": "PONG",
|
||||||
"description": "Keepalive response. S2C or S2S. RFC 1459 §4.6.3.",
|
"description": "Keepalive response. S2C or S2S. RFC 1459 §4.6.3.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/PRIVMSG.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/PRIVMSG.json",
|
||||||
"title": "PRIVMSG",
|
"title": "PRIVMSG",
|
||||||
"description": "Send a message to a channel or user. C2S: client sends to server. S2C: server relays to recipients. RFC 1459 §4.4.1.",
|
"description": "Send a message to a channel or user. C2S: client sends to server. S2C: server relays to recipients. RFC 1459 §4.4.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/PUBKEY.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/PUBKEY.json",
|
||||||
"title": "PUBKEY",
|
"title": "PUBKEY",
|
||||||
"description": "Announce or relay a user's public signing key. C2S: client announces key to channel or server. S2C: server relays to channel members. Protocol extension (not in RFC 1459). Body is a structured object (not an array) containing the key material.",
|
"description": "Announce or relay a user's public signing key. C2S: client announces key to channel or server. S2C: server relays to channel members. Protocol extension (not in RFC 1459). Body is a structured object (not an array) containing the key material.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/QUIT.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/QUIT.json",
|
||||||
"title": "QUIT",
|
"title": "QUIT",
|
||||||
"description": "User disconnected. S2C only. RFC 1459 §4.1.6.",
|
"description": "User disconnected. S2C only. RFC 1459 §4.1.6.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/commands/TOPIC.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/commands/TOPIC.json",
|
||||||
"title": "TOPIC",
|
"title": "TOPIC",
|
||||||
"description": "Get or set channel topic. C2S: set topic (body present) or query (body absent). S2C: topic change notification. RFC 1459 §4.2.4.",
|
"description": "Get or set channel topic. C2S: set topic (body present) or query (body absent). S2C: topic change notification. RFC 1459 §4.2.4.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/message.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/message.json",
|
||||||
"title": "IRC Message Envelope",
|
"title": "IRC Message Envelope",
|
||||||
"description": "Base envelope for all messages. Mirrors IRC wire format (RFC 1459/2812) encoded as JSON over HTTP. The 'command' field carries either an IRC command name (PRIVMSG, JOIN, etc.) or a three-digit numeric reply code (001, 353, 433, etc.).",
|
"description": "Base envelope for all messages. Mirrors IRC wire format (RFC 1459/2812) encoded as JSON over HTTP. The 'command' field carries either an IRC command name (PRIVMSG, JOIN, etc.) or a three-digit numeric reply code (001, 353, 433, etc.).",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/001.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/001.json",
|
||||||
"title": "001 RPL_WELCOME",
|
"title": "001 RPL_WELCOME",
|
||||||
"description": "Welcome message sent after successful session creation. RFC 2812 \u00a75.1.",
|
"description": "Welcome message sent after successful session creation. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/002.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/002.json",
|
||||||
"title": "002 RPL_YOURHOST",
|
"title": "002 RPL_YOURHOST",
|
||||||
"description": "Server host info sent after session creation. RFC 2812 \u00a75.1.",
|
"description": "Server host info sent after session creation. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/003.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/003.json",
|
||||||
"title": "003 RPL_CREATED",
|
"title": "003 RPL_CREATED",
|
||||||
"description": "Server creation date. RFC 2812 \u00a75.1.",
|
"description": "Server creation date. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/004.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/004.json",
|
||||||
"title": "004 RPL_MYINFO",
|
"title": "004 RPL_MYINFO",
|
||||||
"description": "Server info (name, version, available modes). RFC 2812 \u00a75.1.",
|
"description": "Server info (name, version, available modes). RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/322.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/322.json",
|
||||||
"title": "322 RPL_LIST",
|
"title": "322 RPL_LIST",
|
||||||
"description": "Channel list entry. One per channel in response to LIST. RFC 1459 \u00a76.2.",
|
"description": "Channel list entry. One per channel in response to LIST. RFC 1459 \u00a76.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/323.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/323.json",
|
||||||
"title": "323 RPL_LISTEND",
|
"title": "323 RPL_LISTEND",
|
||||||
"description": "End of channel list. RFC 1459 \u00a76.2.",
|
"description": "End of channel list. RFC 1459 \u00a76.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/332.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/332.json",
|
||||||
"title": "332 RPL_TOPIC",
|
"title": "332 RPL_TOPIC",
|
||||||
"description": "Channel topic (sent on JOIN or TOPIC query). RFC 1459 \u00a76.2.",
|
"description": "Channel topic (sent on JOIN or TOPIC query). RFC 1459 \u00a76.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/353.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/353.json",
|
||||||
"title": "353 RPL_NAMREPLY",
|
"title": "353 RPL_NAMREPLY",
|
||||||
"description": "Channel member list. Sent on JOIN or NAMES query. RFC 1459 \u00a76.2.",
|
"description": "Channel member list. Sent on JOIN or NAMES query. RFC 1459 \u00a76.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/366.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/366.json",
|
||||||
"title": "366 RPL_ENDOFNAMES",
|
"title": "366 RPL_ENDOFNAMES",
|
||||||
"description": "End of NAMES list. RFC 1459 \u00a76.2.",
|
"description": "End of NAMES list. RFC 1459 \u00a76.2.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/372.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/372.json",
|
||||||
"title": "372 RPL_MOTD",
|
"title": "372 RPL_MOTD",
|
||||||
"description": "MOTD line. One message per line of the MOTD. RFC 2812 \u00a75.1.",
|
"description": "MOTD line. One message per line of the MOTD. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/375.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/375.json",
|
||||||
"title": "375 RPL_MOTDSTART",
|
"title": "375 RPL_MOTDSTART",
|
||||||
"description": "Start of MOTD. RFC 2812 \u00a75.1.",
|
"description": "Start of MOTD. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/376.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/376.json",
|
||||||
"title": "376 RPL_ENDOFMOTD",
|
"title": "376 RPL_ENDOFMOTD",
|
||||||
"description": "End of MOTD. RFC 2812 \u00a75.1.",
|
"description": "End of MOTD. RFC 2812 \u00a75.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/401.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/401.json",
|
||||||
"title": "401 ERR_NOSUCHNICK",
|
"title": "401 ERR_NOSUCHNICK",
|
||||||
"description": "No such nick/channel. RFC 1459 \u00a76.1.",
|
"description": "No such nick/channel. RFC 1459 \u00a76.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/403.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/403.json",
|
||||||
"title": "403 ERR_NOSUCHCHANNEL",
|
"title": "403 ERR_NOSUCHCHANNEL",
|
||||||
"description": "No such channel. RFC 1459 \u00a76.1.",
|
"description": "No such channel. RFC 1459 \u00a76.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/433.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/433.json",
|
||||||
"title": "433 ERR_NICKNAMEINUSE",
|
"title": "433 ERR_NICKNAMEINUSE",
|
||||||
"description": "Nickname is already in use. RFC 1459 \u00a76.1.",
|
"description": "Nickname is already in use. RFC 1459 \u00a76.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/442.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/442.json",
|
||||||
"title": "442 ERR_NOTONCHANNEL",
|
"title": "442 ERR_NOTONCHANNEL",
|
||||||
"description": "You're not on that channel. RFC 1459 \u00a76.1.",
|
"description": "You're not on that channel. RFC 1459 \u00a76.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"$id": "https://sneak.berlin/go/neoirc/schema/numerics/482.json",
|
"$id": "https://git.eeqj.de/sneak/neoirc/schema/numerics/482.json",
|
||||||
"title": "482 ERR_CHANOPRIVSNEEDED",
|
"title": "482 ERR_CHANOPRIVSNEEDED",
|
||||||
"description": "You're not channel operator. RFC 1459 \u00a76.1.",
|
"description": "You're not channel operator. RFC 1459 \u00a76.1.",
|
||||||
"$ref": "../message.json",
|
"$ref": "../message.json",
|
||||||
|
|||||||
Reference in New Issue
Block a user