diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index 412c4af2..c45aba90 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -60,7 +60,7 @@ representative at an online or offline event. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at -codeofconduct@movie-web.app. +our [Discord](https://discord.gg/gQYB6fGArX). All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 926899a8..a9883859 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing Guidelines for movie-web -Thank you for investing your time in contributing to our project! Your contribution will be reflected on [movie-web.app](https://movie-web.app). +Thank you for investing your time in contributing to our project! Your contribution will be reflected on all of the community hosted instances that are on the latest version. Please read our [Code of Conduct](./CODE_OF_CONDUCT.md) to keep our community approachable and respectable. @@ -33,7 +33,7 @@ There are two places where to request features or report bugs: ### Discord Server If you do not have a GitHub account or want to discuss a feature or bug with us before making an issue, you can join our Discord server. -Discord Server +Discord Server ### GitHub Issues To make a GitHub issue for movie-web, please visit the [new issue page](https://github.com/movie-web/movie-web/issues/new/choose) where you can pick either the "Bug Report" or "Feature Request" template. @@ -85,7 +85,7 @@ Here are some tips to make sure that your pull requests are :pinched_fingers: fi ### Language Contributions Language contributions help movie-web massively, allowing people worldwide to use our app! -We use weblate for crowdsourcing our translations. [Click here to go to our translation tool.](https://weblate.movie-web.app/projects/movie-web/website/) +We use weblate for crowdsourcing our translations. 1. First make sure you make an account. (click the link above) 2. Click the language you want to help translate, if it's not listed you can click the plus top left to add a new language. diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 83bf16ae..b092f774 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -2,12 +2,9 @@ ## Supported Versions -The movie-web maintainers only support the latest version of movie-web published at https://movie-web.app. - -Support is not provided for any forks or mirrors of movie-web. +The latest version of movie-web is the only version that is supported, as it is the only version that is being actively developed. ## Reporting a Vulnerability -There are two ways you can contact the movie-web maintainers to report a vulnerability: - - Email [security@movie-web.app](mailto:security@movie-web.app) - - Report the vulnerability in the [movie-web Discord server](https://discord.movie-web.app) +You can contact the movie-web maintainers to report a vulnerability: + - Report the vulnerability in the [movie-web Discord server](https://discord.gg/gQYB6fGArX) diff --git a/README.md b/README.md index 7f4662a2..7a2470a9 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@


- πŸ”΅ discord 🟒 website + πŸ”΅ discord 🟒 docs



# ⚑What is movie-web? -movie-web is a web app for watching movies easily. Check it out at movie-web.app. +movie-web is a web app for watching movies easily. This service works by displaying video files from third-party providers inside an intuitive and aesthetic user interface. @@ -57,7 +57,7 @@ pnpm build A simple guide has been written to assist in hosting your own instance of movie-web. Check it out below -|[Selfhosting guide](https://docs.movie-web.app)| +|[Selfhosting guide](https://movie-web.github.io/docs)| |---| ## 🀝 Thanks to all Contributors diff --git a/package.json b/package.json index 810a689b..3d6724b3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "movie-web", "version": "4.4.2", "private": true, - "homepage": "https://movie-web.app", + "homepage": "https://github.com/movie-web/movie-web", "scripts": { "dev": "vite", "build": "vite build", diff --git a/public/config.js b/public/config.js index 68a9ca3f..011e8630 100644 --- a/public/config.js +++ b/public/config.js @@ -11,7 +11,7 @@ window.__CONFIG__ = { // Whether to disable hash-based routing, leave this as false if you don't know what this is VITE_NORMAL_ROUTER: false, - // The backend URL to communicate with, defaults to the movie-web hosted one at backend.movie-web.app + // The backend URL to communicate with VITE_BACKEND_URL: null, // A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-" and "movie-" diff --git a/src/backend/accounts/progress.ts b/src/backend/accounts/progress.ts index 511d1c5d..6b522079 100644 --- a/src/backend/accounts/progress.ts +++ b/src/backend/accounts/progress.ts @@ -2,6 +2,7 @@ import { ofetch } from "ofetch"; import { getAuthHeaders } from "@/backend/accounts/auth"; import { ProgressResponse } from "@/backend/accounts/user"; +import { BACKEND_URL } from "@/setup/constants"; import { AccountWithToken } from "@/stores/auth"; import { ProgressMediaItem, ProgressUpdateItem } from "@/stores/progress"; @@ -103,6 +104,7 @@ export async function removeProgress( episodeId?: string, seasonId?: string, ) { + if (!BACKEND_URL) return; await ofetch(`/users/${account.userId}/progress/${id}`, { method: "DELETE", headers: getAuthHeaders(account.token), diff --git a/src/backend/helpers/report.ts b/src/backend/helpers/report.ts index 4822a867..4aa19f0e 100644 --- a/src/backend/helpers/report.ts +++ b/src/backend/helpers/report.ts @@ -5,13 +5,14 @@ import { useCallback } from "react"; import { isExtensionActiveCached } from "@/backend/extension/messaging"; import { ScrapingItems, ScrapingSegment } from "@/hooks/useProviderScrape"; +import { BACKEND_URL } from "@/setup/constants"; import { useAuthStore } from "@/stores/auth"; import { PlayerMeta } from "@/stores/player/slices/source"; // for anybody who cares - these are anonymous metrics. // They are just used for figuring out if providers are broken or not -const metricsEndpoint = "https://backend.movie-web.app/metrics/providers"; -const captchaMetricsEndpoint = "https://backend.movie-web.app/metrics/captcha"; +const metricsEndpoint = `${BACKEND_URL}/metrics/providers`; +const captchaMetricsEndpoint = `${BACKEND_URL}/metrics/captcha`; const batchId = () => nanoid(32); export type ProviderMetric = { @@ -44,6 +45,7 @@ function getStackTrace(error: Error, lines: number) { } export async function reportProviders(items: ProviderMetric[]): Promise { + if (!BACKEND_URL) return; return ofetch(metricsEndpoint, { method: "POST", body: { @@ -156,6 +158,7 @@ export function useReportProviders() { } export function reportCaptchaSolve(success: boolean) { + if (!BACKEND_URL) return; ofetch(captchaMetricsEndpoint, { method: "POST", body: { diff --git a/src/pages/parts/settings/ConnectionsPart.tsx b/src/pages/parts/settings/ConnectionsPart.tsx index 9b693e9f..990c5de0 100644 --- a/src/pages/parts/settings/ConnectionsPart.tsx +++ b/src/pages/parts/settings/ConnectionsPart.tsx @@ -55,7 +55,7 @@ function ProxyEdit({ proxyUrls, setProxyUrls }: ProxyEditProps) {

- + Proxy documentation @@ -125,7 +125,7 @@ function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {

- + Backend documentation diff --git a/src/setup/constants.ts b/src/setup/constants.ts index 27a9792b..def7c48f 100644 --- a/src/setup/constants.ts +++ b/src/setup/constants.ts @@ -1,6 +1,6 @@ export const APP_VERSION = import.meta.env.PACKAGE_VERSION; -export const DISCORD_LINK = "https://discord.movie-web.app"; +export const DISCORD_LINK = "https://discord.gg/gQYB6fGArX"; export const GITHUB_LINK = "https://github.com/movie-web/movie-web"; export const DONATION_LINK = "https://ko-fi.com/movieweb"; export const GA_ID = "G-44YVXRL61C"; -export const BACKEND_URL = "https://backend.movie-web.app"; +export const BACKEND_URL = import.meta.env.VITE_BACKEND_URL;