File size: 11,183 Bytes
5c2ed06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
  for (var name in all)
    __defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
  if (from && typeof from === "object" || typeof from === "function") {
    for (let key of __getOwnPropNames(from))
      if (!__hasOwnProp.call(to, key) && key !== except)
        __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  }
  return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var roomlogs_exports = {};
__export(roomlogs_exports, {
  Roomlog: () => Roomlog,
  Roomlogs: () => Roomlogs,
  roomlogDB: () => roomlogDB,
  roomlogTable: () => roomlogTable
});
module.exports = __toCommonJS(roomlogs_exports);
var import_lib = require("../lib");
var import_database = require("../lib/database");
/**
 * Roomlogs
 * Pokemon Showdown - http://pokemonshowdown.com/
 *
 * This handles data storage for rooms.
 *
 * @license MIT
 */
const roomlogDB = (() => {
  if (!global.Config || !Config.replaysdb || Config.disableroomlogdb)
    return null;
  return new import_database.PGDatabase(Config.replaysdb);
})();
const roomlogTable = roomlogDB?.getTable("roomlogs");
class Roomlog {
  constructor(room, options = {}) {
    this.visibleMessageCount = 0;
    this.roomid = room.roomid;
    this.isMultichannel = !!options.isMultichannel;
    this.noAutoTruncate = !!options.noAutoTruncate;
    this.noLogTimes = !!options.noLogTimes;
    this.log = [];
    this.broadcastBuffer = [];
    this.roomlogStream = void 0;
    this.roomlogFilename = "";
    this.numTruncatedLines = 0;
    this.setupRoomlogStream();
  }
  getScrollback(channel = 0) {
    let log = this.log;
    if (!this.noLogTimes)
      log = [`|:|${~~(Date.now() / 1e3)}`].concat(log);
    if (!this.isMultichannel) {
      return log.join("\n") + "\n";
    }
    log = [];
    for (let i = 0; i < this.log.length; ++i) {
      const line = this.log[i];
      const split = /\|split\|p(\d)/g.exec(line);
      if (split) {
        const canSeePrivileged = channel === Number(split[1]) || channel === -1;
        const ownLine = this.log[i + (canSeePrivileged ? 1 : 2)];
        if (ownLine)
          log.push(ownLine);
        i += 2;
      } else {
        log.push(line);
      }
    }
    return log.join("\n") + "\n";
  }
  setupRoomlogStream() {
    if (this.roomlogStream === null)
      return;
    if (!Config.logchat || this.roomid.startsWith("battle-") || this.roomid.startsWith("game-")) {
      this.roomlogStream = null;
      return;
    }
    if (roomlogTable) {
      this.roomlogTable = roomlogTable;
      this.roomlogStream = null;
      return;
    }
    const date = new Date();
    const dateString = Chat.toTimestamp(date).split(" ")[0];
    const monthString = dateString.split("-", 2).join("-");
    const basepath = `chat/${this.roomid}/`;
    const relpath = `${monthString}/${dateString}.txt`;
    if (relpath === this.roomlogFilename)
      return;
    Monitor.logPath(basepath + monthString).mkdirpSync();
    this.roomlogFilename = relpath;
    if (this.roomlogStream)
      void this.roomlogStream.writeEnd();
    this.roomlogStream = Monitor.logPath(basepath + relpath).createAppendStream();
    const link0 = basepath + "today.txt.0";
    Monitor.logPath(link0).unlinkIfExistsSync();
    try {
      Monitor.logPath(link0).symlinkToSync(relpath);
      Monitor.logPath(link0).renameSync(basepath + "today.txt");
    } catch {
    }
    if (!Roomlogs.rollLogTimer)
      Roomlogs.rollLogs();
  }
  add(message) {
    this.roomlog(message);
    if (["|c|", "|c:|", "|raw|", "|html|", "|uhtml"].some((k) => message.startsWith(k))) {
      this.visibleMessageCount++;
    }
    message = this.withTimestamp(message);
    this.log.push(message);
    this.broadcastBuffer.push(message);
    return this;
  }
  withTimestamp(message) {
    if (!this.noLogTimes && message.startsWith("|c|")) {
      return `|c:|${Math.trunc(Date.now() / 1e3)}|${message.slice(3)}`;
    } else {
      return message;
    }
  }
  hasUsername(username) {
    const userid = toID(username);
    for (const line of this.log) {
      if (line.startsWith("|c:|")) {
        const curUserid = toID(line.split("|", 4)[3]);
        if (curUserid === userid)
          return true;
      } else if (line.startsWith("|c|")) {
        const curUserid = toID(line.split("|", 3)[2]);
        if (curUserid === userid)
          return true;
      }
    }
    return false;
  }
  clearText(userids, lineCount = 0) {
    const cleared = [];
    const clearAll = lineCount === 0;
    this.log = this.log.reverse().filter((line) => {
      const parsed = this.parseChatLine(line);
      if (parsed) {
        const userid = toID(parsed.user);
        if (userids.includes(userid)) {
          if (!cleared.includes(userid))
            cleared.push(userid);
          if (!this.roomlogStream && !this.roomlogTable)
            return true;
          if (clearAll)
            return false;
          if (lineCount > 0) {
            lineCount--;
            return false;
          }
          return true;
        }
      }
      return true;
    }).reverse();
    return cleared;
  }
  uhtmlchange(name, message) {
    const originalStart = "|uhtml|" + name + "|";
    const fullMessage = originalStart + message;
    for (const [i, line] of this.log.entries()) {
      if (line.startsWith(originalStart)) {
        this.log[i] = fullMessage;
        break;
      }
    }
    this.broadcastBuffer.push(fullMessage);
  }
  attributedUhtmlchange(user, name, message) {
    const start = `/uhtmlchange ${name},`;
    const fullMessage = this.withTimestamp(`|c|${user.getIdentity()}|${start}${message}`);
    let matched = false;
    for (const [i, line] of this.log.entries()) {
      if (this.parseChatLine(line)?.message.startsWith(start)) {
        this.log[i] = fullMessage;
        matched = true;
        break;
      }
    }
    if (!matched)
      this.log.push(fullMessage);
    this.broadcastBuffer.push(fullMessage);
  }
  parseChatLine(line) {
    const prefixes = [["|c:|", 4], ["|c|", 3]];
    for (const [messageStart, section] of prefixes) {
      if (line.startsWith(messageStart)) {
        const parts = import_lib.Utils.splitFirst(line, "|", section);
        return { user: parts[section - 1], message: parts[section] };
      }
    }
  }
  roomlog(message, date = new Date()) {
    if (!Config.logchat)
      return;
    message = message.replace(/<img[^>]* src="data:image\/png;base64,[^">]+"[^>]*>/g, "[img]");
    if (this.roomlogTable) {
      const chatData = this.parseChatLine(message);
      const type = message.split("|")[1] || "";
      void this.insertLog(import_database.SQL`INSERT INTO roomlogs (${{
        type,
        roomid: this.roomid,
        userid: toID(chatData?.user) || null,
        time: import_database.SQL`now()`,
        log: message
      }})`);
      const dateStr = Chat.toTimestamp(date).split(" ")[0];
      void this.insertLog(import_database.SQL`INSERT INTO roomlog_dates (${{
        roomid: this.roomid,
        month: dateStr.slice(0, -3),
        date: dateStr
      }}) ON CONFLICT (roomid, date) DO NOTHING;`);
    } else if (this.roomlogStream) {
      const timestamp = Chat.toTimestamp(date).split(" ")[1] + " ";
      void this.roomlogStream.write(timestamp + message + "\n");
    }
  }
  async insertLog(query, ignoreFailure = false, retries = 3) {
    try {
      await this.roomlogTable?.query(query);
    } catch (e) {
      if (e?.code === "42P01") {
        await roomlogDB._query((0, import_lib.FS)("databases/schemas/roomlogs.sql").readSync(), []);
        return this.insertLog(query, ignoreFailure, retries);
      }
      if (!ignoreFailure && retries > 0 && e.message?.includes("Connection terminated unexpectedly")) {
        await new Promise((resolve) => {
          setTimeout(resolve, 2e3);
        });
        return this.insertLog(query, ignoreFailure, retries - 1);
      }
      const [q, vals] = roomlogDB._resolveSQL(query);
      Monitor.crashlog(e, "a roomlog database query", {
        query: q,
        values: vals
      });
    }
  }
  modlog(entry, overrideID) {
    void Rooms.Modlog.write(this.roomid, entry, overrideID);
  }
  async rename(newID) {
    await Rooms.Modlog.rename(this.roomid, newID);
    const roomlogStreamExisted = this.roomlogStream !== null;
    await this.destroy();
    if (this.roomlogTable) {
      await this.roomlogTable.updateAll({ roomid: newID })`WHERE roomid = ${this.roomid}`;
    } else {
      const roomlogPath = `chat`;
      const [roomlogExists, newRoomlogExists] = await Promise.all([
        Monitor.logPath(roomlogPath + `/${this.roomid}`).exists(),
        Monitor.logPath(roomlogPath + `/${newID}`).exists()
      ]);
      if (roomlogExists && !newRoomlogExists) {
        await Monitor.logPath(roomlogPath + `/${this.roomid}`).rename(Monitor.logPath(roomlogPath + `/${newID}`).path);
      }
      if (roomlogStreamExisted) {
        this.roomlogStream = void 0;
        this.roomlogFilename = "";
        this.setupRoomlogStream();
      }
    }
    Roomlogs.roomlogs.set(newID, this);
    this.roomid = newID;
    return true;
  }
  static rollLogs() {
    if (Roomlogs.rollLogTimer === true)
      return;
    if (Roomlogs.rollLogTimer) {
      clearTimeout(Roomlogs.rollLogTimer);
    }
    Roomlogs.rollLogTimer = true;
    for (const log of Roomlogs.roomlogs.values()) {
      log.setupRoomlogStream();
    }
    const time = Date.now();
    const nextMidnight = new Date();
    nextMidnight.setHours(24, 0, 0, 0);
    Roomlogs.rollLogTimer = setTimeout(() => Roomlog.rollLogs(), nextMidnight.getTime() - time);
  }
  truncate() {
    if (this.noAutoTruncate)
      return;
    if (this.log.length > 100) {
      const truncationLength = this.log.length - 100;
      this.log.splice(0, truncationLength);
      this.numTruncatedLines += truncationLength;
    }
  }
  /**
   * Returns the total number of lines in the roomlog, including truncated lines.
   */
  getLineCount(onlyVisible = true) {
    return (onlyVisible ? this.visibleMessageCount : this.log.length) + this.numTruncatedLines;
  }
  destroy() {
    const promises = [];
    if (this.roomlogStream) {
      promises.push(this.roomlogStream.writeEnd());
      this.roomlogStream = null;
    }
    Roomlogs.roomlogs.delete(this.roomid);
    return Promise.all(promises);
  }
}
const roomlogs = /* @__PURE__ */ new Map();
function createRoomlog(room, options = {}) {
  let roomlog = Roomlogs.roomlogs.get(room.roomid);
  if (roomlog)
    throw new Error(`Roomlog ${room.roomid} already exists`);
  roomlog = new Roomlog(room, options);
  Roomlogs.roomlogs.set(room.roomid, roomlog);
  return roomlog;
}
const Roomlogs = {
  create: createRoomlog,
  Roomlog,
  roomlogs,
  db: roomlogDB,
  table: roomlogTable,
  rollLogs: Roomlog.rollLogs,
  rollLogTimer: null
};
//# sourceMappingURL=roomlogs.js.map