nodebb-plugin-pdf-secure2 1.4.3 → 1.5.1
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/.claude/settings.local.json +6 -1
- package/lib/controllers.js +149 -28
- package/lib/gemini-chat.js +480 -426
- package/lib/nonce-store.js +4 -4
- package/lib/pdf-handler.js +0 -1
- package/lib/topic-access.js +96 -0
- package/library.js +70 -5
- package/package.json +1 -1
- package/plugin.json +4 -0
- package/static/lib/admin.js +25 -0
- package/static/lib/main.js +2 -73
- package/static/templates/admin/plugins/pdf-secure.tpl +18 -2
- package/static/viewer-app.js +18 -62
- package/static/viewer.html +257 -55
package/lib/nonce-store.js
CHANGED
|
@@ -53,18 +53,18 @@ NonceStore.validate = function (nonce, uid) {
|
|
|
53
53
|
return null;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
//
|
|
57
|
-
store.delete(nonce);
|
|
58
|
-
|
|
59
|
-
// Check UID match
|
|
56
|
+
// Validate BEFORE deleting — prevents DoS via nonce consumption with wrong UID
|
|
60
57
|
if (data.uid !== uid) {
|
|
61
58
|
return null;
|
|
62
59
|
}
|
|
63
60
|
|
|
64
61
|
// Check TTL
|
|
65
62
|
if (Date.now() - data.createdAt > NONCE_TTL) {
|
|
63
|
+
store.delete(nonce); // Expired, clean up
|
|
66
64
|
return null;
|
|
67
65
|
}
|
|
68
66
|
|
|
67
|
+
// All checks passed — delete now (single-use)
|
|
68
|
+
store.delete(nonce);
|
|
69
69
|
return data; // Includes encKey and encIv for AES-256-GCM
|
|
70
70
|
};
|
package/lib/pdf-handler.js
CHANGED
|
@@ -36,7 +36,6 @@ PdfHandler.resolveFilePath = function (filename) {
|
|
|
36
36
|
const uploadPath = nconf.get('upload_path') || path.join(nconf.get('base_dir'), 'public', 'uploads');
|
|
37
37
|
const filePath = path.join(uploadPath, 'files', safeName);
|
|
38
38
|
|
|
39
|
-
// Verify the resolved path is still within the upload directory
|
|
40
39
|
const resolvedPath = path.resolve(filePath);
|
|
41
40
|
const resolvedUploadDir = path.resolve(path.join(uploadPath, 'files'));
|
|
42
41
|
if (!resolvedPath.startsWith(resolvedUploadDir)) {
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const privileges = require.main.require('./src/privileges');
|
|
4
|
+
const topics = require.main.require('./src/topics');
|
|
5
|
+
const posts = require.main.require('./src/posts');
|
|
6
|
+
const groups = require.main.require('./src/groups');
|
|
7
|
+
const db = require.main.require('./src/database');
|
|
8
|
+
|
|
9
|
+
const TopicAccess = module.exports;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Validate that a user has access to a PDF through a specific topic.
|
|
13
|
+
* Checks: 1) User can read the topic, 2) The PDF filename exists in the topic's posts.
|
|
14
|
+
* Admin/Global Moderators bypass all checks.
|
|
15
|
+
*
|
|
16
|
+
* @param {number} uid - User ID
|
|
17
|
+
* @param {number|string} tid - Topic ID
|
|
18
|
+
* @param {string} filename - Sanitized PDF filename (basename only)
|
|
19
|
+
* @returns {Promise<{allowed: boolean, reason?: string}>}
|
|
20
|
+
*/
|
|
21
|
+
TopicAccess.validate = async function (uid, tid, filename) {
|
|
22
|
+
// Require valid tid
|
|
23
|
+
tid = parseInt(tid, 10);
|
|
24
|
+
if (!tid || isNaN(tid) || tid <= 0) {
|
|
25
|
+
return { allowed: false, reason: 'Missing or invalid topic ID' };
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
try {
|
|
29
|
+
// Admin/Global Moderator bypass
|
|
30
|
+
const [isAdmin, isGlobalMod] = await Promise.all([
|
|
31
|
+
groups.isMember(uid, 'administrators'),
|
|
32
|
+
groups.isMember(uid, 'Global Moderators'),
|
|
33
|
+
]);
|
|
34
|
+
if (isAdmin || isGlobalMod) {
|
|
35
|
+
return { allowed: true };
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Check if user can read the topic (NodeBB privilege system)
|
|
39
|
+
const canRead = await privileges.topics.can('topics:read', tid, uid);
|
|
40
|
+
if (!canRead) {
|
|
41
|
+
return { allowed: false, reason: 'Access denied' };
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Verify the PDF filename exists in one of the topic's posts
|
|
45
|
+
const exists = await TopicAccess.pdfExistsInTopic(tid, filename);
|
|
46
|
+
if (!exists) {
|
|
47
|
+
return { allowed: false, reason: 'Access denied' };
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
return { allowed: true };
|
|
51
|
+
} catch (err) {
|
|
52
|
+
// DB error, topic not found, etc. — deny by default
|
|
53
|
+
return { allowed: false, reason: 'Access check failed' };
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Check if a PDF filename is referenced in any post of a topic.
|
|
59
|
+
* Searches both the main post and all reply posts.
|
|
60
|
+
*
|
|
61
|
+
* @param {number} tid - Topic ID
|
|
62
|
+
* @param {string} filename - PDF filename to search for
|
|
63
|
+
* @returns {Promise<boolean>}
|
|
64
|
+
*/
|
|
65
|
+
TopicAccess.pdfExistsInTopic = async function (tid, filename) {
|
|
66
|
+
// Get the topic's main post ID
|
|
67
|
+
const topicData = await topics.getTopicFields(tid, ['mainPid']);
|
|
68
|
+
if (!topicData || !topicData.mainPid) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Get all post IDs in this topic (replies)
|
|
73
|
+
const replyPids = await db.getSortedSetRange('tid:' + tid + ':posts', 0, -1);
|
|
74
|
+
const allPids = [topicData.mainPid, ...replyPids].filter(Boolean);
|
|
75
|
+
|
|
76
|
+
if (allPids.length === 0) {
|
|
77
|
+
return false;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Get raw content of all posts
|
|
81
|
+
const postsData = await posts.getPostsFields(allPids, ['content']);
|
|
82
|
+
|
|
83
|
+
// Escape filename for regex safety, also match URL-encoded variant
|
|
84
|
+
// (post content may store "Özel Döküman.pdf" as "%C3%96zel%20D%C3%B6k%C3%BCman.pdf")
|
|
85
|
+
const escaped = filename.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
86
|
+
const encodedEscaped = encodeURIComponent(filename).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
87
|
+
const pattern = new RegExp('(' + escaped + '|' + encodedEscaped + ')', 'i');
|
|
88
|
+
|
|
89
|
+
for (const post of postsData) {
|
|
90
|
+
if (post && post.content && pattern.test(post.content)) {
|
|
91
|
+
return true;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
return false;
|
|
96
|
+
};
|
package/library.js
CHANGED
|
@@ -11,6 +11,7 @@ const controllers = require('./lib/controllers');
|
|
|
11
11
|
const nonceStore = require('./lib/nonce-store');
|
|
12
12
|
const pdfHandler = require('./lib/pdf-handler');
|
|
13
13
|
const geminiChat = require('./lib/gemini-chat');
|
|
14
|
+
const topicAccess = require('./lib/topic-access');
|
|
14
15
|
|
|
15
16
|
const plugin = {};
|
|
16
17
|
|
|
@@ -18,6 +19,16 @@ const plugin = {};
|
|
|
18
19
|
let viewerHtmlCache = null;
|
|
19
20
|
let pluginSettings = {};
|
|
20
21
|
|
|
22
|
+
// Rate limit for viewer endpoint — prevents brute-force topic ID enumeration
|
|
23
|
+
const viewerRateLimit = new Map(); // uid -> { count, windowStart }
|
|
24
|
+
const VIEWER_RATE_LIMIT = { max: 15, window: 60 * 1000 }; // 15 requests per 60 seconds
|
|
25
|
+
setInterval(() => {
|
|
26
|
+
const cutoff = Date.now() - VIEWER_RATE_LIMIT.window;
|
|
27
|
+
for (const [uid, data] of viewerRateLimit.entries()) {
|
|
28
|
+
if (data.windowStart < cutoff) viewerRateLimit.delete(uid);
|
|
29
|
+
}
|
|
30
|
+
}, 60 * 1000).unref();
|
|
31
|
+
|
|
21
32
|
plugin.init = async (params) => {
|
|
22
33
|
const { router, middleware } = params;
|
|
23
34
|
|
|
@@ -26,6 +37,7 @@ plugin.init = async (params) => {
|
|
|
26
37
|
try {
|
|
27
38
|
viewerHtmlCache = fs.readFileSync(viewerPath, 'utf8');
|
|
28
39
|
} catch (err) {
|
|
40
|
+
console.error('[PDF-Secure] Failed to read viewer.html:', err.message);
|
|
29
41
|
}
|
|
30
42
|
|
|
31
43
|
// Double slash bypass protection - catches /uploads//files/ attempts
|
|
@@ -65,12 +77,23 @@ plugin.init = async (params) => {
|
|
|
65
77
|
// AI suggestions endpoint (Premium/VIP only)
|
|
66
78
|
router.get('/api/v3/plugins/pdf-secure/suggestions', controllers.getSuggestions);
|
|
67
79
|
|
|
80
|
+
// Admin: reset user quota (for testing/support)
|
|
81
|
+
router.post('/api/v3/plugins/pdf-secure/reset-quota', controllers.resetQuota);
|
|
82
|
+
|
|
68
83
|
// Load plugin settings
|
|
69
84
|
pluginSettings = await meta.settings.get('pdf-secure') || {};
|
|
85
|
+
console.log('[PDF-Secure][DEBUG] Plugin settings loaded. Keys:', Object.keys(pluginSettings).join(', '));
|
|
86
|
+
console.log('[PDF-Secure][DEBUG] geminiApiKey=%s, quotaPremium=%s, quotaVip=%s, quotaWindow=%s',
|
|
87
|
+
pluginSettings.geminiApiKey ? '***SET(' + pluginSettings.geminiApiKey.length + ' chars)' : '***EMPTY***',
|
|
88
|
+
pluginSettings.quotaPremiumTokens || 'default',
|
|
89
|
+
pluginSettings.quotaVipTokens || 'default',
|
|
90
|
+
pluginSettings.quotaWindowHours || 'default');
|
|
70
91
|
|
|
71
92
|
// Initialize Gemini AI chat (if API key is configured)
|
|
72
93
|
if (pluginSettings.geminiApiKey) {
|
|
73
94
|
geminiChat.init(pluginSettings.geminiApiKey);
|
|
95
|
+
} else {
|
|
96
|
+
console.log('[PDF-Secure][DEBUG] WARNING: No Gemini API key configured! AI chat will be disabled.');
|
|
74
97
|
}
|
|
75
98
|
|
|
76
99
|
// Apply admin-configured quota settings
|
|
@@ -94,6 +117,19 @@ plugin.init = async (params) => {
|
|
|
94
117
|
return res.status(401).json({ error: 'Authentication required' });
|
|
95
118
|
}
|
|
96
119
|
|
|
120
|
+
// Rate limit — prevent brute-force topic ID enumeration
|
|
121
|
+
const now = Date.now();
|
|
122
|
+
const rateData = viewerRateLimit.get(req.uid) || { count: 0, windowStart: now };
|
|
123
|
+
if (now - rateData.windowStart > VIEWER_RATE_LIMIT.window) {
|
|
124
|
+
rateData.count = 0;
|
|
125
|
+
rateData.windowStart = now;
|
|
126
|
+
}
|
|
127
|
+
rateData.count++;
|
|
128
|
+
viewerRateLimit.set(req.uid, rateData);
|
|
129
|
+
if (rateData.count > VIEWER_RATE_LIMIT.max) {
|
|
130
|
+
return res.status(429).json({ error: 'Too many requests. Please slow down.' });
|
|
131
|
+
}
|
|
132
|
+
|
|
97
133
|
const { file } = req.query;
|
|
98
134
|
if (!file) {
|
|
99
135
|
return res.status(400).send('Missing file parameter');
|
|
@@ -105,6 +141,13 @@ plugin.init = async (params) => {
|
|
|
105
141
|
return res.status(400).send('Invalid file');
|
|
106
142
|
}
|
|
107
143
|
|
|
144
|
+
// Topic-level access control: require tid and validate access
|
|
145
|
+
const { tid } = req.query;
|
|
146
|
+
const accessResult = await topicAccess.validate(req.uid, tid, safeName);
|
|
147
|
+
if (!accessResult.allowed) {
|
|
148
|
+
return res.status(403).json({ error: accessResult.reason || 'Access denied' });
|
|
149
|
+
}
|
|
150
|
+
|
|
108
151
|
// Check cache
|
|
109
152
|
if (!viewerHtmlCache) {
|
|
110
153
|
return res.status(500).send('Viewer not available');
|
|
@@ -138,6 +181,7 @@ plugin.init = async (params) => {
|
|
|
138
181
|
try {
|
|
139
182
|
totalPages = await pdfHandler.getTotalPages(safeName);
|
|
140
183
|
} catch (err) {
|
|
184
|
+
console.error('[PDF-Secure] Failed to get total pages for', safeName, ':', err.message);
|
|
141
185
|
}
|
|
142
186
|
}
|
|
143
187
|
|
|
@@ -158,6 +202,7 @@ plugin.init = async (params) => {
|
|
|
158
202
|
// Key is embedded in HTML - NOT visible in any network API response!
|
|
159
203
|
const configObj = {
|
|
160
204
|
filename: safeName,
|
|
205
|
+
tid: parseInt(tid, 10) || 0,
|
|
161
206
|
relativePath: req.app.get('relative_path') || '',
|
|
162
207
|
csrfToken: req.csrfToken ? req.csrfToken() : '',
|
|
163
208
|
nonce: nonceData.nonce,
|
|
@@ -193,7 +238,7 @@ plugin.init = async (params) => {
|
|
|
193
238
|
.replace(/<script>(\r?\n\s*\/\/ IIFE to prevent global access)/, `<script nonce="${cspNonce}">$1`);
|
|
194
239
|
|
|
195
240
|
// Update CSP header with the nonce for the inline viewer script
|
|
196
|
-
res.set('Content-Security-Policy', `default-src 'self'; script-src 'self' 'unsafe-eval' 'nonce-${cspNonce}' https://cdnjs.cloudflare.com; worker-src 'self' blob:; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com; img-src 'self' data: blob: https://cdnjs.cloudflare.com https://i.ibb.co; connect-src 'self'; frame-ancestors 'self'; form-action 'none'; base-uri 'self'`);
|
|
241
|
+
res.set('Content-Security-Policy', `default-src 'self'; script-src 'self' 'unsafe-eval' 'nonce-${cspNonce}' https://cdnjs.cloudflare.com https://cdn.jsdelivr.net; worker-src 'self' blob:; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://cdn.jsdelivr.net; img-src 'self' data: blob: https://cdnjs.cloudflare.com https://i.ibb.co; connect-src 'self'; frame-ancestors 'self'; form-action 'none'; base-uri 'self'`);
|
|
197
242
|
|
|
198
243
|
res.type('html').send(injectedHtml);
|
|
199
244
|
});
|
|
@@ -263,19 +308,32 @@ plugin.filterConfig = async function (data) {
|
|
|
263
308
|
|
|
264
309
|
// Transform PDF links to secure placeholders (server-side)
|
|
265
310
|
// This hides PDF URLs from: page source, API, RSS, ActivityPub
|
|
311
|
+
// Supports both filter:parse.post (data.postData.content) and filter:parse.raw (string)
|
|
266
312
|
plugin.transformPdfLinks = async (data) => {
|
|
267
|
-
|
|
313
|
+
// Support multiple hook data formats
|
|
314
|
+
let content = null;
|
|
315
|
+
let contentPath = null;
|
|
316
|
+
|
|
317
|
+
if (data && data.postData && data.postData.content) {
|
|
318
|
+
content = data.postData.content;
|
|
319
|
+
contentPath = 'postData';
|
|
320
|
+
} else if (data && typeof data === 'string') {
|
|
321
|
+
content = data;
|
|
322
|
+
contentPath = 'raw';
|
|
323
|
+
} else {
|
|
268
324
|
return data;
|
|
269
325
|
}
|
|
270
326
|
|
|
271
|
-
|
|
272
327
|
// Regex to match PDF links: <a href="...xxx.pdf">text</a>
|
|
273
328
|
// Captures: full URL path, filename, link text
|
|
274
329
|
const pdfLinkRegex = /<a\s+[^>]*href=["']([^"']*\/([^"'\/]+\.pdf))["'][^>]*>([^<]*)<\/a>/gi;
|
|
275
330
|
|
|
276
|
-
const matchCount = (
|
|
331
|
+
const matchCount = (content.match(pdfLinkRegex) || []).length;
|
|
332
|
+
if (matchCount === 0) {
|
|
333
|
+
return data;
|
|
334
|
+
}
|
|
277
335
|
|
|
278
|
-
|
|
336
|
+
content = content.replace(pdfLinkRegex, (match, fullPath, filename, linkText) => {
|
|
279
337
|
// Decode filename to prevent double encoding (URL may already be encoded)
|
|
280
338
|
let decodedFilename;
|
|
281
339
|
try { decodedFilename = decodeURIComponent(filename); }
|
|
@@ -294,6 +352,13 @@ plugin.transformPdfLinks = async (data) => {
|
|
|
294
352
|
</div>`;
|
|
295
353
|
});
|
|
296
354
|
|
|
355
|
+
// Write back to the correct location
|
|
356
|
+
if (contentPath === 'postData') {
|
|
357
|
+
data.postData.content = content;
|
|
358
|
+
} else if (contentPath === 'raw') {
|
|
359
|
+
data = content;
|
|
360
|
+
}
|
|
361
|
+
|
|
297
362
|
return data;
|
|
298
363
|
};
|
|
299
364
|
|
package/package.json
CHANGED
package/plugin.json
CHANGED
package/static/lib/admin.js
CHANGED
|
@@ -34,6 +34,31 @@ define('admin/plugins/pdf-secure', ['settings', 'alerts'], function (Settings, a
|
|
|
34
34
|
$('#deselectAllCats').on('click', function () {
|
|
35
35
|
$('#categoryCheckboxes input[type="checkbox"]').prop('checked', false);
|
|
36
36
|
});
|
|
37
|
+
|
|
38
|
+
// Quota reset button
|
|
39
|
+
$('#resetQuotaBtn').on('click', function () {
|
|
40
|
+
var uid = parseInt($('#resetQuotaUid').val(), 10) || 0;
|
|
41
|
+
var btn = $(this);
|
|
42
|
+
btn.prop('disabled', true);
|
|
43
|
+
$('#resetQuotaResult').text('Sifirlaniyor...').css('color', '#6c757d');
|
|
44
|
+
|
|
45
|
+
$.ajax({
|
|
46
|
+
url: config.relative_path + '/api/v3/plugins/pdf-secure/reset-quota',
|
|
47
|
+
type: 'POST',
|
|
48
|
+
contentType: 'application/json',
|
|
49
|
+
headers: { 'x-csrf-token': config.csrf_token },
|
|
50
|
+
data: JSON.stringify(uid > 0 ? { uid: uid } : {}),
|
|
51
|
+
success: function (data) {
|
|
52
|
+
$('#resetQuotaResult').text(data.message || 'Basarili!').css('color', '#198754');
|
|
53
|
+
btn.prop('disabled', false);
|
|
54
|
+
},
|
|
55
|
+
error: function (xhr) {
|
|
56
|
+
var msg = (xhr.responseJSON && xhr.responseJSON.error) || 'Hata olustu.';
|
|
57
|
+
$('#resetQuotaResult').text(msg).css('color', '#dc3545');
|
|
58
|
+
btn.prop('disabled', false);
|
|
59
|
+
},
|
|
60
|
+
});
|
|
61
|
+
});
|
|
37
62
|
};
|
|
38
63
|
|
|
39
64
|
function loadCategories() {
|
package/static/lib/main.js
CHANGED
|
@@ -40,32 +40,6 @@
|
|
|
40
40
|
let isLoading = false;
|
|
41
41
|
let currentResolver = null;
|
|
42
42
|
|
|
43
|
-
// ============================================
|
|
44
|
-
// SPA MEMORY CACHE - Cache decoded PDF buffers
|
|
45
|
-
// ============================================
|
|
46
|
-
const pdfBufferCache = new Map(); // filename -> { buffer: ArrayBuffer, cachedAt: number }
|
|
47
|
-
const CACHE_MAX_SIZE = 5; // ~50MB limit (avg 10MB per PDF)
|
|
48
|
-
const CACHE_TTL = 5 * 60 * 1000; // 5 minutes
|
|
49
|
-
|
|
50
|
-
function setCachedBuffer(filename, buffer) {
|
|
51
|
-
// Evict oldest if cache is full
|
|
52
|
-
if (pdfBufferCache.size >= CACHE_MAX_SIZE) {
|
|
53
|
-
const firstKey = pdfBufferCache.keys().next().value;
|
|
54
|
-
pdfBufferCache.delete(firstKey);
|
|
55
|
-
}
|
|
56
|
-
pdfBufferCache.set(filename, { buffer: buffer, cachedAt: Date.now() });
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
function getCachedBuffer(filename) {
|
|
60
|
-
const entry = pdfBufferCache.get(filename);
|
|
61
|
-
if (!entry) return null;
|
|
62
|
-
if (Date.now() - entry.cachedAt > CACHE_TTL) {
|
|
63
|
-
pdfBufferCache.delete(filename);
|
|
64
|
-
return null;
|
|
65
|
-
}
|
|
66
|
-
return entry.buffer;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
43
|
// Listen for postMessage from iframe
|
|
70
44
|
window.addEventListener('message', function (event) {
|
|
71
45
|
// Security: Only accept messages from same origin
|
|
@@ -79,21 +53,6 @@
|
|
|
79
53
|
}
|
|
80
54
|
}
|
|
81
55
|
|
|
82
|
-
// PDF buffer from viewer - cache it
|
|
83
|
-
if (event.data && event.data.type === 'pdf-secure-buffer') {
|
|
84
|
-
// Source verification: only accept buffers from pdf-secure iframes
|
|
85
|
-
var isFromSecureIframe = false;
|
|
86
|
-
document.querySelectorAll('.pdf-secure-iframe').forEach(function (f) {
|
|
87
|
-
if (f.contentWindow === event.source) isFromSecureIframe = true;
|
|
88
|
-
});
|
|
89
|
-
if (!isFromSecureIframe) return;
|
|
90
|
-
|
|
91
|
-
const { filename, buffer } = event.data;
|
|
92
|
-
if (filename && buffer) {
|
|
93
|
-
setCachedBuffer(filename, buffer);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
56
|
// Fullscreen toggle request from iframe viewer
|
|
98
57
|
if (event.data && event.data.type === 'pdf-secure-fullscreen-toggle') {
|
|
99
58
|
var sourceIframe = document.querySelector('.pdf-secure-iframe');
|
|
@@ -135,35 +94,6 @@
|
|
|
135
94
|
}
|
|
136
95
|
}
|
|
137
96
|
|
|
138
|
-
// Viewer asking for cached buffer
|
|
139
|
-
if (event.data && event.data.type === 'pdf-secure-cache-request') {
|
|
140
|
-
// Source verification: only respond to pdf-secure iframes
|
|
141
|
-
var isFromSecureIframe = false;
|
|
142
|
-
document.querySelectorAll('.pdf-secure-iframe').forEach(function (f) {
|
|
143
|
-
if (f.contentWindow === event.source) isFromSecureIframe = true;
|
|
144
|
-
});
|
|
145
|
-
if (!isFromSecureIframe) return;
|
|
146
|
-
|
|
147
|
-
const { filename } = event.data;
|
|
148
|
-
const cached = getCachedBuffer(filename);
|
|
149
|
-
if (cached && event.source) {
|
|
150
|
-
// Send cached buffer to viewer (transferable for 0-copy)
|
|
151
|
-
// Clone once: keep original in cache, transfer the copy
|
|
152
|
-
const copy = cached.slice(0);
|
|
153
|
-
event.source.postMessage({
|
|
154
|
-
type: 'pdf-secure-cache-response',
|
|
155
|
-
filename: filename,
|
|
156
|
-
buffer: copy
|
|
157
|
-
}, event.origin, [copy]);
|
|
158
|
-
} else if (event.source) {
|
|
159
|
-
// No cache, viewer will fetch normally
|
|
160
|
-
event.source.postMessage({
|
|
161
|
-
type: 'pdf-secure-cache-response',
|
|
162
|
-
filename: filename,
|
|
163
|
-
buffer: null
|
|
164
|
-
}, event.origin);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
97
|
});
|
|
168
98
|
|
|
169
99
|
// Forward fullscreen state changes to all viewer iframes
|
|
@@ -300,8 +230,6 @@
|
|
|
300
230
|
loadQueue.length = 0;
|
|
301
231
|
isLoading = false;
|
|
302
232
|
currentResolver = null;
|
|
303
|
-
// Clear decrypted PDF buffer cache on navigation
|
|
304
|
-
pdfBufferCache.clear();
|
|
305
233
|
// Exit simulated fullscreen on SPA navigation
|
|
306
234
|
exitSimulatedFullscreen();
|
|
307
235
|
interceptPdfLinks();
|
|
@@ -453,7 +381,8 @@
|
|
|
453
381
|
var iframe = document.createElement('iframe');
|
|
454
382
|
iframe.className = 'pdf-secure-iframe';
|
|
455
383
|
iframe.style.cssText = 'position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:1;';
|
|
456
|
-
|
|
384
|
+
var tidParam = (ajaxify && ajaxify.data && ajaxify.data.tid) ? '&tid=' + encodeURIComponent(ajaxify.data.tid) : '';
|
|
385
|
+
iframe.src = config.relative_path + '/plugins/pdf-secure/viewer?file=' + encodeURIComponent(filename) + tidParam;
|
|
457
386
|
iframe.setAttribute('frameborder', '0');
|
|
458
387
|
iframe.setAttribute('allowfullscreen', 'true');
|
|
459
388
|
iframe.setAttribute('allow', 'fullscreen; clipboard-write');
|
|
@@ -153,11 +153,27 @@
|
|
|
153
153
|
<div class="form-text" style="font-size:11px;">Varsayilan: 4 saat. Kota bu sure icerisinde sifirlanir.</div>
|
|
154
154
|
</div>
|
|
155
155
|
|
|
156
|
-
<div class="alert alert-light border d-flex gap-2 mb-
|
|
156
|
+
<div class="alert alert-light border d-flex gap-2 mb-3" role="alert" style="font-size:12px;">
|
|
157
157
|
<svg viewBox="0 0 24 24" style="width:16px;height:16px;fill:#0d6efd;flex-shrink:0;margin-top:1px;"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>
|
|
158
158
|
<div>
|
|
159
159
|
Sadece output (yanit) tokenleri sayilir. PDF ve soru tokenleri dahil degildir.<br>
|
|
160
|
-
Ortalama mesaj ~1000-2000 token, uzun ozet ~3000-4000 token tuketir
|
|
160
|
+
Ortalama mesaj ~1000-2000 token, uzun ozet ~3000-4000 token tuketir.<br>
|
|
161
|
+
<strong>Not:</strong> Admin kullanicilari kota sinirlamasindan muaftir.
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
|
|
165
|
+
<hr class="my-3">
|
|
166
|
+
<h6 class="fw-semibold mb-3" style="font-size:13px;">Kota Sifirlama</h6>
|
|
167
|
+
<div class="row g-3 align-items-end">
|
|
168
|
+
<div class="col-auto">
|
|
169
|
+
<label class="form-label fw-medium" for="resetQuotaUid" style="font-size:13px;">Kullanici UID</label>
|
|
170
|
+
<input type="number" id="resetQuotaUid" class="form-control form-control-sm" placeholder="Bos = kendi kotam" min="0" style="width:150px;">
|
|
171
|
+
</div>
|
|
172
|
+
<div class="col-auto">
|
|
173
|
+
<button type="button" id="resetQuotaBtn" class="btn btn-sm btn-outline-warning">Kotayi Sifirla</button>
|
|
174
|
+
</div>
|
|
175
|
+
<div class="col-auto">
|
|
176
|
+
<span id="resetQuotaResult" style="font-size:12px;"></span>
|
|
161
177
|
</div>
|
|
162
178
|
</div>
|
|
163
179
|
</div>
|
package/static/viewer-app.js
CHANGED
|
@@ -353,73 +353,29 @@
|
|
|
353
353
|
}
|
|
354
354
|
|
|
355
355
|
try {
|
|
356
|
-
//
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
356
|
+
// Nonce and key are embedded in HTML config (not fetched from API)
|
|
357
|
+
const nonce = config.nonce;
|
|
358
|
+
const decryptKey = config.dk;
|
|
359
|
+
const decryptIv = config.iv;
|
|
360
360
|
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
const handler = (event) => {
|
|
365
|
-
if (event.data && event.data.type === 'pdf-secure-cache-response' && event.data.filename === config.filename) {
|
|
366
|
-
window.removeEventListener('message', handler);
|
|
367
|
-
resolve(event.data.buffer);
|
|
368
|
-
}
|
|
369
|
-
};
|
|
370
|
-
window.addEventListener('message', handler);
|
|
371
|
-
|
|
372
|
-
// Timeout after 100ms
|
|
373
|
-
setTimeout(() => {
|
|
374
|
-
window.removeEventListener('message', handler);
|
|
375
|
-
resolve(null);
|
|
376
|
-
}, 100);
|
|
361
|
+
// Fetch encrypted PDF binary
|
|
362
|
+
const pdfUrl = config.relativePath + '/api/v3/plugins/pdf-secure/pdf-data?nonce=' + encodeURIComponent(nonce);
|
|
363
|
+
const pdfRes = await fetch(pdfUrl, { credentials: 'same-origin' });
|
|
377
364
|
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
pdfBuffer = await cachePromise;
|
|
382
|
-
if (pdfBuffer) {
|
|
383
|
-
console.log('[PDF-Secure] Using cached buffer');
|
|
384
|
-
}
|
|
365
|
+
if (!pdfRes.ok) {
|
|
366
|
+
throw new Error('PDF yüklenemedi (' + pdfRes.status + ')');
|
|
385
367
|
}
|
|
386
368
|
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
// Nonce and key are embedded in HTML config (not fetched from API)
|
|
390
|
-
const nonce = config.nonce;
|
|
391
|
-
const decryptKey = config.dk;
|
|
392
|
-
const decryptIv = config.iv;
|
|
393
|
-
|
|
394
|
-
// Fetch encrypted PDF binary
|
|
395
|
-
const pdfUrl = config.relativePath + '/api/v3/plugins/pdf-secure/pdf-data?nonce=' + encodeURIComponent(nonce);
|
|
396
|
-
const pdfRes = await fetch(pdfUrl, { credentials: 'same-origin' });
|
|
369
|
+
const encodedBuffer = await pdfRes.arrayBuffer();
|
|
370
|
+
console.log('[PDF-Secure] Encrypted data received:', encodedBuffer.byteLength, 'bytes');
|
|
397
371
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
// Decrypt AES-256-GCM encrypted data
|
|
406
|
-
if (decryptKey && decryptIv) {
|
|
407
|
-
console.log('[PDF-Secure] Decrypting AES-256-GCM data...');
|
|
408
|
-
pdfBuffer = await aesGcmDecode(encodedBuffer, decryptKey, decryptIv);
|
|
409
|
-
} else {
|
|
410
|
-
pdfBuffer = encodedBuffer;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
// Send buffer to parent for caching (premium/lite only - non-premium must not leak decoded buffer)
|
|
414
|
-
if ((_cfg.isPremium !== false || _cfg.isLite) && window.parent && window.parent !== window) {
|
|
415
|
-
// Clone buffer for parent (we keep original)
|
|
416
|
-
const bufferCopy = pdfBuffer.slice(0);
|
|
417
|
-
window.parent.postMessage({
|
|
418
|
-
type: 'pdf-secure-buffer',
|
|
419
|
-
filename: config.filename,
|
|
420
|
-
buffer: bufferCopy
|
|
421
|
-
}, window.location.origin, [bufferCopy]); // Transferable
|
|
422
|
-
}
|
|
372
|
+
// Decrypt AES-256-GCM encrypted data
|
|
373
|
+
let pdfBuffer;
|
|
374
|
+
if (decryptKey && decryptIv) {
|
|
375
|
+
console.log('[PDF-Secure] Decrypting AES-256-GCM data...');
|
|
376
|
+
pdfBuffer = await aesGcmDecode(encodedBuffer, decryptKey, decryptIv);
|
|
377
|
+
} else {
|
|
378
|
+
pdfBuffer = encodedBuffer;
|
|
423
379
|
}
|
|
424
380
|
|
|
425
381
|
console.log('[PDF-Secure] PDF decoded successfully');
|