Skip to content

Commit 8672a90

Browse files
authored
record server name in cliexit table (#64)
1 parent e2e6b47 commit 8672a90

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

beryllia/database/cliconn.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ async def add(
179179
hostname: str,
180180
ip: Optional[Union[IPv4Address, IPv6Address]],
181181
reason: str,
182+
server: str,
182183
) -> int:
183184

184185
query = """
@@ -192,9 +193,10 @@ async def add(
192193
search_host,
193194
ip,
194195
reason,
196+
server,
195197
ts
196198
)
197-
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, NOW()::TIMESTAMP)
199+
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, NOW()::TIMESTAMP)
198200
RETURNING id
199201
"""
200202
args = [
@@ -207,6 +209,7 @@ async def add(
207209
str(self.to_search(hostname, SearchType.HOST)),
208210
ip,
209211
reason,
212+
server,
210213
]
211214
async with self.pool.acquire() as conn:
212215
return await conn.fetchval(query, *args)

beryllia/parse/snote.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ async def _handle_cliexit(self, server: str, match: Match) -> None:
135135
cliconn_id, _ = self._cliconns.pop(nickname)
136136

137137
await self._database.cliexit.add(
138-
cliconn_id, nickname, username, hostname, ip, reason
138+
cliconn_id, nickname, username, hostname, ip, reason, server
139139
)
140140

141141
if not nickname in self._kline_waiting_exit:

make-database.sql

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ CREATE TABLE cliexit (
122122
search_host VARCHAR(64) NOT NULL,
123123
ip INET,
124124
reason VARCHAR(260) NOT NULL,
125+
server VARCHAR(92),
125126
ts TIMESTAMP NOT NULL
126127
);
127128
-- for retention period bulk deletion

0 commit comments

Comments
 (0)