@omnizap-system/omnizap 2.5.12
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/.clusterfuzzlite/Dockerfile +10 -0
- package/.env.example +907 -0
- package/.github/codeql/codeql-config.yml +10 -0
- package/.github/dependabot.yml +35 -0
- package/.github/workflows/ci.yml +73 -0
- package/.github/workflows/codeql.yml +106 -0
- package/.github/workflows/db-migration-check.yml +98 -0
- package/.github/workflows/dependency-review.yml +22 -0
- package/.github/workflows/deploy.yml +95 -0
- package/.github/workflows/release.yml +106 -0
- package/.github/workflows/security-attest-provenance.yml +51 -0
- package/.github/workflows/security-gitleaks.yml +34 -0
- package/.github/workflows/security-runner-hardening.yml +31 -0
- package/.github/workflows/security-scorecard.yml +44 -0
- package/.github/workflows/security-zap-baseline.yml +44 -0
- package/.github/workflows/security-zap-full-scan.yml +43 -0
- package/.github/workflows/security-zizmor.yml +36 -0
- package/.github/workflows/wiki-sync.yml +44 -0
- package/.gitleaks.toml +15 -0
- package/.prettierrc +34 -0
- package/CODE_OF_CONDUCT.md +114 -0
- package/LICENSE +56 -0
- package/README.md +110 -0
- package/SECURITY.md +110 -0
- package/app/config/index.js +4 -0
- package/app/configParts/adminIdentity.js +92 -0
- package/app/configParts/baileysConfig.js +1818 -0
- package/app/configParts/groupUtils.js +692 -0
- package/app/configParts/loggerConfig.js +394 -0
- package/app/configParts/messagePersistenceService.js +305 -0
- package/app/connection/baileysCompatibility.test.js +40 -0
- package/app/connection/baileysDbAuthState.js +344 -0
- package/app/connection/socketController.js +2243 -0
- package/app/controllers/messageController.js +7 -0
- package/app/controllers/messagePipeline/commandMiddleware.js +146 -0
- package/app/controllers/messagePipeline/conversationMiddleware.js +183 -0
- package/app/controllers/messagePipeline/messagePipelineMiddlewares.test.js +522 -0
- package/app/controllers/messagePipeline/postProcessingMiddleware.js +41 -0
- package/app/controllers/messagePipeline/preProcessingMiddlewares.js +166 -0
- package/app/controllers/messageProcessingPipeline.js +699 -0
- package/app/modules/adminModule/AGENT.md +4056 -0
- package/app/modules/adminModule/adminAiHelpService.js +56 -0
- package/app/modules/adminModule/adminConfigRuntime.js +177 -0
- package/app/modules/adminModule/commandConfig.json +7122 -0
- package/app/modules/adminModule/groupCommandHandlers.js +1823 -0
- package/app/modules/adminModule/groupCommandHandlers.test.js +350 -0
- package/app/modules/adminModule/groupEventHandlers.js +399 -0
- package/app/modules/aiModule/AGENT.md +547 -0
- package/app/modules/aiModule/aiAiHelpService.js +14 -0
- package/app/modules/aiModule/aiConfigRuntime.js +135 -0
- package/app/modules/aiModule/catCommand.js +967 -0
- package/app/modules/aiModule/commandConfig.json +981 -0
- package/app/modules/analyticsModule/messageAnalysisEventRepository.js +83 -0
- package/app/modules/gameModule/AGENT.md +196 -0
- package/app/modules/gameModule/commandConfig.json +366 -0
- package/app/modules/gameModule/diceCommand.js +42 -0
- package/app/modules/gameModule/gameAiHelpService.js +14 -0
- package/app/modules/gameModule/gameConfigRuntime.js +68 -0
- package/app/modules/menuModule/AGENT.md +205 -0
- package/app/modules/menuModule/commandConfig.json +366 -0
- package/app/modules/menuModule/common.js +316 -0
- package/app/modules/menuModule/menuAiHelpService.js +14 -0
- package/app/modules/menuModule/menuConfigRuntime.js +68 -0
- package/app/modules/menuModule/menus.js +66 -0
- package/app/modules/playModule/AGENT.md +321 -0
- package/app/modules/playModule/commandConfig.json +584 -0
- package/app/modules/playModule/playAiHelpService.js +14 -0
- package/app/modules/playModule/playCommand.js +1417 -0
- package/app/modules/playModule/playConfigRuntime.js +68 -0
- package/app/modules/quoteModule/AGENT.md +199 -0
- package/app/modules/quoteModule/commandConfig.json +366 -0
- package/app/modules/quoteModule/quoteAiHelpService.js +14 -0
- package/app/modules/quoteModule/quoteCommand.js +842 -0
- package/app/modules/quoteModule/quoteConfigRuntime.js +68 -0
- package/app/modules/rpgPokemonModule/AGENT.md +229 -0
- package/app/modules/rpgPokemonModule/commandConfig.json +386 -0
- package/app/modules/rpgPokemonModule/rpgBattleCanvasRenderer.js +795 -0
- package/app/modules/rpgPokemonModule/rpgBattleService.js +2110 -0
- package/app/modules/rpgPokemonModule/rpgBattleService.test.js +770 -0
- package/app/modules/rpgPokemonModule/rpgEvolutionUtils.js +22 -0
- package/app/modules/rpgPokemonModule/rpgPokemonAiHelpService.js +14 -0
- package/app/modules/rpgPokemonModule/rpgPokemonCommand.js +174 -0
- package/app/modules/rpgPokemonModule/rpgPokemonConfigRuntime.js +68 -0
- package/app/modules/rpgPokemonModule/rpgPokemonDomain.js +192 -0
- package/app/modules/rpgPokemonModule/rpgPokemonDomain.test.js +93 -0
- package/app/modules/rpgPokemonModule/rpgPokemonEvolution.test.js +46 -0
- package/app/modules/rpgPokemonModule/rpgPokemonMessages.js +746 -0
- package/app/modules/rpgPokemonModule/rpgPokemonRepository.js +1847 -0
- package/app/modules/rpgPokemonModule/rpgPokemonService.js +6839 -0
- package/app/modules/rpgPokemonModule/rpgProfileCanvasRenderer.js +354 -0
- package/app/modules/statsModule/AGENT.md +320 -0
- package/app/modules/statsModule/commandConfig.json +540 -0
- package/app/modules/statsModule/globalRankingCommand.js +64 -0
- package/app/modules/statsModule/rankingCommand.js +41 -0
- package/app/modules/statsModule/rankingCommon.js +1305 -0
- package/app/modules/statsModule/statsAiHelpService.js +14 -0
- package/app/modules/statsModule/statsConfigRuntime.js +68 -0
- package/app/modules/stickerModule/AGENT.md +692 -0
- package/app/modules/stickerModule/addStickerMetadata.js +239 -0
- package/app/modules/stickerModule/commandConfig.json +1216 -0
- package/app/modules/stickerModule/convertToWebp.js +367 -0
- package/app/modules/stickerModule/stickerAiHelpService.js +14 -0
- package/app/modules/stickerModule/stickerCommand.js +446 -0
- package/app/modules/stickerModule/stickerConfigRuntime.js +68 -0
- package/app/modules/stickerModule/stickerConvertCommand.js +159 -0
- package/app/modules/stickerModule/stickerTextCommand.js +653 -0
- package/app/modules/stickerPackModule/AGENT.md +215 -0
- package/app/modules/stickerPackModule/autoPackCollectorRuntime.js +20 -0
- package/app/modules/stickerPackModule/autoPackCollectorService.js +357 -0
- package/app/modules/stickerPackModule/commandConfig.json +387 -0
- package/app/modules/stickerPackModule/domainEventOutboxRepository.js +227 -0
- package/app/modules/stickerPackModule/domainEvents.js +52 -0
- package/app/modules/stickerPackModule/semanticReclassificationEngine.js +429 -0
- package/app/modules/stickerPackModule/semanticReclassificationEngine.test.js +75 -0
- package/app/modules/stickerPackModule/semanticThemeClusterService.js +544 -0
- package/app/modules/stickerPackModule/stickerAssetClassificationRepository.js +400 -0
- package/app/modules/stickerPackModule/stickerAssetRepository.js +400 -0
- package/app/modules/stickerPackModule/stickerAssetReprocessQueueRepository.js +175 -0
- package/app/modules/stickerPackModule/stickerAutoPackByTagsRuntime.js +3702 -0
- package/app/modules/stickerPackModule/stickerClassificationBackgroundRuntime.js +559 -0
- package/app/modules/stickerPackModule/stickerClassificationService.js +557 -0
- package/app/modules/stickerPackModule/stickerDedicatedTaskWorkerRuntime.js +249 -0
- package/app/modules/stickerPackModule/stickerDomainEventBus.js +65 -0
- package/app/modules/stickerPackModule/stickerDomainEventConsumerRuntime.js +208 -0
- package/app/modules/stickerPackModule/stickerMarketplaceDriftService.js +99 -0
- package/app/modules/stickerPackModule/stickerObjectStorageService.js +285 -0
- package/app/modules/stickerPackModule/stickerPackAiHelpService.js +14 -0
- package/app/modules/stickerPackModule/stickerPackCommandHandlers.js +1148 -0
- package/app/modules/stickerPackModule/stickerPackConfigRuntime.js +68 -0
- package/app/modules/stickerPackModule/stickerPackEngagementRepository.js +152 -0
- package/app/modules/stickerPackModule/stickerPackErrors.js +30 -0
- package/app/modules/stickerPackModule/stickerPackInteractionEventRepository.js +101 -0
- package/app/modules/stickerPackModule/stickerPackItemRepository.js +432 -0
- package/app/modules/stickerPackModule/stickerPackMarketplaceService.js +313 -0
- package/app/modules/stickerPackModule/stickerPackMessageService.js +268 -0
- package/app/modules/stickerPackModule/stickerPackRepository.js +450 -0
- package/app/modules/stickerPackModule/stickerPackScoreSnapshotRepository.js +179 -0
- package/app/modules/stickerPackModule/stickerPackScoreSnapshotRuntime.js +271 -0
- package/app/modules/stickerPackModule/stickerPackService.js +733 -0
- package/app/modules/stickerPackModule/stickerPackServiceRuntime.js +32 -0
- package/app/modules/stickerPackModule/stickerPackUtils.js +107 -0
- package/app/modules/stickerPackModule/stickerStorageService.js +559 -0
- package/app/modules/stickerPackModule/stickerWorkerPipelineRuntime.js +242 -0
- package/app/modules/stickerPackModule/stickerWorkerTaskQueueRepository.js +242 -0
- package/app/modules/systemMetricsModule/AGENT.md +193 -0
- package/app/modules/systemMetricsModule/commandConfig.json +344 -0
- package/app/modules/systemMetricsModule/pingCommand.js +399 -0
- package/app/modules/systemMetricsModule/systemMetricsAiHelpService.js +14 -0
- package/app/modules/systemMetricsModule/systemMetricsConfigRuntime.js +68 -0
- package/app/modules/tiktokModule/AGENT.md +196 -0
- package/app/modules/tiktokModule/commandConfig.json +366 -0
- package/app/modules/tiktokModule/tiktokAiHelpService.js +14 -0
- package/app/modules/tiktokModule/tiktokCommand.js +716 -0
- package/app/modules/tiktokModule/tiktokConfigRuntime.js +68 -0
- package/app/modules/userModule/AGENT.md +200 -0
- package/app/modules/userModule/commandConfig.json +386 -0
- package/app/modules/userModule/userAiHelpService.js +14 -0
- package/app/modules/userModule/userCommand.js +1155 -0
- package/app/modules/userModule/userConfigRuntime.js +68 -0
- package/app/modules/waifuPicsModule/AGENT.md +431 -0
- package/app/modules/waifuPicsModule/commandConfig.json +780 -0
- package/app/modules/waifuPicsModule/waifuPicsAiHelpService.js +14 -0
- package/app/modules/waifuPicsModule/waifuPicsCommand.js +586 -0
- package/app/modules/waifuPicsModule/waifuPicsConfigRuntime.js +68 -0
- package/app/observability/metrics.js +766 -0
- package/app/services/ai/aiHelpResponseCacheRepository.js +280 -0
- package/app/services/ai/aiLearningRepository.js +400 -0
- package/app/services/ai/commandConfigEnrichmentRepository.js +769 -0
- package/app/services/ai/commandConfigEnrichmentService.js +452 -0
- package/app/services/ai/commandConfigValidationService.js +443 -0
- package/app/services/ai/commandToolBuilderService.js +192 -0
- package/app/services/ai/conversationRouterService.js +516 -0
- package/app/services/ai/geminiService.js +115 -0
- package/app/services/ai/geminiService.test.js +87 -0
- package/app/services/ai/globalModuleAiHelpService.js +1412 -0
- package/app/services/ai/globalToolCallingService.js +203 -0
- package/app/services/ai/messageCommandExecutionService.js +391 -0
- package/app/services/ai/moduleAiHelpCoreService.js +1099 -0
- package/app/services/ai/moduleAiHelpWrapperFactory.js +65 -0
- package/app/services/ai/moduleCommandConfigRuntimeService.js +113 -0
- package/app/services/ai/moduleToolExecutorService.js +464 -0
- package/app/services/ai/moduleToolRegistryService.js +178 -0
- package/app/services/ai/toolCandidateSelectorService.js +781 -0
- package/app/services/auth/googleWebLinkService.js +80 -0
- package/app/services/auth/whatsappLoginLinkService.js +230 -0
- package/app/services/external/pokeApiService.js +398 -0
- package/app/services/group/groupMetadataService.js +311 -0
- package/app/services/infra/dbWriteQueue.js +874 -0
- package/app/services/infra/featureFlagService.js +131 -0
- package/app/services/infra/queueUtils.js +55 -0
- package/app/services/messaging/captchaService.js +491 -0
- package/app/services/messaging/messagePersistenceService.js +1 -0
- package/app/services/messaging/newsBroadcastService.js +347 -0
- package/app/services/sticker/stickerFocusService.js +347 -0
- package/app/services/sticker/stickerFocusService.test.js +43 -0
- package/app/store/aiPromptStore.js +38 -0
- package/app/store/conversationSessionStore.js +131 -0
- package/app/store/groupConfigStore.js +58 -0
- package/app/store/premiumUserStore.js +54 -0
- package/app/utils/antiLink/antiLinkModule.js +700 -0
- package/app/utils/http/getImageBufferModule.js +18 -0
- package/app/utils/json/jsonSanitizer.js +113 -0
- package/app/utils/json/jsonSanitizer.test.js +40 -0
- package/app/utils/systemMetrics/systemMetricsModule.js +88 -0
- package/app/workers/aiLearningWorker.js +605 -0
- package/app/workers/commandConfigEnrichmentWorker.js +242 -0
- package/database/index.js +2075 -0
- package/database/init.js +151 -0
- package/database/migrations/.gitkeep +0 -0
- package/database/migrations/20260307_d0_hardening_down.sql +64 -0
- package/database/migrations/20260307_d0_hardening_up.sql +79 -0
- package/database/migrations/20260307_d1_terms_acceptance_down.sql +11 -0
- package/database/migrations/20260307_d1_terms_acceptance_up.sql +37 -0
- package/database/migrations/20260307_d2_auth_hardening_down.sql +75 -0
- package/database/migrations/20260307_d2_auth_hardening_up.sql +100 -0
- package/database/migrations/20260314_d7_canonical_sender_down.sql +53 -0
- package/database/migrations/20260314_d7_canonical_sender_up.sql +114 -0
- package/database/migrations/20260406_d30_security_analytics_down.sql +95 -0
- package/database/migrations/20260406_d30_security_analytics_up.sql +292 -0
- package/database/migrations/20260407_d31_web_google_session_token_hardening_down.sql +2 -0
- package/database/migrations/20260407_d31_web_google_session_token_hardening_up.sql +17 -0
- package/database/migrations/20260408_d32_ai_help_response_cache_down.sql +1 -0
- package/database/migrations/20260408_d32_ai_help_response_cache_up.sql +22 -0
- package/database/migrations/20260409_d33_ai_learning_tables_down.sql +4 -0
- package/database/migrations/20260409_d33_ai_learning_tables_up.sql +52 -0
- package/database/migrations/20260410_d34_command_config_enrichment_down.sql +3 -0
- package/database/migrations/20260410_d34_command_config_enrichment_up.sql +48 -0
- package/database/schema.sql +1186 -0
- package/docker-compose.yml +104 -0
- package/docs/audits/stickerCatalogController-out-of-scope.md +103 -0
- package/docs/audits/stickerCatalogController-symbols.md +58 -0
- package/docs/compliance/acceptable-use-policy-2026-03-07.md +35 -0
- package/docs/compliance/dpa-b2b-standard-2026-03-07.md +80 -0
- package/docs/compliance/monthly-compliance-checklist-2026-03-07.md +88 -0
- package/docs/compliance/notice-and-takedown-policy-2026-03-07.md +34 -0
- package/docs/compliance/privacy-policy-2026-03-07.md +75 -0
- package/docs/compliance/subprocessors-inventory-2026-03-07.md +16 -0
- package/docs/database/production-db-evolution-runbook-2026q1.md +365 -0
- package/docs/security/dsar-lgpd-runbook-2026-03-07.md +86 -0
- package/docs/security/incident-response-lgpd-anpd-runbook-2026-03-07.md +77 -0
- package/docs/security/network-hardening-runbook-2026-03-07.md +137 -0
- package/docs/seo/omnizap-seo-playbook-br-2026-02-28.md +238 -0
- package/docs/seo/satellite-page-template.md +116 -0
- package/docs/seo/satellite-pages-phase1.json +364 -0
- package/docs/wiki/Home.md +120 -0
- package/docs/wiki/pair-extraordinaire-2026-03-08.md +3 -0
- package/docs/wiki/recent-changes-2026-03-08.md +47 -0
- package/ecosystem.prod.config.cjs +135 -0
- package/eslint.config.js +89 -0
- package/index.js +488 -0
- package/ml/clip_classifier/Dockerfile +18 -0
- package/ml/clip_classifier/README.md +118 -0
- package/ml/clip_classifier/adaptive_scoring.py +40 -0
- package/ml/clip_classifier/classifier.py +654 -0
- package/ml/clip_classifier/embedding_store.py +481 -0
- package/ml/clip_classifier/env_loader.py +15 -0
- package/ml/clip_classifier/llm_label_expander.py +144 -0
- package/ml/clip_classifier/main.py +213 -0
- package/ml/clip_classifier/requirements.txt +10 -0
- package/ml/clip_classifier/similarity_engine.py +74 -0
- package/new-logo.png +0 -0
- package/observability/alert-rules.yml +60 -0
- package/observability/grafana/dashboards/omnizap-mysql.json +136 -0
- package/observability/grafana/dashboards/omnizap-overview.json +170 -0
- package/observability/grafana/provisioning/dashboards/dashboards.yml +11 -0
- package/observability/grafana/provisioning/datasources/datasources.yml +15 -0
- package/observability/loki-config.yml +38 -0
- package/observability/mysql-setup.sql +46 -0
- package/observability/prometheus.yml +35 -0
- package/observability/promtail-config.yml +84 -0
- package/observability/sticker-catalog-slo.md +83 -0
- package/observability/sticker-scale-hardening-rollout.md +128 -0
- package/package.json +144 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/assets/css/commands-react.input.css +71 -0
- package/public/assets/css/create-pack-react.input.css +31 -0
- package/public/assets/css/home-react.input.css +106 -0
- package/public/assets/css/login-react.input.css +58 -0
- package/public/assets/css/stickers-react.input.css +18 -0
- package/public/assets/css/terms-react.input.css +115 -0
- package/public/assets/css/user-react.input.css +57 -0
- package/public/assets/images/brand-icon-192.png +0 -0
- package/public/assets/images/brand-logo-128.webp +0 -0
- package/public/assets/images/hero-banner-1280.jpg +0 -0
- package/public/comandos/commands-catalog.json +4517 -0
- package/public/css/api-docs.css +161 -0
- package/public/css/stickers-admin.css +1288 -0
- package/public/css/styles.css +679 -0
- package/public/css/systemadm/admin.css +474 -0
- package/public/css/systemadm/base.css +73 -0
- package/public/css/systemadm/components.css +662 -0
- package/public/css/systemadm/layout.css +229 -0
- package/public/css/systemadm/tokens.css +56 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/js/apps/apiDocsApp.js +235 -0
- package/public/js/apps/commandsReactApp.js +528 -0
- package/public/js/apps/createPackApp.js +1646 -0
- package/public/js/apps/homeReactApp.js +942 -0
- package/public/js/apps/loginReactApp.js +496 -0
- package/public/js/apps/stickersAdminApp.js +1753 -0
- package/public/js/apps/stickersApp.js +3797 -0
- package/public/js/apps/termsReactApp.js +528 -0
- package/public/js/apps/userApp.js +2540 -0
- package/public/js/apps/userProfile/actions.js +66 -0
- package/public/js/apps/userReactApp.js +547 -0
- package/public/js/catalog.js +950 -0
- package/public/pages/api-docs.html +40 -0
- package/public/pages/aup.html +158 -0
- package/public/pages/comandos.html +41 -0
- package/public/pages/dpa.html +227 -0
- package/public/pages/home.html +45 -0
- package/public/pages/licenca.html +182 -0
- package/public/pages/login.html +40 -0
- package/public/pages/notice-and-takedown.html +234 -0
- package/public/pages/politica-de-privacidade.html +251 -0
- package/public/pages/seo-bot-whatsapp-para-grupo.html +350 -0
- package/public/pages/seo-bot-whatsapp-sem-programar.html +350 -0
- package/public/pages/seo-como-automatizar-avisos-no-whatsapp.html +350 -0
- package/public/pages/seo-como-criar-comandos-whatsapp.html +350 -0
- package/public/pages/seo-como-evitar-spam-no-whatsapp.html +350 -0
- package/public/pages/seo-como-moderar-grupo-whatsapp.html +350 -0
- package/public/pages/seo-como-organizar-comunidade-whatsapp.html +350 -0
- package/public/pages/seo-melhor-bot-whatsapp-para-grupos.html +350 -0
- package/public/pages/stickers-admin.html +31 -0
- package/public/pages/stickers-create.html +41 -0
- package/public/pages/stickers.html +45 -0
- package/public/pages/suboperadores.html +237 -0
- package/public/pages/termos-de-uso-texto-integral.html +241 -0
- package/public/pages/termos-de-uso.html +41 -0
- package/public/pages/user-password-reset.html +32 -0
- package/public/pages/user-systemadm.html +508 -0
- package/public/pages/user.html +39 -0
- package/public/robots.txt +9 -0
- package/public/site.webmanifest +24 -0
- package/public/sitemap.xml +98 -0
- package/schemas/command-config.schema.json +582 -0
- package/scripts/baileys-compat-smoke.mjs +12 -0
- package/scripts/cache-bust.mjs +142 -0
- package/scripts/deploy.sh +916 -0
- package/scripts/email-broadcast-terms-update.mjs +170 -0
- package/scripts/enrich-command-discovery-fields.mjs +286 -0
- package/scripts/generate-command-config-schema.mjs +273 -0
- package/scripts/generate-commands-catalog.mjs +308 -0
- package/scripts/generate-module-agents.mjs +631 -0
- package/scripts/generate-seo-satellite-pages.mjs +400 -0
- package/scripts/github-deploy-notify.mjs +174 -0
- package/scripts/github-release-notify.mjs +219 -0
- package/scripts/release.sh +599 -0
- package/scripts/run-codeql-local.sh +116 -0
- package/scripts/run-prettier-all.mjs +25 -0
- package/scripts/security-smoketest.mjs +581 -0
- package/scripts/sticker-catalog-loadtest.mjs +210 -0
- package/scripts/sticker-worker-task.mjs +119 -0
- package/scripts/sync-readme-snapshot.mjs +133 -0
- package/scripts/validate-command-config-schema.mjs +130 -0
- package/scripts/validate-command-configs.mjs +15 -0
- package/scripts/wiki-sync.sh +191 -0
- package/server/auth/googleWebAuth/googleWebAuthRuntime.js +62 -0
- package/server/auth/googleWebAuth/googleWebAuthService.js +807 -0
- package/server/auth/jwt/webJwtService.js +147 -0
- package/server/auth/stickerCatalogAuthContext.js +165 -0
- package/server/auth/termsAcceptance/termsAcceptanceHandler.js +189 -0
- package/server/auth/userPassword/index.js +14 -0
- package/server/auth/userPassword/userPasswordAuthService.js +422 -0
- package/server/auth/userPassword/userPasswordCrypto.js +199 -0
- package/server/auth/userPassword/userPasswordCrypto.test.js +76 -0
- package/server/auth/userPassword/userPasswordRecoveryService.js +728 -0
- package/server/auth/validation/authSchemas.js +236 -0
- package/server/auth/webAccount/webAccountHandlers.js +1434 -0
- package/server/controllers/admin/adminBanService.js +138 -0
- package/server/controllers/admin/adminPanelHandlers.js +2083 -0
- package/server/controllers/admin/stickerCatalogAdminContext.js +17 -0
- package/server/controllers/admin/systemAdminController.js +201 -0
- package/server/controllers/email/emailAutomationController.js +239 -0
- package/server/controllers/metricsController.js +21 -0
- package/server/controllers/seo/stickerCatalogSeoContext.js +514 -0
- package/server/controllers/sticker/nonCatalogHandlers.js +303 -0
- package/server/controllers/sticker/stickerCatalogController.js +4700 -0
- package/server/controllers/system/contactController.js +115 -0
- package/server/controllers/system/githubController.js +137 -0
- package/server/controllers/system/stickerCatalogSystemContext.js +758 -0
- package/server/controllers/system/storageController.js +154 -0
- package/server/controllers/system/systemController.js +135 -0
- package/server/controllers/system/systemMetricsController.js +156 -0
- package/server/controllers/system/visitController.js +90 -0
- package/server/controllers/userController.js +145 -0
- package/server/email/emailAutomationRuntime.js +225 -0
- package/server/email/emailAutomationService.js +125 -0
- package/server/email/emailOutboxRepository.js +282 -0
- package/server/email/emailTemplateService.js +480 -0
- package/server/email/emailTransportService.js +156 -0
- package/server/http/clientIp.js +95 -0
- package/server/http/httpRequestUtils.js +262 -0
- package/server/http/httpRequestUtils.test.js +80 -0
- package/server/http/httpServer.js +180 -0
- package/server/http/requestContext.js +20 -0
- package/server/http/siteRoutingUtils.js +87 -0
- package/server/index.js +1 -0
- package/server/middleware/cachePolicy.js +26 -0
- package/server/middleware/cachePolicyHelpers.js +1 -0
- package/server/middleware/endpointRateLimit.js +181 -0
- package/server/middleware/rateLimit.js +70 -0
- package/server/middleware/requireAdminAuth.js +48 -0
- package/server/middleware/securityHeaders.js +97 -0
- package/server/routes/admin/systemAdminRouter.js +64 -0
- package/server/routes/email/emailAutomationRouter.js +46 -0
- package/server/routes/health/healthRouter.js +41 -0
- package/server/routes/indexRouter.js +234 -0
- package/server/routes/metrics/metricsRouter.js +58 -0
- package/server/routes/static/staticPageRouter.js +134 -0
- package/server/routes/sticker/catalogHandlers/catalogAdminHttp.js +105 -0
- package/server/routes/sticker/catalogHandlers/catalogAuthHttp.js +77 -0
- package/server/routes/sticker/catalogHandlers/catalogPublicHttp.js +120 -0
- package/server/routes/sticker/catalogHandlers/catalogUploadHttp.js +83 -0
- package/server/routes/sticker/catalogRouter.js +77 -0
- package/server/routes/sticker/stickerApiRouter.js +84 -0
- package/server/routes/sticker/stickerDataRouter.js +145 -0
- package/server/routes/sticker/stickerSiteRouter.js +43 -0
- package/server/routes/user/userApiPaths.js +66 -0
- package/server/routes/user/userRouter.js +65 -0
- package/server/utils/safePath.js +26 -0
- package/utils/logger/loggerModule.js +35 -0
- package/vite.config.mjs +38 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import fs from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
import { normalizeBasePath, sendAsset, sendJson } from '../../http/httpRequestUtils.js';
|
|
4
|
+
import logger from '#logger';
|
|
5
|
+
|
|
6
|
+
const STICKER_DATA_PUBLIC_PATH = normalizeBasePath(process.env.STICKER_DATA_PUBLIC_PATH, '/data');
|
|
7
|
+
const STICKER_DATA_PUBLIC_DIR = path.resolve(process.env.STICKER_DATA_PUBLIC_DIR || path.join(process.cwd(), 'data'));
|
|
8
|
+
const MAX_DATA_SCAN_FILES = Number(process.env.STICKER_DATA_SCAN_MAX_FILES || 10000);
|
|
9
|
+
const DATA_IMAGE_EXTENSIONS = new Set(['.webp', '.png', '.jpg', '.jpeg', '.gif', '.avif', '.bmp']);
|
|
10
|
+
|
|
11
|
+
const normalizeRelativePath = (value) =>
|
|
12
|
+
String(value || '')
|
|
13
|
+
.split(path.sep)
|
|
14
|
+
.join('/')
|
|
15
|
+
.replace(/^\/+/, '');
|
|
16
|
+
|
|
17
|
+
const isAllowedDataImageFile = (filePath) => DATA_IMAGE_EXTENSIONS.has(path.extname(filePath).toLowerCase());
|
|
18
|
+
|
|
19
|
+
const isInsideDataPublicRoot = (targetPath) => targetPath === STICKER_DATA_PUBLIC_DIR || targetPath.startsWith(`${STICKER_DATA_PUBLIC_DIR}${path.sep}`);
|
|
20
|
+
|
|
21
|
+
const buildDataAssetUrl = (relativePath) =>
|
|
22
|
+
`${STICKER_DATA_PUBLIC_PATH}/${String(relativePath)
|
|
23
|
+
.split('/')
|
|
24
|
+
.map((segment) => encodeURIComponent(segment))
|
|
25
|
+
.join('/')}`;
|
|
26
|
+
|
|
27
|
+
export const toPublicDataUrlFromStoragePath = (storagePath) => {
|
|
28
|
+
if (!storagePath) return null;
|
|
29
|
+
const absolutePath = path.resolve(String(storagePath));
|
|
30
|
+
if (!isInsideDataPublicRoot(absolutePath)) return null;
|
|
31
|
+
|
|
32
|
+
const relativePath = normalizeRelativePath(path.relative(STICKER_DATA_PUBLIC_DIR, absolutePath));
|
|
33
|
+
if (!relativePath || relativePath.startsWith('..')) return null;
|
|
34
|
+
return buildDataAssetUrl(relativePath);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const toImageMimeType = (filePath) => {
|
|
38
|
+
const extension = path.extname(filePath).toLowerCase();
|
|
39
|
+
if (extension === '.png') return 'image/png';
|
|
40
|
+
if (extension === '.jpg' || extension === '.jpeg') return 'image/jpeg';
|
|
41
|
+
if (extension === '.gif') return 'image/gif';
|
|
42
|
+
if (extension === '.avif') return 'image/avif';
|
|
43
|
+
if (extension === '.bmp') return 'image/bmp';
|
|
44
|
+
return 'image/webp';
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export const listDataImageFiles = async () => {
|
|
48
|
+
const files = [];
|
|
49
|
+
const queue = [STICKER_DATA_PUBLIC_DIR];
|
|
50
|
+
|
|
51
|
+
while (queue.length && files.length < MAX_DATA_SCAN_FILES) {
|
|
52
|
+
const currentDir = queue.shift();
|
|
53
|
+
let entries = [];
|
|
54
|
+
try {
|
|
55
|
+
entries = await fs.readdir(currentDir, { withFileTypes: true });
|
|
56
|
+
} catch (error) {
|
|
57
|
+
if (error?.code === 'ENOENT') break;
|
|
58
|
+
throw error;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
for (const entry of entries) {
|
|
62
|
+
const absolutePath = path.join(currentDir, entry.name);
|
|
63
|
+
|
|
64
|
+
if (!isInsideDataPublicRoot(absolutePath)) continue;
|
|
65
|
+
if (entry.isDirectory()) {
|
|
66
|
+
queue.push(absolutePath);
|
|
67
|
+
continue;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (!entry.isFile()) continue;
|
|
71
|
+
if (!isAllowedDataImageFile(entry.name)) continue;
|
|
72
|
+
|
|
73
|
+
const relativePath = normalizeRelativePath(path.relative(STICKER_DATA_PUBLIC_DIR, absolutePath));
|
|
74
|
+
if (!relativePath || relativePath.startsWith('..')) continue;
|
|
75
|
+
|
|
76
|
+
let stat = null;
|
|
77
|
+
try {
|
|
78
|
+
stat = await fs.stat(absolutePath);
|
|
79
|
+
} catch {
|
|
80
|
+
stat = null;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
files.push({
|
|
84
|
+
name: path.basename(relativePath),
|
|
85
|
+
relative_path: relativePath,
|
|
86
|
+
size_bytes: stat?.size ?? null,
|
|
87
|
+
updated_at: stat?.mtime ? stat.mtime.toISOString() : null,
|
|
88
|
+
created_at: stat?.ctime ? stat.ctime.toISOString() : null,
|
|
89
|
+
url: buildDataAssetUrl(relativePath),
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
if (files.length >= MAX_DATA_SCAN_FILES) break;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
files.sort((left, right) => {
|
|
97
|
+
const leftTime = left.updated_at ? Date.parse(left.updated_at) : 0;
|
|
98
|
+
const rightTime = right.updated_at ? Date.parse(right.updated_at) : 0;
|
|
99
|
+
return rightTime - leftTime;
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
return files;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
export const handlePublicDataAssetRequest = async (req, res, pathname) => {
|
|
106
|
+
const suffix = pathname.slice(STICKER_DATA_PUBLIC_PATH.length).replace(/^\/+/, '');
|
|
107
|
+
if (!suffix) {
|
|
108
|
+
sendJson(req, res, 400, {
|
|
109
|
+
error: 'Informe o caminho do arquivo. Exemplo: /data/stickers/arquivo.webp',
|
|
110
|
+
});
|
|
111
|
+
return true;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const decodedSegments = suffix
|
|
115
|
+
.split('/')
|
|
116
|
+
.filter(Boolean)
|
|
117
|
+
.map((segment) => {
|
|
118
|
+
try {
|
|
119
|
+
return decodeURIComponent(segment);
|
|
120
|
+
} catch {
|
|
121
|
+
return segment;
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
const relativePath = normalizeRelativePath(decodedSegments.join('/'));
|
|
126
|
+
if (!relativePath || relativePath.includes('..') || !isAllowedDataImageFile(relativePath)) {
|
|
127
|
+
sendJson(req, res, 400, { error: 'Caminho de imagem invalido.' });
|
|
128
|
+
return true;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const absolutePath = path.resolve(STICKER_DATA_PUBLIC_DIR, relativePath);
|
|
132
|
+
if (!isInsideDataPublicRoot(absolutePath)) {
|
|
133
|
+
sendJson(req, res, 403, { error: 'Acesso negado.' });
|
|
134
|
+
return true;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
try {
|
|
138
|
+
const buffer = await fs.readFile(absolutePath);
|
|
139
|
+
sendAsset(req, res, buffer, toImageMimeType(absolutePath));
|
|
140
|
+
return true;
|
|
141
|
+
} catch (error) {
|
|
142
|
+
if (error?.code === 'ENOENT') {
|
|
143
|
+
sendJson(req, res, 404, { error: 'Imagem nao encontrada.' });
|
|
144
|
+
return true;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
logger.error('Falha ao servir imagem da pasta data.', {
|
|
148
|
+
action: 'sticker_catalog_data_asset_failed',
|
|
149
|
+
error: error?.message,
|
|
150
|
+
relative_path: relativePath,
|
|
151
|
+
});
|
|
152
|
+
return false;
|
|
153
|
+
}
|
|
154
|
+
};
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import logger from '#logger';
|
|
2
|
+
import { executeQuery, TABLES } from '../../../database/index.js';
|
|
3
|
+
import { getActiveSocket, getJidUser, normalizeJid, profilePictureUrlFromActiveSocket } from '../../../app/config/index.js';
|
|
4
|
+
import { getSystemMetrics } from '../../../app/utils/systemMetrics/systemMetricsModule.js';
|
|
5
|
+
import { createStickerCatalogSystemContext } from './stickerCatalogSystemContext.js';
|
|
6
|
+
import { createStickerCatalogNonCatalogHandlers } from '../sticker/nonCatalogHandlers.js';
|
|
7
|
+
import { sendJson, sendText, normalizeCatalogVisibility, normalizeVisitPath } from '../../http/httpRequestUtils.js';
|
|
8
|
+
import { fetchGitHubProjectSummary } from './githubController.js';
|
|
9
|
+
import { fetchPrometheusSummary } from './systemMetricsController.js';
|
|
10
|
+
import { buildBotContactInfo, buildSupportInfo, resolveCatalogBotPhone } from './contactController.js';
|
|
11
|
+
import { buildAdminMenu, buildAiMenu, buildAnimeMenu, buildMediaMenu, buildMenuCaption, buildQuoteMenu, buildStatsMenu, buildStickerMenu } from '../../../app/modules/menuModule/common.js';
|
|
12
|
+
import { trackWebVisitMetric } from './visitController.js';
|
|
13
|
+
|
|
14
|
+
const SYSTEM_SUMMARY_CACHE_SECONDS = Number(process.env.SYSTEM_SUMMARY_CACHE_SECONDS || 20);
|
|
15
|
+
const README_SUMMARY_CACHE_SECONDS = Number(process.env.README_SUMMARY_CACHE_SECONDS || 1800);
|
|
16
|
+
const README_MESSAGE_TYPE_SAMPLE_LIMIT = Number(process.env.README_MESSAGE_TYPE_SAMPLE_LIMIT || 25000);
|
|
17
|
+
const README_COMMAND_PREFIX = process.env.README_COMMAND_PREFIX || process.env.COMMAND_PREFIX || '/';
|
|
18
|
+
const GLOBAL_RANK_REFRESH_SECONDS = Number(process.env.GLOBAL_RANK_REFRESH_SECONDS || 600);
|
|
19
|
+
const MARKETPLACE_GLOBAL_STATS_CACHE_SECONDS = Number(process.env.MARKETPLACE_GLOBAL_STATS_CACHE_SECONDS || 45);
|
|
20
|
+
const GITHUB_PROJECT_CACHE_SECONDS = Number(process.env.GITHUB_PROJECT_CACHE_SECONDS || 300);
|
|
21
|
+
|
|
22
|
+
const SYSTEM_SUMMARY_CACHE = { expiresAt: 0, value: null, pending: null };
|
|
23
|
+
const README_SUMMARY_CACHE = { expiresAt: 0, value: null, pending: null };
|
|
24
|
+
const GLOBAL_RANK_CACHE = { expiresAt: 0, value: null, pending: null };
|
|
25
|
+
const MARKETPLACE_GLOBAL_STATS_CACHE = { expiresAt: 0, value: null, pending: null };
|
|
26
|
+
|
|
27
|
+
const resolveSocketReadyState = (activeSocket) => {
|
|
28
|
+
const raw = activeSocket?.ws?.readyState;
|
|
29
|
+
if (typeof raw === 'number' && Number.isFinite(raw)) return raw;
|
|
30
|
+
const normalized = String(raw || '')
|
|
31
|
+
.trim()
|
|
32
|
+
.toLowerCase();
|
|
33
|
+
if (normalized === 'open') return 1;
|
|
34
|
+
if (normalized === 'connecting') return 0;
|
|
35
|
+
if (normalized === 'closing') return 2;
|
|
36
|
+
if (normalized === 'closed') return 3;
|
|
37
|
+
return null;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const resolveActiveSocketBotJid = (sock) => {
|
|
41
|
+
if (!sock) return '';
|
|
42
|
+
const candidates = [sock?.user?.id, sock?.authState?.creds?.me?.id, sock?.authState?.creds?.me?.lid];
|
|
43
|
+
for (const candidate of candidates) {
|
|
44
|
+
const resolved = normalizeJid(candidate);
|
|
45
|
+
if (resolved) return resolved;
|
|
46
|
+
}
|
|
47
|
+
return '';
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export const systemContext = createStickerCatalogSystemContext({
|
|
51
|
+
executeQuery,
|
|
52
|
+
tables: TABLES,
|
|
53
|
+
logger,
|
|
54
|
+
getSystemMetrics,
|
|
55
|
+
getActiveSocket,
|
|
56
|
+
resolveSocketReadyState,
|
|
57
|
+
resolveActiveSocketBotJid,
|
|
58
|
+
resolveCatalogBotPhone,
|
|
59
|
+
fetchPrometheusSummary,
|
|
60
|
+
metricsEndpoint: process.env.METRICS_ENDPOINT,
|
|
61
|
+
systemSummaryCache: SYSTEM_SUMMARY_CACHE,
|
|
62
|
+
systemSummaryCacheSeconds: SYSTEM_SUMMARY_CACHE_SECONDS,
|
|
63
|
+
readmeSummaryCache: README_SUMMARY_CACHE,
|
|
64
|
+
readmeSummaryCacheSeconds: README_SUMMARY_CACHE_SECONDS,
|
|
65
|
+
readmeMessageTypeSampleLimit: README_MESSAGE_TYPE_SAMPLE_LIMIT,
|
|
66
|
+
readmeCommandPrefix: README_COMMAND_PREFIX,
|
|
67
|
+
buildMenuCaption,
|
|
68
|
+
buildStickerMenu,
|
|
69
|
+
buildMediaMenu,
|
|
70
|
+
buildQuoteMenu,
|
|
71
|
+
buildAnimeMenu,
|
|
72
|
+
buildAiMenu,
|
|
73
|
+
buildStatsMenu,
|
|
74
|
+
buildAdminMenu,
|
|
75
|
+
profilePictureUrlFromActiveSocket,
|
|
76
|
+
normalizeJid,
|
|
77
|
+
getJidUser,
|
|
78
|
+
globalRankCache: GLOBAL_RANK_CACHE,
|
|
79
|
+
globalRankRefreshSeconds: GLOBAL_RANK_REFRESH_SECONDS,
|
|
80
|
+
marketplaceGlobalStatsCache: MARKETPLACE_GLOBAL_STATS_CACHE,
|
|
81
|
+
marketplaceGlobalStatsCacheSeconds: MARKETPLACE_GLOBAL_STATS_CACHE_SECONDS,
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
const { getSystemSummaryCached, getReadmeSummaryCached, resolveBotUserCandidates, sanitizeRankingPayloadByBot, getGlobalRankingSummaryCached, scheduleGlobalRankingPreload, getMarketplaceGlobalStatsCached } = systemContext;
|
|
85
|
+
|
|
86
|
+
const resolveVisitPathFromReferrer = (req) => {
|
|
87
|
+
const rawReferrer = String(req?.headers?.referer || req?.headers?.referrer || '').trim();
|
|
88
|
+
if (!rawReferrer) return '/';
|
|
89
|
+
try {
|
|
90
|
+
const parsed = new URL(rawReferrer);
|
|
91
|
+
const requestHost = req.headers.host;
|
|
92
|
+
if (requestHost && parsed.host && parsed.host.toLowerCase() !== requestHost.toLowerCase()) return '/';
|
|
93
|
+
return normalizeVisitPath(parsed.pathname || '/');
|
|
94
|
+
} catch {
|
|
95
|
+
return '/';
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export const systemHandlers = createStickerCatalogNonCatalogHandlers({
|
|
100
|
+
sendJson,
|
|
101
|
+
sendText,
|
|
102
|
+
logger,
|
|
103
|
+
getSystemSummaryCached,
|
|
104
|
+
systemSummaryCache: SYSTEM_SUMMARY_CACHE,
|
|
105
|
+
systemSummaryCacheSeconds: SYSTEM_SUMMARY_CACHE_SECONDS,
|
|
106
|
+
getReadmeSummaryCached,
|
|
107
|
+
readmeSummaryCache: README_SUMMARY_CACHE,
|
|
108
|
+
readmeSummaryCacheSeconds: README_SUMMARY_CACHE_SECONDS,
|
|
109
|
+
getGlobalRankingSummaryCached,
|
|
110
|
+
globalRankRefreshSeconds: GLOBAL_RANK_REFRESH_SECONDS,
|
|
111
|
+
globalRankCache: GLOBAL_RANK_CACHE,
|
|
112
|
+
sanitizeRankingPayloadByBot,
|
|
113
|
+
getActiveSocket,
|
|
114
|
+
resolveBotUserCandidates,
|
|
115
|
+
getMarketplaceGlobalStatsCached,
|
|
116
|
+
marketplaceGlobalStatsCacheSeconds: MARKETPLACE_GLOBAL_STATS_CACHE_SECONDS,
|
|
117
|
+
marketplaceGlobalStatsCache: MARKETPLACE_GLOBAL_STATS_CACHE,
|
|
118
|
+
githubRepoInfo: { fullName: process.env.GITHUB_REPOSITORY || 'Omnizap-System/omnizap' },
|
|
119
|
+
githubProjectCacheSeconds: GITHUB_PROJECT_CACHE_SECONDS,
|
|
120
|
+
fetchGitHubProjectSummary,
|
|
121
|
+
buildSupportInfo,
|
|
122
|
+
buildBotContactInfo,
|
|
123
|
+
trackWebVisitMetric,
|
|
124
|
+
resolveVisitPathFromReferrer,
|
|
125
|
+
normalizeCatalogVisibility,
|
|
126
|
+
stickerWebGoogleClientId: process.env.STICKER_WEB_GOOGLE_CLIENT_ID,
|
|
127
|
+
homeBootstrapExposeContact: process.env.HOME_BOOTSTRAP_EXPOSE_CONTACT !== 'false',
|
|
128
|
+
// Estas serão injetadas via bridge para evitar circular dependency
|
|
129
|
+
getMarketplaceStatsCached: (vis) => globalThis.getMarketplaceStatsCachedBridge?.(vis),
|
|
130
|
+
resolveGoogleWebSessionFromRequest: (req) => globalThis.resolveGoogleWebSessionFromRequestBridge?.(req),
|
|
131
|
+
mapGoogleSessionResponseData: (sess, opts) => globalThis.mapGoogleSessionResponseDataBridge?.(sess, opts),
|
|
132
|
+
isAuthenticatedGoogleSession: (sess) => Boolean(sess?.sub && (sess?.ownerJid || sess?.ownerPhone || sess?.email)),
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
export { scheduleGlobalRankingPreload };
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { formatDuration } from '../../http/httpRequestUtils.js';
|
|
2
|
+
|
|
3
|
+
const METRICS_ENDPOINT = process.env.METRICS_ENDPOINT || `http://127.0.0.1:${process.env.METRICS_PORT || 9102}${process.env.METRICS_PATH || '/metrics'}`;
|
|
4
|
+
const METRICS_TOKEN = String(process.env.METRICS_TOKEN || process.env.METRICS_API_KEY || '').trim();
|
|
5
|
+
const METRICS_SUMMARY_TIMEOUT_MS = Number(process.env.STICKER_SYSTEM_METRICS_TIMEOUT_MS || 1200);
|
|
6
|
+
|
|
7
|
+
const parsePrometheusLabels = (raw) => {
|
|
8
|
+
if (!raw) return {};
|
|
9
|
+
const labels = {};
|
|
10
|
+
const regex = /(\w+)="((?:\\.|[^"\\])*)"/g;
|
|
11
|
+
let match;
|
|
12
|
+
while ((match = regex.exec(raw)) !== null) {
|
|
13
|
+
labels[match[1]] = match[2].replace(/\\"/g, '"');
|
|
14
|
+
}
|
|
15
|
+
return labels;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
const parsePrometheusText = (text) => {
|
|
19
|
+
const series = new Map();
|
|
20
|
+
const lines = String(text || '').split('\n');
|
|
21
|
+
for (const line of lines) {
|
|
22
|
+
const trimmed = line.trim();
|
|
23
|
+
if (!trimmed || trimmed.startsWith('#')) continue;
|
|
24
|
+
|
|
25
|
+
const [metricPart, valuePart] = trimmed.split(/\s+/, 2);
|
|
26
|
+
if (!metricPart || !valuePart) continue;
|
|
27
|
+
const value = Number(valuePart);
|
|
28
|
+
if (!Number.isFinite(value)) continue;
|
|
29
|
+
|
|
30
|
+
let name = metricPart;
|
|
31
|
+
let labels = {};
|
|
32
|
+
const labelStart = metricPart.indexOf('{');
|
|
33
|
+
if (labelStart !== -1) {
|
|
34
|
+
name = metricPart.slice(0, labelStart);
|
|
35
|
+
const labelBody = metricPart.slice(labelStart + 1, metricPart.lastIndexOf('}'));
|
|
36
|
+
labels = parsePrometheusLabels(labelBody);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const list = series.get(name) || [];
|
|
40
|
+
list.push({ labels, value });
|
|
41
|
+
series.set(name, list);
|
|
42
|
+
}
|
|
43
|
+
return series;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const pickMetricValue = (series, name) => {
|
|
47
|
+
const list = series.get(name) || [];
|
|
48
|
+
return list.length ? list[0].value : null;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
const sumMetricValues = (series, name) => {
|
|
52
|
+
const list = series.get(name) || [];
|
|
53
|
+
return list.reduce((sum, entry) => sum + (Number.isFinite(entry.value) ? entry.value : 0), 0);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const sumMetricValuesByLabel = (series, name, matchLabels = {}) => {
|
|
57
|
+
const list = series.get(name) || [];
|
|
58
|
+
return list.reduce((sum, entry) => {
|
|
59
|
+
if (!Number.isFinite(entry.value)) return sum;
|
|
60
|
+
for (const [labelKey, expectedValue] of Object.entries(matchLabels || {})) {
|
|
61
|
+
if (String(entry?.labels?.[labelKey] || '') !== String(expectedValue)) return sum;
|
|
62
|
+
}
|
|
63
|
+
return sum + entry.value;
|
|
64
|
+
}, 0);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const estimateHistogramQuantileMs = (series, metricBaseName, quantile = 0.95) => {
|
|
68
|
+
const bucketSeries = series.get(`${metricBaseName}_bucket`) || [];
|
|
69
|
+
if (!bucketSeries.length) return null;
|
|
70
|
+
|
|
71
|
+
const cumulativeByLe = new Map();
|
|
72
|
+
for (const entry of bucketSeries) {
|
|
73
|
+
const leRaw = String(entry?.labels?.le || '').trim();
|
|
74
|
+
if (!leRaw) continue;
|
|
75
|
+
const le = leRaw === '+Inf' ? Number.POSITIVE_INFINITY : Number(leRaw);
|
|
76
|
+
if (!Number.isFinite(le) && le !== Number.POSITIVE_INFINITY) continue;
|
|
77
|
+
cumulativeByLe.set(le, (cumulativeByLe.get(le) || 0) + Number(entry.value || 0));
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const sorted = Array.from(cumulativeByLe.entries()).sort((left, right) => left[0] - right[0]);
|
|
81
|
+
if (!sorted.length) return null;
|
|
82
|
+
|
|
83
|
+
const total = Number(sorted[sorted.length - 1]?.[1] || 0);
|
|
84
|
+
if (!Number.isFinite(total) || total <= 0) return null;
|
|
85
|
+
const target = total * Math.max(0, Math.min(1, Number(quantile) || 0.95));
|
|
86
|
+
|
|
87
|
+
for (const [upperBound, cumulative] of sorted) {
|
|
88
|
+
if (cumulative >= target) {
|
|
89
|
+
if (!Number.isFinite(upperBound)) return null;
|
|
90
|
+
return Number(upperBound.toFixed(2));
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
return null;
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
const buildMetricsRequestOptions = (signal = null) => {
|
|
98
|
+
const headers = {};
|
|
99
|
+
if (METRICS_TOKEN) {
|
|
100
|
+
headers.Authorization = `Bearer ${METRICS_TOKEN}`;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return {
|
|
104
|
+
...(signal ? { signal } : {}),
|
|
105
|
+
...(Object.keys(headers).length > 0 ? { headers } : {}),
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export const fetchPrometheusSummary = async () => {
|
|
110
|
+
if (typeof globalThis.fetch !== 'function') {
|
|
111
|
+
throw new Error('fetch indisponivel');
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const controller = typeof globalThis.AbortController === 'function' ? new globalThis.AbortController() : null;
|
|
115
|
+
const timeout = setTimeout(() => controller?.abort(), METRICS_SUMMARY_TIMEOUT_MS);
|
|
116
|
+
|
|
117
|
+
try {
|
|
118
|
+
const response = await globalThis.fetch(METRICS_ENDPOINT, buildMetricsRequestOptions(controller?.signal || null));
|
|
119
|
+
if (!response.ok) {
|
|
120
|
+
throw new Error(`HTTP ${response.status}`);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const text = await response.text();
|
|
124
|
+
const series = parsePrometheusText(text);
|
|
125
|
+
|
|
126
|
+
const processStart = pickMetricValue(series, 'omnizap_process_start_time_seconds');
|
|
127
|
+
const nowSeconds = Date.now() / 1000;
|
|
128
|
+
const processUptimeSeconds = Number.isFinite(processStart) ? Math.max(0, nowSeconds - processStart) : null;
|
|
129
|
+
|
|
130
|
+
const lagP99 = pickMetricValue(series, 'omnizap_nodejs_eventloop_lag_p99_seconds');
|
|
131
|
+
const dbTotal = sumMetricValues(series, 'omnizap_db_query_total');
|
|
132
|
+
const dbSlow = sumMetricValues(series, 'omnizap_db_slow_queries_total');
|
|
133
|
+
const http5xx = sumMetricValuesByLabel(series, 'omnizap_http_requests_total', {
|
|
134
|
+
status_class: '5xx',
|
|
135
|
+
});
|
|
136
|
+
const httpLatencyP95 = estimateHistogramQuantileMs(series, 'omnizap_http_request_duration_ms', 0.95);
|
|
137
|
+
|
|
138
|
+
const queueDepthSeries = series.get('omnizap_queue_depth') || [];
|
|
139
|
+
const queuePeak = queueDepthSeries.reduce((max, entry) => {
|
|
140
|
+
if (!Number.isFinite(entry.value)) return max;
|
|
141
|
+
return Math.max(max, entry.value);
|
|
142
|
+
}, 0);
|
|
143
|
+
|
|
144
|
+
return {
|
|
145
|
+
process_uptime: processUptimeSeconds !== null ? formatDuration(processUptimeSeconds) : 'n/a',
|
|
146
|
+
lag_p99_ms: Number.isFinite(lagP99) ? Number((lagP99 * 1000).toFixed(2)) : null,
|
|
147
|
+
db_total: Math.round(dbTotal || 0),
|
|
148
|
+
db_slow: Math.round(dbSlow || 0),
|
|
149
|
+
http_5xx_total: Math.round(http5xx || 0),
|
|
150
|
+
http_latency_p95_ms: Number.isFinite(httpLatencyP95) ? Number(httpLatencyP95) : null,
|
|
151
|
+
queue_peak: Math.round(queuePeak || 0),
|
|
152
|
+
};
|
|
153
|
+
} finally {
|
|
154
|
+
clearTimeout(timeout);
|
|
155
|
+
}
|
|
156
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { randomUUID } from 'node:crypto';
|
|
2
|
+
import { executeQuery, TABLES } from '../../../database/index.js';
|
|
3
|
+
import { appendSetCookie, buildCookieString, normalizeVisitPath, parseCookies } from '../../http/httpRequestUtils.js';
|
|
4
|
+
import { toRequestHost } from '../../http/siteRoutingUtils.js';
|
|
5
|
+
|
|
6
|
+
const WEB_VISITOR_COOKIE_NAME = 'omnizap_vid';
|
|
7
|
+
const WEB_SESSION_COOKIE_NAME = 'omnizap_sid';
|
|
8
|
+
const WEB_VISITOR_COOKIE_TTL_SECONDS = Number(process.env.WEB_VISITOR_COOKIE_TTL_SECONDS || 60 * 60 * 24 * 365);
|
|
9
|
+
const WEB_SESSION_COOKIE_TTL_SECONDS = Number(process.env.WEB_SESSION_COOKIE_TTL_SECONDS || 60 * 60 * 24 * 30);
|
|
10
|
+
|
|
11
|
+
const normalizeVisitToken = (raw) =>
|
|
12
|
+
String(raw || '')
|
|
13
|
+
.trim()
|
|
14
|
+
.replace(/[^a-zA-Z0-9_-]+/g, '')
|
|
15
|
+
.slice(0, 80);
|
|
16
|
+
|
|
17
|
+
const normalizeVisitSource = (raw) =>
|
|
18
|
+
String(raw || '')
|
|
19
|
+
.trim()
|
|
20
|
+
.toLowerCase()
|
|
21
|
+
.replace(/[^a-z0-9._-]+/g, '')
|
|
22
|
+
.slice(0, 32) || 'web';
|
|
23
|
+
|
|
24
|
+
const normalizeVisitReferrer = (raw) =>
|
|
25
|
+
String(raw || '')
|
|
26
|
+
.trim()
|
|
27
|
+
.slice(0, 1024) || null;
|
|
28
|
+
|
|
29
|
+
const normalizeVisitUserAgent = (raw) =>
|
|
30
|
+
String(raw || '')
|
|
31
|
+
.trim()
|
|
32
|
+
.slice(0, 512) || null;
|
|
33
|
+
|
|
34
|
+
const resolveVisitPathFromReferrer = (req) => {
|
|
35
|
+
const rawReferrer = String(req?.headers?.referer || req?.headers?.referrer || '').trim();
|
|
36
|
+
if (!rawReferrer) return '/';
|
|
37
|
+
try {
|
|
38
|
+
const parsed = new URL(rawReferrer);
|
|
39
|
+
const requestHost = toRequestHost(req);
|
|
40
|
+
if (requestHost && parsed.host && parsed.host.toLowerCase() !== requestHost.toLowerCase()) return '/';
|
|
41
|
+
return normalizeVisitPath(parsed.pathname || '/');
|
|
42
|
+
} catch {
|
|
43
|
+
return '/';
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const ensureWebVisitCookies = (req, res) => {
|
|
48
|
+
const cookies = parseCookies(req);
|
|
49
|
+
const currentVisitor = normalizeVisitToken(cookies[WEB_VISITOR_COOKIE_NAME]);
|
|
50
|
+
const currentSession = normalizeVisitToken(cookies[WEB_SESSION_COOKIE_NAME]);
|
|
51
|
+
const visitorKey = currentVisitor || randomUUID();
|
|
52
|
+
const sessionKey = currentSession || randomUUID();
|
|
53
|
+
|
|
54
|
+
if (!currentVisitor) {
|
|
55
|
+
appendSetCookie(
|
|
56
|
+
res,
|
|
57
|
+
buildCookieString(WEB_VISITOR_COOKIE_NAME, visitorKey, req, {
|
|
58
|
+
maxAgeSeconds: WEB_VISITOR_COOKIE_TTL_SECONDS,
|
|
59
|
+
}),
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
appendSetCookie(
|
|
64
|
+
res,
|
|
65
|
+
buildCookieString(WEB_SESSION_COOKIE_NAME, sessionKey, req, {
|
|
66
|
+
maxAgeSeconds: WEB_SESSION_COOKIE_TTL_SECONDS,
|
|
67
|
+
}),
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
return { visitorKey, sessionKey };
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export const trackWebVisitMetric = (req, res, { pagePath = '/', source = 'web' } = {}) => {
|
|
74
|
+
if ((req.method || '').toUpperCase() === 'HEAD') return Promise.resolve(false);
|
|
75
|
+
const { visitorKey, sessionKey } = ensureWebVisitCookies(req, res);
|
|
76
|
+
const safePath = normalizeVisitPath(pagePath || resolveVisitPathFromReferrer(req));
|
|
77
|
+
const safeSource = normalizeVisitSource(source);
|
|
78
|
+
const safeReferrer = normalizeVisitReferrer(req?.headers?.referer || req?.headers?.referrer || '');
|
|
79
|
+
const safeUserAgent = normalizeVisitUserAgent(req?.headers?.['user-agent'] || '');
|
|
80
|
+
|
|
81
|
+
return executeQuery(
|
|
82
|
+
`INSERT INTO ${TABLES.WEB_VISIT_EVENT}
|
|
83
|
+
(visitor_key, session_key, page_path, referrer, user_agent, source)
|
|
84
|
+
VALUES (?, ?, ?, ?, ?, ?)`,
|
|
85
|
+
[visitorKey, sessionKey, safePath, safeReferrer, safeUserAgent, safeSource],
|
|
86
|
+
).catch((error) => {
|
|
87
|
+
if (error?.code === 'ER_NO_SUCH_TABLE') return false;
|
|
88
|
+
throw error;
|
|
89
|
+
});
|
|
90
|
+
};
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import fs from 'node:fs/promises';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
|
|
4
|
+
import logger from '#logger';
|
|
5
|
+
import { DEFAULT_LEGACY_STICKER_API_BASE_PATH, DEFAULT_USER_API_BASE_PATH, isUserApiPath, normalizeBasePath, resolveLegacyUserApiPath } from '../routes/user/userApiPaths.js';
|
|
6
|
+
|
|
7
|
+
const LEGACY_STICKER_API_BASE_PATH = normalizeBasePath(process.env.STICKER_API_BASE_PATH, DEFAULT_LEGACY_STICKER_API_BASE_PATH);
|
|
8
|
+
const USER_API_BASE_PATH = normalizeBasePath(process.env.USER_API_BASE_PATH || process.env.AUTH_API_BASE_PATH, DEFAULT_USER_API_BASE_PATH);
|
|
9
|
+
const STICKER_LOGIN_WEB_PATH = normalizeBasePath(process.env.STICKER_LOGIN_WEB_PATH, '/login');
|
|
10
|
+
const USER_PROFILE_WEB_PATH = normalizeBasePath(process.env.USER_PROFILE_WEB_PATH, '/user');
|
|
11
|
+
const USER_PASSWORD_RESET_WEB_PATH = normalizeBasePath(process.env.USER_PASSWORD_RESET_WEB_PATH, '/user/password-reset');
|
|
12
|
+
const USER_DASHBOARD_TEMPLATE_PATH = path.join(process.cwd(), 'public', 'pages', 'user.html');
|
|
13
|
+
const USER_PASSWORD_RESET_TEMPLATE_PATH = path.join(process.cwd(), 'public', 'pages', 'user-password-reset.html');
|
|
14
|
+
|
|
15
|
+
const hasPathPrefix = (pathname, prefix) => pathname === prefix || pathname.startsWith(`${prefix}/`);
|
|
16
|
+
const escapeHtmlAttribute = (value) =>
|
|
17
|
+
String(value || '')
|
|
18
|
+
.replace(/&/g, '&')
|
|
19
|
+
.replace(/"/g, '"')
|
|
20
|
+
.replace(/</g, '<')
|
|
21
|
+
.replace(/>/g, '>');
|
|
22
|
+
const replaceDataAttribute = (html, attributeName, value) => String(html || '').replace(new RegExp(`(${attributeName}=")([^"]*)(")`, 'i'), `$1${escapeHtmlAttribute(value)}$3`);
|
|
23
|
+
|
|
24
|
+
const remapUrlPathname = (url, pathname) => {
|
|
25
|
+
if (!url || !pathname) return url;
|
|
26
|
+
try {
|
|
27
|
+
const remappedUrl = new URL(String(url?.href || url));
|
|
28
|
+
remappedUrl.pathname = pathname;
|
|
29
|
+
return remappedUrl;
|
|
30
|
+
} catch {
|
|
31
|
+
return url;
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
const isSupportedUserApiPath = (pathname) => isUserApiPath(pathname, USER_API_BASE_PATH) || isUserApiPath(pathname, LEGACY_STICKER_API_BASE_PATH, { legacyCompatible: true });
|
|
36
|
+
|
|
37
|
+
const mapUserApiPathToLegacy = (pathname) =>
|
|
38
|
+
resolveLegacyUserApiPath(pathname, {
|
|
39
|
+
apiBasePath: USER_API_BASE_PATH,
|
|
40
|
+
legacyApiBasePath: LEGACY_STICKER_API_BASE_PATH,
|
|
41
|
+
legacyCompatible: true,
|
|
42
|
+
}) ||
|
|
43
|
+
resolveLegacyUserApiPath(pathname, {
|
|
44
|
+
apiBasePath: LEGACY_STICKER_API_BASE_PATH,
|
|
45
|
+
legacyApiBasePath: LEGACY_STICKER_API_BASE_PATH,
|
|
46
|
+
legacyCompatible: true,
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
const renderUserDashboardHtml = async ({ passwordReset = false } = {}) => {
|
|
50
|
+
const templatePath = passwordReset ? USER_PASSWORD_RESET_TEMPLATE_PATH : USER_DASHBOARD_TEMPLATE_PATH;
|
|
51
|
+
const template = await fs.readFile(templatePath, 'utf8');
|
|
52
|
+
const dataAttributes = {
|
|
53
|
+
'data-api-base-path': USER_API_BASE_PATH,
|
|
54
|
+
'data-login-path': STICKER_LOGIN_WEB_PATH,
|
|
55
|
+
'data-password-reset-web-path': USER_PASSWORD_RESET_WEB_PATH,
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
let html = template;
|
|
59
|
+
for (const [attributeName, value] of Object.entries(dataAttributes)) {
|
|
60
|
+
html = replaceDataAttribute(html, attributeName, value);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return html;
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
let stickerCatalogControllerPromise = null;
|
|
67
|
+
const loadStickerCatalogController = async () => {
|
|
68
|
+
if (!stickerCatalogControllerPromise) {
|
|
69
|
+
stickerCatalogControllerPromise = import('./sticker/stickerCatalogController.js');
|
|
70
|
+
}
|
|
71
|
+
return stickerCatalogControllerPromise;
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const sendHtml = (req, res, html) => {
|
|
75
|
+
res.statusCode = 200;
|
|
76
|
+
res.setHeader('Content-Type', 'text/html; charset=utf-8');
|
|
77
|
+
res.setHeader('Cache-Control', 'no-store');
|
|
78
|
+
res.setHeader('X-Robots-Tag', 'noindex, nofollow');
|
|
79
|
+
if (req.method === 'HEAD') {
|
|
80
|
+
res.end();
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
res.end(html);
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const sendJson = (req, res, statusCode, payload) => {
|
|
87
|
+
const body = JSON.stringify(payload);
|
|
88
|
+
res.statusCode = statusCode;
|
|
89
|
+
res.setHeader('Content-Type', 'application/json; charset=utf-8');
|
|
90
|
+
res.setHeader('Cache-Control', 'no-store');
|
|
91
|
+
res.setHeader('X-Robots-Tag', 'noindex, nofollow');
|
|
92
|
+
if (req.method === 'HEAD') {
|
|
93
|
+
res.end();
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
res.end(body);
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export const getUserRouteConfig = () => ({
|
|
100
|
+
webPath: USER_PROFILE_WEB_PATH,
|
|
101
|
+
loginPath: STICKER_LOGIN_WEB_PATH,
|
|
102
|
+
passwordResetWebPath: USER_PASSWORD_RESET_WEB_PATH,
|
|
103
|
+
apiBasePath: USER_API_BASE_PATH,
|
|
104
|
+
legacyApiBasePath: LEGACY_STICKER_API_BASE_PATH,
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
export const maybeHandleUserRequest = async (req, res, { pathname, url }) => {
|
|
108
|
+
if (!['GET', 'HEAD', 'POST', 'PATCH', 'DELETE'].includes(req.method || '')) return false;
|
|
109
|
+
|
|
110
|
+
const isUserHomePath = pathname === USER_PROFILE_WEB_PATH || pathname === `${USER_PROFILE_WEB_PATH}/`;
|
|
111
|
+
const isPasswordResetPath = hasPathPrefix(pathname, USER_PASSWORD_RESET_WEB_PATH);
|
|
112
|
+
|
|
113
|
+
if (isUserHomePath || isPasswordResetPath) {
|
|
114
|
+
if (!['GET', 'HEAD'].includes(req.method || '')) return false;
|
|
115
|
+
try {
|
|
116
|
+
const html = await renderUserDashboardHtml({ passwordReset: isPasswordResetPath });
|
|
117
|
+
sendHtml(req, res, html);
|
|
118
|
+
} catch (error) {
|
|
119
|
+
if (error?.code === 'ENOENT') {
|
|
120
|
+
sendJson(req, res, 404, { error: 'Template da pagina de usuario nao encontrado.' });
|
|
121
|
+
return true;
|
|
122
|
+
}
|
|
123
|
+
logger.error('Falha ao renderizar pagina de usuario.', {
|
|
124
|
+
action: 'user_page_render_failed',
|
|
125
|
+
path: pathname,
|
|
126
|
+
error: error?.message,
|
|
127
|
+
});
|
|
128
|
+
sendJson(req, res, 500, { error: 'Falha interna ao renderizar pagina de usuario.' });
|
|
129
|
+
}
|
|
130
|
+
return true;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
if (isSupportedUserApiPath(pathname)) {
|
|
134
|
+
const routedPathname = mapUserApiPathToLegacy(pathname) || pathname;
|
|
135
|
+
|
|
136
|
+
const controller = await loadStickerCatalogController();
|
|
137
|
+
if (typeof controller?.maybeHandleStickerCatalogRequest !== 'function') return false;
|
|
138
|
+
return controller.maybeHandleStickerCatalogRequest(req, res, {
|
|
139
|
+
pathname: routedPathname,
|
|
140
|
+
url: remapUrlPathname(url, routedPathname),
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return false;
|
|
145
|
+
};
|