@torrent-tv/proxy 2.6.0 → 2.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 2.6.1
2
+
3
+ - **Fix**: `TorrentPool.getTorrent()` — eliminated a race condition where two concurrent requests for the same torrent both found the cache empty and both called `client.add()`, causing WebTorrent to throw "Cannot add duplicate torrent". In-flight promises are now cached in a private `#pending` map; subsequent requests for the same key join the existing promise instead of triggering a second `client.add()`.
4
+
1
5
  ## 2.5.15
2
6
 
3
7
  - **New**: `GET /api/sources/:sourceKey/stats?fileIndex=N` — returns live torrent stats: connected peer count, download/upload speed, per-file download progress and size. Used by the browser to show meaningful feedback while waiting for file metadata.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@torrent-tv/proxy",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Torrent proxy client that exposes webseed-like HTTP stream endpoint.",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "publishConfig": {
@@ -36,6 +36,15 @@ function decodeTorrentSource(sourceType, source) {
36
36
  * that only files with at least one active stream cause downloading.
37
37
  */
38
38
  export class TorrentPool {
39
+ /**
40
+ * In-flight `client.add()` promises keyed by the same key as `torrents`.
41
+ * Prevents duplicate `client.add()` calls when two requests arrive
42
+ * concurrently for the same torrent before the first one resolves.
43
+ *
44
+ * @type {Map<string, Promise<import("webtorrent").Torrent>>}
45
+ */
46
+ #pending = new Map();
47
+
39
48
  constructor() {
40
49
  /** @type {import("webtorrent").WebTorrent} */
41
50
  this.client = new WebTorrent();
@@ -70,26 +79,38 @@ export class TorrentPool {
70
79
  */
71
80
  async getTorrent(sourceType, source) {
72
81
  const key = `${sourceType}:${crypto.createHash("sha1").update(source).digest("hex")}`;
82
+
83
+ // Already resolved — return immediately.
73
84
  const existing = this.torrents.get(key);
74
85
  if (existing) {
75
86
  return existing;
76
87
  }
77
88
 
89
+ // In-flight — a concurrent request already called client.add() for the
90
+ // same torrent; join that promise instead of calling add() again.
91
+ const inFlight = this.#pending.get(key);
92
+ if (inFlight) {
93
+ return inFlight;
94
+ }
95
+
78
96
  const torrentId = decodeTorrentSource(sourceType, source);
79
- const torrent = await new Promise((resolve, reject) => {
97
+ const promise = new Promise((resolve, reject) => {
80
98
  const onError = (error) => {
81
99
  this.client.off("error", onError);
100
+ this.#pending.delete(key);
82
101
  reject(error);
83
102
  };
84
103
  this.client.once("error", onError);
85
104
  this.client.add(torrentId, (readyTorrent) => {
86
105
  this.client.off("error", onError);
106
+ this.torrents.set(key, readyTorrent);
107
+ this.#pending.delete(key);
87
108
  resolve(readyTorrent);
88
109
  });
89
110
  });
90
111
 
91
- this.torrents.set(key, torrent);
92
- return torrent;
112
+ this.#pending.set(key, promise);
113
+ return promise;
93
114
  }
94
115
 
95
116
  /**