├── .env.dist ├── .gitignore ├── LICENSE.md ├── README.md ├── core ├── bootstrap.php ├── cli │ ├── add-new-features.php │ ├── clear-cache.php │ ├── clear-garbage.php │ ├── cron.php │ ├── prepare-videos.php │ ├── publish-topics.php │ ├── readonly-users.php │ ├── search-index.php │ ├── send-notifications.php │ └── subscriptions.php ├── composer.json ├── composer.lock ├── db │ ├── migrations │ │ ├── 20230918040703_files.php │ │ ├── 20230918040815_users.php │ │ ├── 20231001055639_videos.php │ │ ├── 20231018014050_settings.php │ │ ├── 20231025210112_levels.php │ │ ├── 20231025224114_topics.php │ │ ├── 20231114045003_comments.php │ │ ├── 20231114045856_user_notifications.php │ │ ├── 20231120031943_pages.php │ │ ├── 20231121045558_subscriptions.php │ │ ├── 20231121054352_payments.php │ │ ├── 20231212014555_user_notifications_2.php │ │ ├── 20231214072437_topic_tags.php │ │ ├── 20231221061910_notify_user.php │ │ ├── 20240204030650_reactions.php │ │ ├── 20240617015550_redirects.php │ │ ├── 20240705014721_external_pages.php │ │ ├── 20240706145148_delayed_publishing.php │ │ ├── 20240710125709_search.php │ │ ├── 20240809075207_audio_tracks.php │ │ ├── 20240816055840_video_thumbnails.php │ │ ├── 20240825074549_default_cover.php │ │ ├── 20240826135213_user_connections.php │ │ ├── 20241105040214_subscription_warning.php │ │ ├── 20241114075023_user_colors.php │ │ ├── 20250108043305_categories.php │ │ ├── 20250414023612_topic_types.php │ │ ├── 20250415083319_hide_views_reactions.php │ │ ├── 20250602105422_remove_phone.php │ │ └── 20250616025217_user_read_only.php │ └── seeds │ │ ├── SeedReactions.php │ │ ├── SeedUserRoles.php │ │ └── SeedUsers.php ├── phinx.php ├── routes.php ├── src │ ├── Controllers │ │ ├── Admin │ │ │ ├── Categories.php │ │ │ ├── Levels.php │ │ │ ├── Notifications.php │ │ │ ├── Pages.php │ │ │ ├── Payments.php │ │ │ ├── Payments │ │ │ │ └── Stat.php │ │ │ ├── Reactions.php │ │ │ ├── Redirects.php │ │ │ ├── Settings.php │ │ │ ├── Subscriptions │ │ │ │ └── Stat.php │ │ │ ├── Tags.php │ │ │ ├── Topics.php │ │ │ ├── Topics │ │ │ │ └── Upload.php │ │ │ ├── UserRoles.php │ │ │ ├── Users.php │ │ │ ├── Users │ │ │ │ └── Stat.php │ │ │ ├── Videos.php │ │ │ └── Videos │ │ │ │ ├── Download.php │ │ │ │ ├── Qualities.php │ │ │ │ └── Upload.php │ │ ├── Audio.php │ │ ├── File.php │ │ ├── Image.php │ │ ├── Poster.php │ │ ├── Security │ │ │ ├── Activate.php │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ ├── Register.php │ │ │ └── Reset.php │ │ ├── Traits │ │ │ ├── FileModelController.php │ │ │ ├── RankedModelController.php │ │ │ ├── ReactionModelController.php │ │ │ ├── StatModelController.php │ │ │ └── UploadController.php │ │ ├── User │ │ │ ├── Avatar.php │ │ │ ├── Connections.php │ │ │ ├── Payments.php │ │ │ ├── Profile.php │ │ │ ├── Subscription.php │ │ │ └── Videos.php │ │ ├── Video.php │ │ └── Web │ │ │ ├── Categories.php │ │ │ ├── Comments.php │ │ │ ├── Comments │ │ │ ├── Latest.php │ │ │ ├── Reactions.php │ │ │ └── Upload.php │ │ │ ├── Connections │ │ │ └── Telegram.php │ │ │ ├── Levels.php │ │ │ ├── Pages.php │ │ │ ├── Reactions.php │ │ │ ├── Redirects.php │ │ │ ├── Rss.php │ │ │ ├── Search.php │ │ │ ├── Settings.php │ │ │ ├── Sitemap.php │ │ │ ├── Tags.php │ │ │ ├── Topics.php │ │ │ └── Topics │ │ │ ├── Reactions.php │ │ │ └── View.php │ ├── Middlewares │ │ ├── Auth.php │ │ └── Cache.php │ ├── Models │ │ ├── Category.php │ │ ├── Comment.php │ │ ├── CommentFile.php │ │ ├── CommentReaction.php │ │ ├── File.php │ │ ├── Level.php │ │ ├── Page.php │ │ ├── PageFile.php │ │ ├── Payment.php │ │ ├── Reaction.php │ │ ├── Redirect.php │ │ ├── Setting.php │ │ ├── Subscription.php │ │ ├── Tag.php │ │ ├── Topic.php │ │ ├── TopicFile.php │ │ ├── TopicReaction.php │ │ ├── TopicTag.php │ │ ├── TopicView.php │ │ ├── Traits │ │ │ ├── ContentFilesTrait.php │ │ │ └── RankedModel.php │ │ ├── User.php │ │ ├── UserConnection.php │ │ ├── UserNotification.php │ │ ├── UserRole.php │ │ ├── UserToken.php │ │ ├── Video.php │ │ ├── VideoQuality.php │ │ └── VideoUser.php │ └── Services │ │ ├── CloudStorage.php │ │ ├── ConnectionService.php │ │ ├── Connections │ │ └── Telegram.php │ │ ├── Fenom.php │ │ ├── Log.php │ │ ├── Mail.php │ │ ├── Manticore.php │ │ ├── PaymentService.php │ │ ├── Payments │ │ ├── Internal.php │ │ ├── Payrexx.php │ │ ├── RaiffeisenSbp.php │ │ ├── Tbank.php │ │ └── Yookassa.php │ │ ├── Redis.php │ │ ├── Socket.php │ │ ├── TempStorage.php │ │ ├── ThumbStorage.php │ │ ├── Utils.php │ │ └── VideoCache.php └── templates │ ├── comment-new.tpl │ ├── comment-reply.tpl │ ├── email.tpl │ ├── subscription-cancelled.tpl │ ├── subscription-paid.tpl │ ├── subscription-warn.tpl │ ├── topic-new.tpl │ ├── user-register.tpl │ └── user-reset.tpl ├── docker-compose.override.yml.dist ├── docker-compose.yml ├── docker ├── nginx │ ├── development │ │ └── default.conf.template │ └── production │ │ └── default.conf.template └── php-fpm │ └── Dockerfile ├── frontend ├── .eslintrc.json ├── .prettierrc.json ├── .stylelintrc.json ├── i18n.config.ts ├── nuxt.config.ts ├── package-lock.json ├── package.json ├── src │ ├── app.vue │ ├── assets │ │ ├── icons │ │ │ ├── de.svg │ │ │ ├── gb.svg │ │ │ ├── ru.svg │ │ │ └── upload.svg │ │ └── scss │ │ │ ├── _additional.scss │ │ │ ├── _code.scss │ │ │ ├── _comments.scss │ │ │ ├── _cropper.scss │ │ │ ├── _dark-mode.scss │ │ │ ├── _editor.scss │ │ │ ├── _payments.scss │ │ │ ├── _player.scss │ │ │ ├── _reactions.scss │ │ │ ├── _toast.scss │ │ │ ├── _topic.scss │ │ │ ├── _transitions.scss │ │ │ ├── _variables.scss │ │ │ ├── _vesp.scss │ │ │ ├── _widgets.scss │ │ │ └── index.scss │ ├── components │ │ ├── app │ │ │ ├── footer.vue │ │ │ ├── language.vue │ │ │ ├── login.vue │ │ │ ├── navbar.vue │ │ │ ├── pages.vue │ │ │ ├── payment.vue │ │ │ └── sidebar.vue │ │ ├── chart │ │ │ └── common.vue │ │ ├── comments │ │ │ ├── form.vue │ │ │ ├── thread.vue │ │ │ └── tree.vue │ │ ├── editor │ │ │ ├── blocks │ │ │ │ ├── audio.ts │ │ │ │ ├── code.ts │ │ │ │ ├── embed.ts │ │ │ │ ├── file.ts │ │ │ │ ├── image.ts │ │ │ │ ├── kbd.ts │ │ │ │ └── video.ts │ │ │ ├── content.vue │ │ │ ├── js.client.vue │ │ │ ├── lexicons │ │ │ │ └── ru.js │ │ │ └── pick-video.vue │ │ ├── file │ │ │ ├── queue.vue │ │ │ └── upload.vue │ │ ├── forms │ │ │ ├── category.vue │ │ │ ├── level.vue │ │ │ ├── login.vue │ │ │ ├── page.vue │ │ │ ├── payment.vue │ │ │ ├── reactions.vue │ │ │ ├── redirect.vue │ │ │ ├── register.vue │ │ │ ├── reset.vue │ │ │ ├── setting.vue │ │ │ ├── topic.vue │ │ │ ├── user-role.vue │ │ │ ├── user.vue │ │ │ └── video.vue │ │ ├── payment │ │ │ ├── subscription.vue │ │ │ ├── topic.vue │ │ │ └── variants.vue │ │ ├── player │ │ │ ├── audio.vue │ │ │ ├── embed.vue │ │ │ ├── lexicons │ │ │ │ └── ru.js │ │ │ └── video.vue │ │ ├── topic │ │ │ ├── block │ │ │ │ ├── audio.vue │ │ │ │ ├── code.vue │ │ │ │ ├── embed.vue │ │ │ │ ├── file.vue │ │ │ │ ├── header.vue │ │ │ │ ├── image.vue │ │ │ │ ├── list.vue │ │ │ │ ├── paragraph.vue │ │ │ │ └── video.vue │ │ │ ├── content.vue │ │ │ ├── footer.vue │ │ │ ├── intro.vue │ │ │ ├── sort.vue │ │ │ └── tags.vue │ │ ├── user │ │ │ ├── avatar-crop.vue │ │ │ ├── avatar.vue │ │ │ ├── connections.vue │ │ │ ├── reactions.vue │ │ │ └── subscription.vue │ │ └── widgets │ │ │ ├── author.vue │ │ │ ├── categories.vue │ │ │ ├── levels.vue │ │ │ ├── online.vue │ │ │ ├── scroll-top.vue │ │ │ ├── search.vue │ │ │ └── tags.vue │ ├── error.vue │ ├── lexicons │ │ ├── de.js │ │ ├── en.js │ │ └── ru.js │ ├── pages │ │ ├── [topics] │ │ │ ├── [uuid].vue │ │ │ ├── create.vue │ │ │ └── index.vue │ │ ├── admin.vue │ │ ├── admin │ │ │ ├── levels.vue │ │ │ ├── levels │ │ │ │ ├── [id] │ │ │ │ │ └── edit.vue │ │ │ │ └── create.vue │ │ │ ├── notifications.vue │ │ │ ├── pages.vue │ │ │ ├── pages │ │ │ │ ├── [id] │ │ │ │ │ └── edit.vue │ │ │ │ └── create.vue │ │ │ ├── payments.vue │ │ │ ├── payments │ │ │ │ └── [id].vue │ │ │ ├── redirects.vue │ │ │ ├── redirects │ │ │ │ └── [id].vue │ │ │ ├── settings.vue │ │ │ ├── topics.vue │ │ │ ├── topics │ │ │ │ ├── [id] │ │ │ │ │ └── edit.vue │ │ │ │ ├── categories.vue │ │ │ │ ├── categories │ │ │ │ │ └── [id].vue │ │ │ │ ├── create.vue │ │ │ │ └── tags.vue │ │ │ ├── user-roles.vue │ │ │ ├── user-roles │ │ │ │ ├── [id] │ │ │ │ │ └── edit.vue │ │ │ │ └── create.vue │ │ │ ├── users.vue │ │ │ ├── users │ │ │ │ ├── [id] │ │ │ │ │ └── edit.vue │ │ │ │ └── create.vue │ │ │ ├── videos.vue │ │ │ └── videos │ │ │ │ └── [id] │ │ │ │ ├── edit.vue │ │ │ │ ├── error.vue │ │ │ │ ├── qualities.vue │ │ │ │ └── view.vue │ │ ├── index.vue │ │ ├── pages │ │ │ ├── [alias].vue │ │ │ └── index.vue │ │ ├── search.vue │ │ ├── user.vue │ │ └── user │ │ │ ├── confirm │ │ │ └── [username] │ │ │ │ └── [code].vue │ │ │ ├── payments.vue │ │ │ ├── payments │ │ │ └── [id].vue │ │ │ ├── profile.vue │ │ │ └── subscription.vue │ ├── plugins │ │ ├── lightbox.client.ts │ │ ├── prism.ts │ │ ├── socket.client.ts │ │ └── vesp.ts │ ├── public │ │ ├── connections │ │ │ └── telegram.svg │ │ ├── email │ │ │ ├── logo.png │ │ │ └── logo@2x.png │ │ ├── favicon.ico │ │ ├── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── payments │ │ │ ├── internal.svg │ │ │ ├── payrexx.svg │ │ │ ├── raiffeisen-sbp.svg │ │ │ ├── tbank.svg │ │ │ └── yookassa.svg │ │ └── project │ │ │ └── logo.svg │ ├── server │ │ ├── middleware │ │ │ └── cache.ts │ │ ├── plugins │ │ │ ├── cache.ts │ │ │ └── socket.ts │ │ └── routes │ │ │ ├── atom.xml.ts │ │ │ ├── robots.txt.ts │ │ │ ├── rss.xml.ts │ │ │ ├── sitemap.xml.ts │ │ │ └── turbo.xml.ts │ ├── stores │ │ ├── topics.ts │ │ └── vesp.ts │ ├── utils │ │ ├── get-feed.ts │ │ ├── players.ts │ │ ├── use-global-hotkeys.ts │ │ └── vesp.ts │ └── vesp.d.ts └── tsconfig.json └── www └── api.php /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/README.md -------------------------------------------------------------------------------- /core/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/bootstrap.php -------------------------------------------------------------------------------- /core/cli/add-new-features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/add-new-features.php -------------------------------------------------------------------------------- /core/cli/clear-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/clear-cache.php -------------------------------------------------------------------------------- /core/cli/clear-garbage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/clear-garbage.php -------------------------------------------------------------------------------- /core/cli/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/cron.php -------------------------------------------------------------------------------- /core/cli/prepare-videos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/prepare-videos.php -------------------------------------------------------------------------------- /core/cli/publish-topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/publish-topics.php -------------------------------------------------------------------------------- /core/cli/readonly-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/readonly-users.php -------------------------------------------------------------------------------- /core/cli/search-index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/search-index.php -------------------------------------------------------------------------------- /core/cli/send-notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/send-notifications.php -------------------------------------------------------------------------------- /core/cli/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/cli/subscriptions.php -------------------------------------------------------------------------------- /core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/composer.json -------------------------------------------------------------------------------- /core/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/composer.lock -------------------------------------------------------------------------------- /core/db/migrations/20230918040703_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20230918040703_files.php -------------------------------------------------------------------------------- /core/db/migrations/20230918040815_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20230918040815_users.php -------------------------------------------------------------------------------- /core/db/migrations/20231001055639_videos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231001055639_videos.php -------------------------------------------------------------------------------- /core/db/migrations/20231018014050_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231018014050_settings.php -------------------------------------------------------------------------------- /core/db/migrations/20231025210112_levels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231025210112_levels.php -------------------------------------------------------------------------------- /core/db/migrations/20231025224114_topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231025224114_topics.php -------------------------------------------------------------------------------- /core/db/migrations/20231114045003_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231114045003_comments.php -------------------------------------------------------------------------------- /core/db/migrations/20231114045856_user_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231114045856_user_notifications.php -------------------------------------------------------------------------------- /core/db/migrations/20231120031943_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231120031943_pages.php -------------------------------------------------------------------------------- /core/db/migrations/20231121045558_subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231121045558_subscriptions.php -------------------------------------------------------------------------------- /core/db/migrations/20231121054352_payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231121054352_payments.php -------------------------------------------------------------------------------- /core/db/migrations/20231212014555_user_notifications_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231212014555_user_notifications_2.php -------------------------------------------------------------------------------- /core/db/migrations/20231214072437_topic_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231214072437_topic_tags.php -------------------------------------------------------------------------------- /core/db/migrations/20231221061910_notify_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20231221061910_notify_user.php -------------------------------------------------------------------------------- /core/db/migrations/20240204030650_reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240204030650_reactions.php -------------------------------------------------------------------------------- /core/db/migrations/20240617015550_redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240617015550_redirects.php -------------------------------------------------------------------------------- /core/db/migrations/20240705014721_external_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240705014721_external_pages.php -------------------------------------------------------------------------------- /core/db/migrations/20240706145148_delayed_publishing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240706145148_delayed_publishing.php -------------------------------------------------------------------------------- /core/db/migrations/20240710125709_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240710125709_search.php -------------------------------------------------------------------------------- /core/db/migrations/20240809075207_audio_tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240809075207_audio_tracks.php -------------------------------------------------------------------------------- /core/db/migrations/20240816055840_video_thumbnails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240816055840_video_thumbnails.php -------------------------------------------------------------------------------- /core/db/migrations/20240825074549_default_cover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240825074549_default_cover.php -------------------------------------------------------------------------------- /core/db/migrations/20240826135213_user_connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20240826135213_user_connections.php -------------------------------------------------------------------------------- /core/db/migrations/20241105040214_subscription_warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20241105040214_subscription_warning.php -------------------------------------------------------------------------------- /core/db/migrations/20241114075023_user_colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20241114075023_user_colors.php -------------------------------------------------------------------------------- /core/db/migrations/20250108043305_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20250108043305_categories.php -------------------------------------------------------------------------------- /core/db/migrations/20250414023612_topic_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20250414023612_topic_types.php -------------------------------------------------------------------------------- /core/db/migrations/20250415083319_hide_views_reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20250415083319_hide_views_reactions.php -------------------------------------------------------------------------------- /core/db/migrations/20250602105422_remove_phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20250602105422_remove_phone.php -------------------------------------------------------------------------------- /core/db/migrations/20250616025217_user_read_only.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/migrations/20250616025217_user_read_only.php -------------------------------------------------------------------------------- /core/db/seeds/SeedReactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/seeds/SeedReactions.php -------------------------------------------------------------------------------- /core/db/seeds/SeedUserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/seeds/SeedUserRoles.php -------------------------------------------------------------------------------- /core/db/seeds/SeedUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/db/seeds/SeedUsers.php -------------------------------------------------------------------------------- /core/phinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/phinx.php -------------------------------------------------------------------------------- /core/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/routes.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Categories.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Levels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Levels.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Notifications.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Pages.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Payments.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Payments/Stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Payments/Stat.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Reactions.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Redirects.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Settings.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Subscriptions/Stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Subscriptions/Stat.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Tags.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Topics.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Topics/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Topics/Upload.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/UserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/UserRoles.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Users.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Users/Stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Users/Stat.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Videos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Videos.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Videos/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Videos/Download.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Videos/Qualities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Videos/Qualities.php -------------------------------------------------------------------------------- /core/src/Controllers/Admin/Videos/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Admin/Videos/Upload.php -------------------------------------------------------------------------------- /core/src/Controllers/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Audio.php -------------------------------------------------------------------------------- /core/src/Controllers/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/File.php -------------------------------------------------------------------------------- /core/src/Controllers/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Image.php -------------------------------------------------------------------------------- /core/src/Controllers/Poster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Poster.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Security/Activate.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Security/Login.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Security/Logout.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Security/Register.php -------------------------------------------------------------------------------- /core/src/Controllers/Security/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Security/Reset.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/FileModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Traits/FileModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/RankedModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Traits/RankedModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/ReactionModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Traits/ReactionModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/StatModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Traits/StatModelController.php -------------------------------------------------------------------------------- /core/src/Controllers/Traits/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Traits/UploadController.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Avatar.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Connections.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Payments.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Profile.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Subscription.php -------------------------------------------------------------------------------- /core/src/Controllers/User/Videos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/User/Videos.php -------------------------------------------------------------------------------- /core/src/Controllers/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Video.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Categories.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Comments.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Comments/Latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Comments/Latest.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Comments/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Comments/Reactions.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Comments/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Comments/Upload.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Connections/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Connections/Telegram.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Levels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Levels.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Pages.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Reactions.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Redirects.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Rss.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Search.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Settings.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Sitemap.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Tags.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Topics.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Topics/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Topics/Reactions.php -------------------------------------------------------------------------------- /core/src/Controllers/Web/Topics/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Controllers/Web/Topics/View.php -------------------------------------------------------------------------------- /core/src/Middlewares/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Middlewares/Auth.php -------------------------------------------------------------------------------- /core/src/Middlewares/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Middlewares/Cache.php -------------------------------------------------------------------------------- /core/src/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Category.php -------------------------------------------------------------------------------- /core/src/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Comment.php -------------------------------------------------------------------------------- /core/src/Models/CommentFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/CommentFile.php -------------------------------------------------------------------------------- /core/src/Models/CommentReaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/CommentReaction.php -------------------------------------------------------------------------------- /core/src/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/File.php -------------------------------------------------------------------------------- /core/src/Models/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Level.php -------------------------------------------------------------------------------- /core/src/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Page.php -------------------------------------------------------------------------------- /core/src/Models/PageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/PageFile.php -------------------------------------------------------------------------------- /core/src/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Payment.php -------------------------------------------------------------------------------- /core/src/Models/Reaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Reaction.php -------------------------------------------------------------------------------- /core/src/Models/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Redirect.php -------------------------------------------------------------------------------- /core/src/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Setting.php -------------------------------------------------------------------------------- /core/src/Models/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Subscription.php -------------------------------------------------------------------------------- /core/src/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Tag.php -------------------------------------------------------------------------------- /core/src/Models/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Topic.php -------------------------------------------------------------------------------- /core/src/Models/TopicFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/TopicFile.php -------------------------------------------------------------------------------- /core/src/Models/TopicReaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/TopicReaction.php -------------------------------------------------------------------------------- /core/src/Models/TopicTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/TopicTag.php -------------------------------------------------------------------------------- /core/src/Models/TopicView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/TopicView.php -------------------------------------------------------------------------------- /core/src/Models/Traits/ContentFilesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Traits/ContentFilesTrait.php -------------------------------------------------------------------------------- /core/src/Models/Traits/RankedModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Traits/RankedModel.php -------------------------------------------------------------------------------- /core/src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/User.php -------------------------------------------------------------------------------- /core/src/Models/UserConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/UserConnection.php -------------------------------------------------------------------------------- /core/src/Models/UserNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/UserNotification.php -------------------------------------------------------------------------------- /core/src/Models/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/UserRole.php -------------------------------------------------------------------------------- /core/src/Models/UserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/UserToken.php -------------------------------------------------------------------------------- /core/src/Models/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/Video.php -------------------------------------------------------------------------------- /core/src/Models/VideoQuality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/VideoQuality.php -------------------------------------------------------------------------------- /core/src/Models/VideoUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Models/VideoUser.php -------------------------------------------------------------------------------- /core/src/Services/CloudStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/CloudStorage.php -------------------------------------------------------------------------------- /core/src/Services/ConnectionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/ConnectionService.php -------------------------------------------------------------------------------- /core/src/Services/Connections/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Connections/Telegram.php -------------------------------------------------------------------------------- /core/src/Services/Fenom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Fenom.php -------------------------------------------------------------------------------- /core/src/Services/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Log.php -------------------------------------------------------------------------------- /core/src/Services/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Mail.php -------------------------------------------------------------------------------- /core/src/Services/Manticore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Manticore.php -------------------------------------------------------------------------------- /core/src/Services/PaymentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/PaymentService.php -------------------------------------------------------------------------------- /core/src/Services/Payments/Internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Payments/Internal.php -------------------------------------------------------------------------------- /core/src/Services/Payments/Payrexx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Payments/Payrexx.php -------------------------------------------------------------------------------- /core/src/Services/Payments/RaiffeisenSbp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Payments/RaiffeisenSbp.php -------------------------------------------------------------------------------- /core/src/Services/Payments/Tbank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Payments/Tbank.php -------------------------------------------------------------------------------- /core/src/Services/Payments/Yookassa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Payments/Yookassa.php -------------------------------------------------------------------------------- /core/src/Services/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Redis.php -------------------------------------------------------------------------------- /core/src/Services/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Socket.php -------------------------------------------------------------------------------- /core/src/Services/TempStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/TempStorage.php -------------------------------------------------------------------------------- /core/src/Services/ThumbStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/ThumbStorage.php -------------------------------------------------------------------------------- /core/src/Services/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/Utils.php -------------------------------------------------------------------------------- /core/src/Services/VideoCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/src/Services/VideoCache.php -------------------------------------------------------------------------------- /core/templates/comment-new.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/comment-new.tpl -------------------------------------------------------------------------------- /core/templates/comment-reply.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/comment-reply.tpl -------------------------------------------------------------------------------- /core/templates/email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/email.tpl -------------------------------------------------------------------------------- /core/templates/subscription-cancelled.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/subscription-cancelled.tpl -------------------------------------------------------------------------------- /core/templates/subscription-paid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/subscription-paid.tpl -------------------------------------------------------------------------------- /core/templates/subscription-warn.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/subscription-warn.tpl -------------------------------------------------------------------------------- /core/templates/topic-new.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/topic-new.tpl -------------------------------------------------------------------------------- /core/templates/user-register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/user-register.tpl -------------------------------------------------------------------------------- /core/templates/user-reset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/core/templates/user-reset.tpl -------------------------------------------------------------------------------- /docker-compose.override.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/docker-compose.override.yml.dist -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/development/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/docker/nginx/development/default.conf.template -------------------------------------------------------------------------------- /docker/nginx/production/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/docker/nginx/production/default.conf.template -------------------------------------------------------------------------------- /docker/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/docker/php-fpm/Dockerfile -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/.stylelintrc.json -------------------------------------------------------------------------------- /frontend/i18n.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/i18n.config.ts -------------------------------------------------------------------------------- /frontend/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/nuxt.config.ts -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/app.vue -------------------------------------------------------------------------------- /frontend/src/assets/icons/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/icons/de.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/icons/gb.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/icons/ru.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/icons/upload.svg -------------------------------------------------------------------------------- /frontend/src/assets/scss/_additional.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_additional.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_code.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_comments.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_cropper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_cropper.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_dark-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_dark-mode.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_editor.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_payments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_payments.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_player.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_reactions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_reactions.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_toast.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_topic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_topic.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_transitions.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_vesp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_vesp.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/_widgets.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/assets/scss/index.scss -------------------------------------------------------------------------------- /frontend/src/components/app/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/footer.vue -------------------------------------------------------------------------------- /frontend/src/components/app/language.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/language.vue -------------------------------------------------------------------------------- /frontend/src/components/app/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/login.vue -------------------------------------------------------------------------------- /frontend/src/components/app/navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/navbar.vue -------------------------------------------------------------------------------- /frontend/src/components/app/pages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/pages.vue -------------------------------------------------------------------------------- /frontend/src/components/app/payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/payment.vue -------------------------------------------------------------------------------- /frontend/src/components/app/sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/app/sidebar.vue -------------------------------------------------------------------------------- /frontend/src/components/chart/common.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/chart/common.vue -------------------------------------------------------------------------------- /frontend/src/components/comments/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/comments/form.vue -------------------------------------------------------------------------------- /frontend/src/components/comments/thread.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/comments/thread.vue -------------------------------------------------------------------------------- /frontend/src/components/comments/tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/comments/tree.vue -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/audio.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/code.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/embed.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/file.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/image.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/kbd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/kbd.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/blocks/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/blocks/video.ts -------------------------------------------------------------------------------- /frontend/src/components/editor/content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/content.vue -------------------------------------------------------------------------------- /frontend/src/components/editor/js.client.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/js.client.vue -------------------------------------------------------------------------------- /frontend/src/components/editor/lexicons/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/lexicons/ru.js -------------------------------------------------------------------------------- /frontend/src/components/editor/pick-video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/editor/pick-video.vue -------------------------------------------------------------------------------- /frontend/src/components/file/queue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/file/queue.vue -------------------------------------------------------------------------------- /frontend/src/components/file/upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/file/upload.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/category.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/level.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/level.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/login.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/page.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/payment.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/reactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/reactions.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/redirect.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/register.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/reset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/reset.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/setting.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/topic.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/user-role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/user-role.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/user.vue -------------------------------------------------------------------------------- /frontend/src/components/forms/video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/forms/video.vue -------------------------------------------------------------------------------- /frontend/src/components/payment/subscription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/payment/subscription.vue -------------------------------------------------------------------------------- /frontend/src/components/payment/topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/payment/topic.vue -------------------------------------------------------------------------------- /frontend/src/components/payment/variants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/payment/variants.vue -------------------------------------------------------------------------------- /frontend/src/components/player/audio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/player/audio.vue -------------------------------------------------------------------------------- /frontend/src/components/player/embed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/player/embed.vue -------------------------------------------------------------------------------- /frontend/src/components/player/lexicons/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/player/lexicons/ru.js -------------------------------------------------------------------------------- /frontend/src/components/player/video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/player/video.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/audio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/audio.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/code.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/code.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/embed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/embed.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/file.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/header.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/image.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/list.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/paragraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/paragraph.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/block/video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/block/video.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/content.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/footer.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/intro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/intro.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/sort.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/sort.vue -------------------------------------------------------------------------------- /frontend/src/components/topic/tags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/topic/tags.vue -------------------------------------------------------------------------------- /frontend/src/components/user/avatar-crop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/user/avatar-crop.vue -------------------------------------------------------------------------------- /frontend/src/components/user/avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/user/avatar.vue -------------------------------------------------------------------------------- /frontend/src/components/user/connections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/user/connections.vue -------------------------------------------------------------------------------- /frontend/src/components/user/reactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/user/reactions.vue -------------------------------------------------------------------------------- /frontend/src/components/user/subscription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/user/subscription.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/author.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/author.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/categories.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/levels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/levels.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/online.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/online.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/scroll-top.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/scroll-top.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/search.vue -------------------------------------------------------------------------------- /frontend/src/components/widgets/tags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/components/widgets/tags.vue -------------------------------------------------------------------------------- /frontend/src/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/error.vue -------------------------------------------------------------------------------- /frontend/src/lexicons/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/lexicons/de.js -------------------------------------------------------------------------------- /frontend/src/lexicons/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/lexicons/en.js -------------------------------------------------------------------------------- /frontend/src/lexicons/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/lexicons/ru.js -------------------------------------------------------------------------------- /frontend/src/pages/[topics]/[uuid].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/[topics]/[uuid].vue -------------------------------------------------------------------------------- /frontend/src/pages/[topics]/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/[topics]/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/[topics]/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/[topics]/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/levels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/levels.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/levels/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/levels/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/levels/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/levels/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/notifications.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/pages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/pages.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/pages/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/pages/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/pages/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/pages/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/payments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/payments.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/payments/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/payments/[id].vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/redirects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/redirects.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/redirects/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/redirects/[id].vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/settings.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics/categories.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics/categories/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics/categories/[id].vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/topics/tags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/topics/tags.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/user-roles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/user-roles.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/user-roles/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/user-roles/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/user-roles/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/user-roles/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/users.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/users/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/users/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/users/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/users/create.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/videos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/videos.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/videos/[id]/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/videos/[id]/edit.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/videos/[id]/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/videos/[id]/error.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/videos/[id]/qualities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/videos/[id]/qualities.vue -------------------------------------------------------------------------------- /frontend/src/pages/admin/videos/[id]/view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/admin/videos/[id]/view.vue -------------------------------------------------------------------------------- /frontend/src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/pages/[alias].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/pages/[alias].vue -------------------------------------------------------------------------------- /frontend/src/pages/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/pages/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/search.vue -------------------------------------------------------------------------------- /frontend/src/pages/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user.vue -------------------------------------------------------------------------------- /frontend/src/pages/user/confirm/[username]/[code].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user/confirm/[username]/[code].vue -------------------------------------------------------------------------------- /frontend/src/pages/user/payments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user/payments.vue -------------------------------------------------------------------------------- /frontend/src/pages/user/payments/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user/payments/[id].vue -------------------------------------------------------------------------------- /frontend/src/pages/user/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user/profile.vue -------------------------------------------------------------------------------- /frontend/src/pages/user/subscription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/pages/user/subscription.vue -------------------------------------------------------------------------------- /frontend/src/plugins/lightbox.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/plugins/lightbox.client.ts -------------------------------------------------------------------------------- /frontend/src/plugins/prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/plugins/prism.ts -------------------------------------------------------------------------------- /frontend/src/plugins/socket.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/plugins/socket.client.ts -------------------------------------------------------------------------------- /frontend/src/plugins/vesp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/plugins/vesp.ts -------------------------------------------------------------------------------- /frontend/src/public/connections/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/connections/telegram.svg -------------------------------------------------------------------------------- /frontend/src/public/email/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/email/logo.png -------------------------------------------------------------------------------- /frontend/src/public/email/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/email/logo@2x.png -------------------------------------------------------------------------------- /frontend/src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicon.ico -------------------------------------------------------------------------------- /frontend/src/public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/browserconfig.xml -------------------------------------------------------------------------------- /frontend/src/public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/favicon.ico -------------------------------------------------------------------------------- /frontend/src/public/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /frontend/src/public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/src/public/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/favicons/site.webmanifest -------------------------------------------------------------------------------- /frontend/src/public/payments/internal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/payments/internal.svg -------------------------------------------------------------------------------- /frontend/src/public/payments/payrexx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/payments/payrexx.svg -------------------------------------------------------------------------------- /frontend/src/public/payments/raiffeisen-sbp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/payments/raiffeisen-sbp.svg -------------------------------------------------------------------------------- /frontend/src/public/payments/tbank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/payments/tbank.svg -------------------------------------------------------------------------------- /frontend/src/public/payments/yookassa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/payments/yookassa.svg -------------------------------------------------------------------------------- /frontend/src/public/project/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/public/project/logo.svg -------------------------------------------------------------------------------- /frontend/src/server/middleware/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/middleware/cache.ts -------------------------------------------------------------------------------- /frontend/src/server/plugins/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/plugins/cache.ts -------------------------------------------------------------------------------- /frontend/src/server/plugins/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/plugins/socket.ts -------------------------------------------------------------------------------- /frontend/src/server/routes/atom.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/routes/atom.xml.ts -------------------------------------------------------------------------------- /frontend/src/server/routes/robots.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/routes/robots.txt.ts -------------------------------------------------------------------------------- /frontend/src/server/routes/rss.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/routes/rss.xml.ts -------------------------------------------------------------------------------- /frontend/src/server/routes/sitemap.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/routes/sitemap.xml.ts -------------------------------------------------------------------------------- /frontend/src/server/routes/turbo.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/server/routes/turbo.xml.ts -------------------------------------------------------------------------------- /frontend/src/stores/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/stores/topics.ts -------------------------------------------------------------------------------- /frontend/src/stores/vesp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/stores/vesp.ts -------------------------------------------------------------------------------- /frontend/src/utils/get-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/utils/get-feed.ts -------------------------------------------------------------------------------- /frontend/src/utils/players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/utils/players.ts -------------------------------------------------------------------------------- /frontend/src/utils/use-global-hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/utils/use-global-hotkeys.ts -------------------------------------------------------------------------------- /frontend/src/utils/vesp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/utils/vesp.ts -------------------------------------------------------------------------------- /frontend/src/vesp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/src/vesp.d.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /www/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezumkin/orbita/HEAD/www/api.php --------------------------------------------------------------------------------