@kaikybrofc/omnizap-system 2.2.9 → 2.3.0
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/README.md +20 -18
- package/app/config/adminIdentity.js +1 -3
- package/app/connection/socketController.js +10 -20
- package/app/controllers/messageController.js +7 -28
- package/app/modules/aiModule/catCommand.js +29 -192
- package/app/modules/broadcastModule/noticeCommand.js +28 -97
- package/app/modules/gameModule/diceCommand.js +6 -32
- package/app/modules/playModule/playCommand.js +57 -258
- package/app/modules/quoteModule/quoteCommand.js +2 -4
- package/app/modules/rpgPokemonModule/rpgPokemonRepository.js +1 -13
- package/app/modules/statsModule/noMessageCommand.js +16 -84
- package/app/modules/statsModule/rankingCommand.js +5 -25
- package/app/modules/statsModule/rankingCommon.js +1 -9
- package/app/modules/stickerModule/convertToWebp.js +4 -27
- package/app/modules/stickerModule/stickerCommand.js +13 -24
- package/app/modules/stickerModule/stickerTextCommand.js +13 -25
- package/app/modules/stickerPackModule/autoPackCollectorService.js +16 -7
- package/app/modules/stickerPackModule/domainEventOutboxRepository.js +20 -36
- package/app/modules/stickerPackModule/domainEvents.js +2 -11
- package/app/modules/stickerPackModule/semanticReclassificationEngine.js +13 -50
- package/app/modules/stickerPackModule/semanticReclassificationEngine.test.js +2 -15
- package/app/modules/stickerPackModule/semanticThemeClusterService.js +14 -41
- package/app/modules/stickerPackModule/stickerAssetClassificationRepository.js +25 -95
- package/app/modules/stickerPackModule/stickerAssetRepository.js +12 -31
- package/app/modules/stickerPackModule/stickerAssetReprocessQueueRepository.js +13 -18
- package/app/modules/stickerPackModule/stickerAutoPackByTagsRuntime.js +284 -709
- package/app/modules/stickerPackModule/stickerClassificationBackgroundRuntime.js +27 -106
- package/app/modules/stickerPackModule/stickerClassificationService.js +46 -77
- package/app/modules/stickerPackModule/stickerDedicatedTaskWorkerRuntime.js +13 -53
- package/app/modules/stickerPackModule/stickerDomainEventBus.js +10 -16
- package/app/modules/stickerPackModule/stickerDomainEventConsumerRuntime.js +13 -34
- package/app/modules/stickerPackModule/stickerMarketplaceDriftService.js +1 -4
- package/app/modules/stickerPackModule/stickerObjectStorageService.js +26 -26
- package/app/modules/stickerPackModule/stickerPackCommandHandlers.js +32 -187
- package/app/modules/stickerPackModule/stickerPackInteractionEventRepository.js +6 -15
- package/app/modules/stickerPackModule/stickerPackItemRepository.js +6 -32
- package/app/modules/stickerPackModule/stickerPackMarketplaceService.js +12 -36
- package/app/modules/stickerPackModule/stickerPackMessageService.js +12 -40
- package/app/modules/stickerPackModule/stickerPackRepository.js +23 -66
- package/app/modules/stickerPackModule/stickerPackScoreSnapshotRepository.js +9 -21
- package/app/modules/stickerPackModule/stickerPackScoreSnapshotRuntime.js +10 -40
- package/app/modules/stickerPackModule/stickerPackService.js +50 -115
- package/app/modules/stickerPackModule/stickerPackServiceRuntime.js +2 -21
- package/app/modules/stickerPackModule/stickerPackUtils.js +13 -3
- package/app/modules/stickerPackModule/stickerStorageService.js +16 -65
- package/app/modules/stickerPackModule/stickerWorkerPipelineRuntime.js +4 -22
- package/app/modules/stickerPackModule/stickerWorkerTaskQueueRepository.js +14 -29
- package/app/modules/systemMetricsModule/pingCommand.js +9 -39
- package/app/modules/tiktokModule/tiktokCommand.js +17 -109
- package/app/modules/userModule/userCommand.js +2 -88
- package/app/observability/metrics.js +5 -16
- package/app/services/captchaService.js +1 -6
- package/app/services/dbWriteQueue.js +3 -18
- package/app/services/featureFlagService.js +2 -8
- package/app/services/newsBroadcastService.js +0 -1
- package/app/services/queueUtils.js +2 -4
- package/app/services/whatsappLoginLinkService.js +7 -9
- package/app/store/premiumUserStore.js +1 -2
- package/app/utils/antiLink/antiLinkModule.js +3 -233
- package/app/utils/logger/loggerModule.js +9 -34
- package/app/utils/systemMetrics/systemMetricsModule.js +1 -4
- package/database/init.js +1 -8
- package/docker-compose.yml +27 -27
- package/docs/seo/omnizap-seo-playbook-br-2026-02-28.md +220 -0
- package/docs/seo/satellite-page-template.md +91 -0
- package/docs/seo/satellite-pages-phase1.json +349 -0
- package/eslint.config.js +2 -15
- package/index.js +8 -36
- package/ml/clip_classifier/README.md +4 -6
- package/observability/alert-rules.yml +12 -12
- package/observability/grafana/provisioning/dashboards/dashboards.yml +1 -1
- package/package.json +8 -3
- package/public/api-docs/index.html +224 -141
- package/public/bot-whatsapp-para-grupo/index.html +306 -0
- package/public/bot-whatsapp-sem-programar/index.html +306 -0
- package/public/comandos/index.html +428 -0
- package/public/como-automatizar-avisos-no-whatsapp/index.html +306 -0
- package/public/como-criar-comandos-whatsapp/index.html +306 -0
- package/public/como-evitar-spam-no-whatsapp/index.html +306 -0
- package/public/como-moderar-grupo-whatsapp/index.html +306 -0
- package/public/como-organizar-comunidade-whatsapp/index.html +306 -0
- package/public/css/github-project-panel.css +20 -15
- package/public/css/stickers-admin.css +55 -39
- package/public/css/styles.css +37 -29
- package/public/index.html +1060 -1417
- package/public/js/apps/apiDocsApp.js +36 -153
- package/public/js/apps/createPackApp.js +69 -332
- package/public/js/apps/homeApp.js +201 -434
- package/public/js/apps/loginApp.js +3 -12
- package/public/js/apps/stickersAdminApp.js +190 -181
- package/public/js/apps/stickersApp.js +507 -1366
- package/public/js/catalog.js +11 -74
- package/public/js/github-panel/components/ErrorState.js +1 -8
- package/public/js/github-panel/components/GithubProjectPanel.js +2 -9
- package/public/js/github-panel/components/SkeletonPanel.js +1 -11
- package/public/js/github-panel/components/StatCard.js +1 -7
- package/public/js/github-panel/vendor/react.js +1 -9
- package/public/js/runtime/react-runtime.js +1 -9
- package/public/licenca/index.html +104 -86
- package/public/login/index.html +315 -321
- package/public/melhor-bot-whatsapp-para-grupos/index.html +306 -0
- package/public/sitemap.xml +45 -0
- package/public/stickers/admin/index.html +14 -19
- package/public/stickers/create/index.html +39 -43
- package/public/stickers/index.html +97 -41
- package/public/termos-de-uso/index.html +142 -115
- package/public/user/index.html +347 -346
- package/scripts/cache-bust.mjs +5 -24
- package/scripts/generate-seo-satellite-pages.mjs +431 -0
- package/scripts/run-prettier-all.mjs +25 -0
- package/scripts/sticker-catalog-loadtest.mjs +13 -11
- package/scripts/sticker-worker-task.mjs +1 -4
- package/scripts/sync-readme-snapshot.mjs +3 -2
- package/server/controllers/stickerCatalogController.js +407 -704
- package/server/http/httpServer.js +2 -10
- package/server/routes/stickerCatalog/catalogHandlers/catalogAdminHttp.js +1 -8
- package/server/routes/stickerCatalog/catalogHandlers/catalogAuthHttp.js +1 -9
- package/server/routes/stickerCatalog/catalogHandlers/catalogPublicHttp.js +10 -11
- package/server/routes/stickerCatalog/catalogHandlers/catalogUploadHttp.js +1 -10
- package/server/routes/stickerCatalog/catalogRouter.js +11 -13
- package/kaikybrofc-omnizap-system-2.2.9.tgz +0 -0
package/public/css/styles.css
CHANGED
|
@@ -1,36 +1,32 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
color-scheme: dark;
|
|
3
|
-
--bg: #
|
|
4
|
-
--bg-2: #
|
|
5
|
-
--card: rgba(
|
|
6
|
-
--line:
|
|
7
|
-
--line-soft:
|
|
8
|
-
--text: #
|
|
9
|
-
--muted: #
|
|
10
|
-
--primary: #
|
|
11
|
-
--primary-strong: #
|
|
12
|
-
--primary-2: #
|
|
3
|
+
--bg: #0f172a;
|
|
4
|
+
--bg-2: #111827;
|
|
5
|
+
--card: rgba(30, 41, 59, 0.9);
|
|
6
|
+
--line: rgba(255, 255, 255, 0.05);
|
|
7
|
+
--line-soft: rgba(255, 255, 255, 0.12);
|
|
8
|
+
--text: #f8fafc;
|
|
9
|
+
--muted: #94a3b8;
|
|
10
|
+
--primary: #22c55e;
|
|
11
|
+
--primary-strong: #16a34a;
|
|
12
|
+
--primary-2: #2563eb;
|
|
13
|
+
--accent-tech: #7c3aed;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
body.catalog-body {
|
|
16
|
-
font-family:
|
|
17
|
+
font-family: 'Manrope', 'Bricolage Grotesque', sans-serif;
|
|
17
18
|
color: var(--text);
|
|
18
|
-
background:
|
|
19
|
-
radial-gradient(58rem 24rem at -8% -12%, rgba(34, 197, 94, 0.14), transparent 60%),
|
|
20
|
-
radial-gradient(58rem 24rem at 112% -10%, rgba(56, 189, 248, 0.14), transparent 58%),
|
|
21
|
-
linear-gradient(165deg, var(--bg), var(--bg-2));
|
|
19
|
+
background: radial-gradient(58rem 24rem at -8% -12%, rgba(37, 99, 235, 0.14), transparent 60%), radial-gradient(58rem 24rem at 112% -10%, rgba(124, 58, 237, 0.14), transparent 58%), linear-gradient(165deg, var(--bg), var(--bg-2));
|
|
22
20
|
min-height: 100vh;
|
|
23
21
|
background-attachment: fixed;
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
body.catalog-body::before {
|
|
27
|
-
content:
|
|
25
|
+
content: '';
|
|
28
26
|
position: fixed;
|
|
29
27
|
inset: 0;
|
|
30
28
|
pointer-events: none;
|
|
31
|
-
background:
|
|
32
|
-
linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
|
|
33
|
-
linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
|
|
29
|
+
background: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
|
|
34
30
|
background-size: 26px 26px;
|
|
35
31
|
opacity: 0.2;
|
|
36
32
|
z-index: -1;
|
|
@@ -81,7 +77,7 @@ body.catalog-body::before {
|
|
|
81
77
|
.catalog-title,
|
|
82
78
|
.section-title,
|
|
83
79
|
#panel-title {
|
|
84
|
-
font-family:
|
|
80
|
+
font-family: 'Sora', 'Instrument Serif', serif;
|
|
85
81
|
color: var(--text);
|
|
86
82
|
}
|
|
87
83
|
|
|
@@ -130,8 +126,8 @@ body.catalog-body::before {
|
|
|
130
126
|
.form-control:focus,
|
|
131
127
|
.form-select:focus {
|
|
132
128
|
border-color: #3f5f90;
|
|
133
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
134
|
-
background: #
|
|
129
|
+
box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
|
|
130
|
+
background: #1e293b;
|
|
135
131
|
color: var(--text);
|
|
136
132
|
}
|
|
137
133
|
|
|
@@ -153,7 +149,9 @@ body.catalog-body::before {
|
|
|
153
149
|
|
|
154
150
|
.categories-picker:focus-within {
|
|
155
151
|
border-color: #4c72ac;
|
|
156
|
-
box-shadow:
|
|
152
|
+
box-shadow:
|
|
153
|
+
0 0 0 0.2rem rgba(124, 58, 237, 0.2),
|
|
154
|
+
inset 0 1px 0 rgba(190, 214, 255, 0.12);
|
|
157
155
|
}
|
|
158
156
|
|
|
159
157
|
.categories-search-wrap {
|
|
@@ -290,7 +288,10 @@ body.catalog-body::before {
|
|
|
290
288
|
font-weight: 700;
|
|
291
289
|
border-radius: 14px;
|
|
292
290
|
box-shadow: 0 8px 24px rgba(24, 152, 88, 0.24);
|
|
293
|
-
transition:
|
|
291
|
+
transition:
|
|
292
|
+
transform 180ms ease,
|
|
293
|
+
box-shadow 180ms ease,
|
|
294
|
+
filter 180ms ease;
|
|
294
295
|
}
|
|
295
296
|
|
|
296
297
|
.btn-success:hover,
|
|
@@ -320,7 +321,10 @@ body.catalog-body::before {
|
|
|
320
321
|
border-color: var(--line-soft) !important;
|
|
321
322
|
border-radius: 14px !important;
|
|
322
323
|
overflow: hidden;
|
|
323
|
-
transition:
|
|
324
|
+
transition:
|
|
325
|
+
transform 220ms ease,
|
|
326
|
+
box-shadow 220ms ease,
|
|
327
|
+
border-color 220ms ease;
|
|
324
328
|
animation: fadeInUp 260ms ease both;
|
|
325
329
|
}
|
|
326
330
|
|
|
@@ -340,7 +344,9 @@ body.catalog-body::before {
|
|
|
340
344
|
.pack-card:focus-visible {
|
|
341
345
|
transform: translateY(-4px);
|
|
342
346
|
border-color: #5171a6 !important;
|
|
343
|
-
box-shadow:
|
|
347
|
+
box-shadow:
|
|
348
|
+
0 0 0 1px rgba(122, 168, 255, 0.22),
|
|
349
|
+
0 18px 36px rgba(0, 0, 0, 0.4);
|
|
344
350
|
}
|
|
345
351
|
|
|
346
352
|
.pack-card .card-title {
|
|
@@ -361,7 +367,7 @@ body.catalog-body::before {
|
|
|
361
367
|
}
|
|
362
368
|
|
|
363
369
|
.pack-thumb::after {
|
|
364
|
-
content:
|
|
370
|
+
content: '';
|
|
365
371
|
position: absolute;
|
|
366
372
|
inset: 0;
|
|
367
373
|
background: linear-gradient(to top, rgba(8, 14, 28, 0.32), rgba(8, 14, 28, 0));
|
|
@@ -488,7 +494,9 @@ body.catalog-body::before {
|
|
|
488
494
|
color: #eff7ff;
|
|
489
495
|
background: linear-gradient(120deg, rgba(16, 31, 57, 0.92), rgba(28, 53, 94, 0.9));
|
|
490
496
|
border: 1px solid rgba(111, 151, 220, 0.62);
|
|
491
|
-
box-shadow:
|
|
497
|
+
box-shadow:
|
|
498
|
+
0 6px 14px rgba(2, 8, 22, 0.34),
|
|
499
|
+
inset 0 1px 0 rgba(190, 216, 255, 0.2);
|
|
492
500
|
backdrop-filter: blur(6px);
|
|
493
501
|
text-transform: lowercase;
|
|
494
502
|
letter-spacing: 0.015em;
|
|
@@ -518,7 +526,7 @@ body.catalog-body::before {
|
|
|
518
526
|
}
|
|
519
527
|
|
|
520
528
|
.modal-content {
|
|
521
|
-
background: #
|
|
529
|
+
background: #111827 !important;
|
|
522
530
|
border-color: var(--line-soft) !important;
|
|
523
531
|
}
|
|
524
532
|
|