Compare commits
1 Commits
v0.24.0
...
dev-ajax-n
| Author | SHA1 | Date | |
|---|---|---|---|
| 48a601f58d |
22
.env
@@ -15,7 +15,7 @@
|
|||||||
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
|
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
|
||||||
|
|
||||||
###> symfony/framework-bundle ###
|
###> symfony/framework-bundle ###
|
||||||
APP_ENV=prod
|
APP_ENV=dev
|
||||||
APP_SECRET=
|
APP_SECRET=
|
||||||
###< symfony/framework-bundle ###
|
###< symfony/framework-bundle ###
|
||||||
|
|
||||||
@@ -26,28 +26,12 @@ APP_SECRET=
|
|||||||
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
|
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
|
||||||
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
|
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
|
||||||
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
|
# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
|
||||||
# DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
|
DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
|
||||||
|
|
||||||
###< doctrine/doctrine-bundle ###
|
###< doctrine/doctrine-bundle ###
|
||||||
MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
|
|
||||||
###> symfony/messenger ###
|
###> symfony/messenger ###
|
||||||
# Choose one of the transports below
|
# Choose one of the transports below
|
||||||
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
|
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
|
||||||
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
|
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
|
||||||
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
|
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
|
||||||
###< symfony/messenger ###
|
###< symfony/messenger ###
|
||||||
|
|
||||||
REDIS_HOST=redis://redis
|
|
||||||
|
|
||||||
###> symfony/mailer ###
|
|
||||||
MAILER_DSN=null://null
|
|
||||||
###< symfony/mailer ###
|
|
||||||
|
|
||||||
AUTH_METHOD=form_login
|
|
||||||
|
|
||||||
###> drenso/symfony-oidc-bundle ###
|
|
||||||
OIDC_WELL_KNOWN_URL="https://oidc/.well-known"
|
|
||||||
OIDC_CLIENT_ID="Enter your OIDC client id"
|
|
||||||
OIDC_CLIENT_SECRET="Enter your OIDC client secret"
|
|
||||||
OIDC_BYPASS_FORM_LOGIN=false
|
|
||||||
###< drenso/symfony-oidc-bundle ###
|
|
||||||
|
|||||||
7
.env.dev
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
DATABASE_URL="mysql://root:password@database:3306/app?serverVersion=10.6.19.2-MariaDB&charset=utf8mb4"
|
||||||
|
APP_SECRET=70169beadfbc8101c393cbfbba27a313
|
||||||
|
|
||||||
|
DOWNLOAD_DIR=./movies
|
||||||
|
MERCURE_URL=http://mercure/.well-known/mercure
|
||||||
|
MERCURE_PUBLIC_URL=https://dev.caldwell.digital/hub/.well-known/mercure
|
||||||
|
MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
|
||||||
10
.env.dist
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
APP_SECRET="%%app_secret%%"
|
||||||
|
DATABASE_URL="%%db_url%%"
|
||||||
|
DOWNLOAD_DIR=%%download_dir%%
|
||||||
|
REAL_DEBRID_KEY="%%rd_key%%"
|
||||||
|
TMDB_API=%%tmdb_api%%
|
||||||
|
MERCURE_URL=%%mercure_url%%
|
||||||
|
MERCURE_PUBLIC_URL=%%mercure_public_url%%
|
||||||
|
MERCURE_JWT_SECRET="%%mercure_jwt_secret%%"
|
||||||
|
JELLYFIN_URL=%%jellyfin_url%%
|
||||||
|
JELLYFIN_TOKEN=%%jellyfin_token%%
|
||||||
5
.gitignore
vendored
@@ -1,5 +1,4 @@
|
|||||||
.idea
|
.idea
|
||||||
bolt.db
|
|
||||||
###> symfony/framework-bundle ###
|
###> symfony/framework-bundle ###
|
||||||
/.env.local
|
/.env.local
|
||||||
/.env.local.php
|
/.env.local.php
|
||||||
@@ -14,7 +13,3 @@ bolt.db
|
|||||||
/public/assets/
|
/public/assets/
|
||||||
/assets/vendor/
|
/assets/vendor/
|
||||||
###< symfony/asset-mapper ###
|
###< symfony/asset-mapper ###
|
||||||
|
|
||||||
###> phpstan/phpstan ###
|
|
||||||
phpstan.neon
|
|
||||||
###< phpstan/phpstan ###
|
|
||||||
|
|||||||
20
Dockerfile
@@ -1,19 +1 @@
|
|||||||
FROM dunglas/frankenphp:php8.4
|
FROM registry.caldwell.digital/library/php:8.4-apache
|
||||||
|
|
||||||
ENV SERVER_NAME=":80"
|
|
||||||
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
|
|
||||||
ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime"
|
|
||||||
ENV APP_VERSION="0.0.1"
|
|
||||||
|
|
||||||
RUN install-php-extensions \
|
|
||||||
pdo_mysql \
|
|
||||||
gd \
|
|
||||||
intl \
|
|
||||||
zip \
|
|
||||||
opcache
|
|
||||||
|
|
||||||
RUN apt update && apt install -y wget
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD [ "php", "/app/bin/console", "startup:status" ]
|
|
||||||
|
|
||||||
COPY --chmod=0755 docker/app/Caddyfile /etc/frankenphp/Caddyfile
|
|
||||||
|
|||||||
6
Dockerfile.prod
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
FROM registry.caldwell.digital/library/php:8.4-apache
|
||||||
|
|
||||||
|
COPY --chown=www-data:www-data . /var/www
|
||||||
|
COPY ./bash/vhost.conf /etc/apache2/sites-enabled/vhost.conf
|
||||||
|
|
||||||
|
RUN rm /etc/apache2/sites-enabled/000-default.conf
|
||||||
57
README.md
@@ -1,50 +1,13 @@
|
|||||||
# Torsearch
|
# Caldwell Digital - Symfony Template
|
||||||
Torsearch is a "media acquisition tool" that works strictly with Real Debrid. Torsearch makes it easy to search for
|
Get up and running quickly with this Symfony framework template!
|
||||||
and download your favorite movies and tv shows. You can think of it like Stremio, but without the streaming. Why the
|
|
||||||
comparison to Stremio? That's because Torsearch uses the same source for media files that Stremio uses: Torrentio
|
|
||||||
(hence the name: Torsearch).
|
|
||||||
|
|
||||||
After two failed attempts at running a media server, I decided to hang up my hat and give up my dream of a self-hosted
|
|
||||||
media server. I figured the days of torrenting were mostly over and everybody ranting & raving about their media collections
|
|
||||||
must be going to Walmart and buying up the bucket of old movies they have. That's until I stumbled across Stremio.
|
|
||||||
|
|
||||||
At first, it seemed too good to be true, but I was yearning for something just sketchy enough to try out. What could
|
|
||||||
go wrong with handing over my card information to an unknown organization across the pond? At the end of the day,
|
|
||||||
the cost benefit analysis landed in my favor, and about 30 minutes after purchasing my Real Debrid subscription and
|
|
||||||
setting up Stremio, I was in business.
|
|
||||||
|
|
||||||
My mind was blown. I might not have the most "cultured" taste in media, but it had everything I searched for and more! After
|
|
||||||
watching a few movies, I noticed the "Copy Download Link" button. "What's this lil guy do?" I asked myself. Duh, it
|
|
||||||
downloads the f*****g movie. And there's the 💡flashing over my head. There's gotta be a way to automate this, I told myself.
|
|
||||||
|
|
||||||
After a month of studying Stremio's code and lots of tinkering, I finally figured it out. Torrentio is the magic behind
|
|
||||||
the scenes. You feed it a Real Debrid API key and an IMDB ID, and it gives you a list of results to download that media.
|
|
||||||
Easy peasy.
|
|
||||||
|
|
||||||
In about an hour I had a proof of concept working. It wasn't pretty, but it wasn't supposed to be. That proof-of-concept
|
|
||||||
has blossomed into the beautiful Torsearch that I've been using nearly every day since then. The code in this repo
|
|
||||||
is a complete re-write of the proof-of-concept that started out ugly and ended up even uglier. Knowing the core functionality
|
|
||||||
required to make it work, I was able to re-write the app with some design patterns in place.
|
|
||||||
|
|
||||||
## Pics or didn't happen
|
|
||||||

|
|
||||||

|
|
||||||

|
|
||||||

|
|
||||||

|
|
||||||
|
|
||||||
## Features
|
|
||||||
- Search for Movies & TV Shows by their name
|
|
||||||
- Download directly to your NAS
|
|
||||||
- Monitor TV Shows for new episodes and automatically download them
|
|
||||||
- Browse popular media and view its download options
|
|
||||||
- LDAP or local auth (OIDC coming soon)
|
|
||||||
|
|
||||||
## Features on the roadmap
|
|
||||||
- Requests - allow users to request new media
|
|
||||||
- OIDC auth
|
|
||||||
- Prometheus logging
|
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
1. Clone the repo
|
1. Run `source bash/get_certs.sh` to grab the wildcard certs
|
||||||
|
2. Set the docker image tag in the `bash/build.sh` file
|
||||||
|
3. Set the docker image tag in the `deploy.compose.yml` file
|
||||||
|
4. run `composer install`
|
||||||
|
|
||||||
|
## Optional steps
|
||||||
|
1. Set phing vars
|
||||||
|
2. Update the project name in `build.xml`
|
||||||
|
3. Set a custom development hostname in `bash/vhost.conf`
|
||||||
|
|||||||
@@ -8,13 +8,3 @@ import './bootstrap.js';
|
|||||||
import './styles/app.css';
|
import './styles/app.css';
|
||||||
|
|
||||||
console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉');
|
console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉');
|
||||||
|
|
||||||
let alert = document.querySelector('.alert');
|
|
||||||
var observer = new MutationObserver(function(mutations) {
|
|
||||||
if (document.contains(alert)) {
|
|
||||||
observer.disconnect();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
observer.observe(document, {attributes: false, childList: true, characterData: false, subtree:true});
|
|
||||||
|
|
||||||
|
|||||||
7
assets/bootstrap.js
vendored
@@ -1,10 +1,5 @@
|
|||||||
import { startStimulusApp } from '@symfony/stimulus-bundle';
|
import { startStimulusApp } from '@symfony/stimulus-bundle';
|
||||||
import Popover from '@stimulus-components/popover'
|
|
||||||
import Dialog from '@stimulus-components/dialog'
|
|
||||||
import Dropdown from '@stimulus-components/dropdown'
|
|
||||||
|
|
||||||
const app = startStimulusApp();
|
const app = startStimulusApp();
|
||||||
// register any custom, 3rd party controllers here
|
// register any custom, 3rd party controllers here
|
||||||
app.register('popover', Popover);
|
// app.register('some_controller_name', SomeImportedController);
|
||||||
app.register('dialog', Dialog);
|
|
||||||
app.register('dropdown', Dropdown);
|
|
||||||
|
|||||||
@@ -1,34 +1,5 @@
|
|||||||
{
|
{
|
||||||
"controllers": {
|
"controllers": {
|
||||||
"@spomky-labs/pwa-bundle": {
|
|
||||||
"connection-status": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
},
|
|
||||||
"backgroundsync-form": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
},
|
|
||||||
"sync-broadcast": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
},
|
|
||||||
"prefetch-on-demand": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@symfony/ux-autocomplete": {
|
|
||||||
"autocomplete": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager",
|
|
||||||
"autoimport": {
|
|
||||||
"tom-select/dist/css/tom-select.default.css": true,
|
|
||||||
"tom-select/dist/css/tom-select.bootstrap4.css": false,
|
|
||||||
"tom-select/dist/css/tom-select.bootstrap5.css": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@symfony/ux-live-component": {
|
"@symfony/ux-live-component": {
|
||||||
"live": {
|
"live": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
@@ -37,16 +8,6 @@
|
|||||||
"@symfony/ux-live-component/dist/live.min.css": true
|
"@symfony/ux-live-component/dist/live.min.css": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"@symfony/ux-turbo": {
|
|
||||||
"turbo-core": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
},
|
|
||||||
"mercure-turbo-stream": {
|
|
||||||
"enabled": true,
|
|
||||||
"fetch": "eager"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"entrypoints": []
|
"entrypoints": []
|
||||||
|
|||||||
@@ -1,46 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://symfony.com/bundles/StimulusBundle/current/index.html#lazy-stimulus-controllers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
|
|
||||||
initialize() {
|
|
||||||
// Called once when the controller is first instantiated (per element)
|
|
||||||
|
|
||||||
// Here you can initialize variables, create scoped callables for event
|
|
||||||
// listeners, instantiate external libraries, etc.
|
|
||||||
// this._fooBar = this.fooBar.bind(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
// Called every time the controller is connected to the DOM
|
|
||||||
// (on page load, when it's added to the DOM, moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you can add event listeners on the element or target elements,
|
|
||||||
// add or remove classes, attributes, dispatch custom events, etc.
|
|
||||||
// this.fooTarget.addEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add custom controller actions here
|
|
||||||
// fooBar() { this.fooTarget.classList.toggle(this.bazClass) }
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// Called anytime its element is disconnected from the DOM
|
|
||||||
// (on page change, when it's removed from or moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you should remove all event listeners added in "connect()"
|
|
||||||
// this.fooTarget.removeEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
default() {
|
|
||||||
console.log('Looks like you need to add an action to your action button...')
|
|
||||||
}
|
|
||||||
|
|
||||||
monitorDispatch() {
|
|
||||||
fetch('/api/monitor/dispatch')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
export default class extends Controller {
|
|
||||||
connect() {
|
|
||||||
let timer = setTimeout(() => {
|
|
||||||
this.element.remove();
|
|
||||||
},
|
|
||||||
"3000"
|
|
||||||
);
|
|
||||||
|
|
||||||
this.element.addEventListener('mouseout', () => timer = setTimeout(() => {
|
|
||||||
this.element.remove();
|
|
||||||
},
|
|
||||||
"3000"
|
|
||||||
));
|
|
||||||
this.element.addEventListener('mouseover', () => clearTimeout(timer));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
import { Controller } from '@hotwired/stimulus';
|
||||||
|
import flasher from '@flasher/flasher'
|
||||||
/*
|
/*
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
* The following line makes this controller "lazy": it won't be downloaded until needed
|
||||||
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
||||||
@@ -12,11 +12,10 @@ export default class extends Controller {
|
|||||||
filename: String,
|
filename: String,
|
||||||
mediaType: String,
|
mediaType: String,
|
||||||
imdbId: String,
|
imdbId: String,
|
||||||
episodeId: String
|
|
||||||
}
|
}
|
||||||
|
|
||||||
download() {
|
download() {
|
||||||
fetch('/api/download', {
|
fetch('/download', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
@@ -27,13 +26,12 @@ export default class extends Controller {
|
|||||||
title: this.element.dataset['title'],
|
title: this.element.dataset['title'],
|
||||||
filename: this.filenameValue,
|
filename: this.filenameValue,
|
||||||
mediaType: this.mediaTypeValue,
|
mediaType: this.mediaTypeValue,
|
||||||
imdbId: this.imdbIdValue,
|
imdbId: this.imdbIdValue
|
||||||
episodeId: this.episodeIdValue
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(json => {
|
.then(json => {
|
||||||
console.log(json)
|
flasher.success(json.message);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
import { getComponent } from '@symfony/ux-live-component';
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://symfony.com/bundles/StimulusBundle/current/index.html#lazy-stimulus-controllers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
static targets = ['download']
|
|
||||||
|
|
||||||
async initialize() {
|
|
||||||
this.component = await getComponent(this.element);
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
// Called every time the controller is connected to the DOM
|
|
||||||
// (on page load, when it's added to the DOM, moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you can add event listeners on the element or target elements,
|
|
||||||
// add or remove classes, attributes, dispatch custom events, etc.
|
|
||||||
// this.fooTarget.addEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
downloadTargetConnected(target) {
|
|
||||||
let downloads = this.element.querySelectorAll('tbody tr');
|
|
||||||
if (downloads.length > 5) {
|
|
||||||
target.classList.add('hidden');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pauseDownload(data) {
|
|
||||||
fetch(`/api/download/${data.params.id}/pause`, {method: 'PATCH'})
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(json => console.debug(json));
|
|
||||||
}
|
|
||||||
|
|
||||||
resumeDownload(data) {
|
|
||||||
fetch(`/api/download/${data.params.id}/resume`, {method: 'PATCH'})
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(json => console.debug(json));
|
|
||||||
}
|
|
||||||
|
|
||||||
deleteDownload(data) {
|
|
||||||
fetch(`/api/download/${data.params.id}`, {method: 'DELETE'})
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(json => console.debug(json));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add custom controller actions here
|
|
||||||
// fooBar() { this.fooTarget.classList.toggle(this.bazClass) }
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// Called anytime its element is disconnected from the DOM
|
|
||||||
// (on page change, when it's removed from or moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you should remove all event listeners added in "connect()"
|
|
||||||
// this.fooTarget.removeEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://symfony.com/bundles/StimulusBundle/current/index.html#lazy-stimulus-controllers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
static outlets = ['navbar']
|
|
||||||
|
|
||||||
initialize() {
|
|
||||||
// Called once when the controller is first instantiated (per element)
|
|
||||||
|
|
||||||
// Here you can initialize variables, create scoped callables for event
|
|
||||||
// listeners, instantiate external libraries, etc.
|
|
||||||
// this._fooBar = this.fooBar.bind(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
// Called every time the controller is connected to the DOM
|
|
||||||
// (on page load, when it's added to the DOM, moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you can add event listeners on the element or target elements,
|
|
||||||
// add or remove classes, attributes, dispatch custom events, etc.
|
|
||||||
// this.fooTarget.addEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
toggleMenu() {
|
|
||||||
this.navbarOutlet.toggle();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add custom controller actions here
|
|
||||||
// fooBar() { this.fooTarget.classList.toggle(this.bazClass) }
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// Called anytime its element is disconnected from the DOM
|
|
||||||
// (on page change, when it's removed from or moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you should remove all event listeners added in "connect()"
|
|
||||||
// this.fooTarget.removeEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://symfony.com/bundles/StimulusBundle/current/index.html#lazy-stimulus-controllers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
static targets = ['button', 'options']
|
|
||||||
static outlets = ['result-filter', 'dialog']
|
|
||||||
static values = {
|
|
||||||
tmdbId: String,
|
|
||||||
imdbId: String,
|
|
||||||
title: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
initialize() {
|
|
||||||
// Called once when the controller is first instantiated (per element)
|
|
||||||
|
|
||||||
// Here you can initialize variables, create scoped callables for event
|
|
||||||
// listeners, instantiate external libraries, etc.
|
|
||||||
// this._fooBar = this.fooBar.bind(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
// Called every time the controller is connected to the DOM
|
|
||||||
// (on page load, when it's added to the DOM, moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you can add event listeners on the element or target elements,
|
|
||||||
// add or remove classes, attributes, dispatch custom events, etc.
|
|
||||||
// this.fooTarget.addEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add custom controller actions here
|
|
||||||
// fooBar() { this.fooTarget.classList.toggle(this.bazClass) }
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// Called anytime its element is disconnected from the DOM
|
|
||||||
// (on page change, when it's removed from or moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you should remove all event listeners added in "connect()"
|
|
||||||
// this.fooTarget.removeEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
toggle() {
|
|
||||||
this.optionsTarget.classList.toggle('hidden');
|
|
||||||
}
|
|
||||||
|
|
||||||
async monitorSeries() {
|
|
||||||
await this.makeMonitor({
|
|
||||||
tmdbId: this.tmdbIdValue,
|
|
||||||
imdbId: this.imdbIdValue,
|
|
||||||
title: this.titleValue,
|
|
||||||
monitorType: 'tvshows',
|
|
||||||
});
|
|
||||||
if (this.hasDialogOutlet) {
|
|
||||||
this.dialogOutlet.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async monitorSeason() {
|
|
||||||
await this.makeMonitor({
|
|
||||||
tmdbId: this.tmdbIdValue,
|
|
||||||
imdbId: this.imdbIdValue,
|
|
||||||
title: this.titleValue,
|
|
||||||
monitorType: 'tvseason',
|
|
||||||
season: this.resultFilterOutlet.activeFilter['season'],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async monitorEpisode() {
|
|
||||||
// ToDo: figure out how to set episode
|
|
||||||
await this.makeMonitor({
|
|
||||||
tmdbId: this.tmdbIdValue,
|
|
||||||
imdbId: this.imdbIdValue,
|
|
||||||
title: this.titleValue,
|
|
||||||
monitorType: 'tvepisode',
|
|
||||||
season: this.resultFilterOutlet.activeFilter['season'],
|
|
||||||
episode: '',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async makeMonitor(body) {
|
|
||||||
const response = await fetch('/api/monitor', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'Accept': 'application/json',
|
|
||||||
},
|
|
||||||
body: JSON.stringify(body)
|
|
||||||
});
|
|
||||||
|
|
||||||
return await response.json();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
|
||||||
*/
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
deleteMonitor(data) {
|
|
||||||
fetch(`/api/monitor/${data.params.id}`, {method: 'DELETE'})
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(json => console.debug(json));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,9 +6,6 @@ import { Controller } from '@hotwired/stimulus';
|
|||||||
*/
|
*/
|
||||||
/* stimulusFetch: 'lazy' */
|
/* stimulusFetch: 'lazy' */
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
H264_CODECS = ['h264', 'h.264', 'x264']
|
|
||||||
H265_CODECS = ['h265', 'h.265', 'x265', 'hevc']
|
|
||||||
|
|
||||||
static values = {
|
static values = {
|
||||||
title: String,
|
title: String,
|
||||||
tmdbId: String,
|
tmdbId: String,
|
||||||
@@ -16,26 +13,21 @@ export default class extends Controller {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static targets = ['list']
|
static targets = ['list']
|
||||||
static outlets = ['loading-icon']
|
|
||||||
|
|
||||||
options = []
|
options = []
|
||||||
optionsLoaded = false
|
|
||||||
|
|
||||||
async connect() {
|
async connect() {
|
||||||
await this.setOptions();
|
await this.setOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
async setOptions() {
|
async setOptions() {
|
||||||
if (false === this.optionsLoaded) {
|
if (this.options.length === 0) {
|
||||||
this.optionsLoaded = true;
|
|
||||||
await fetch(`/torrentio/movies/${this.tmdbIdValue}/${this.imdbIdValue}`)
|
await fetch(`/torrentio/movies/${this.tmdbIdValue}/${this.imdbIdValue}`)
|
||||||
.then(res => res.text())
|
.then(res => res.text())
|
||||||
.then(response => {
|
.then(response => {
|
||||||
this.element.innerHTML = response;
|
this.element.innerHTML = response;
|
||||||
this.options = this.element.querySelectorAll('tbody tr');
|
this.options = this.element.querySelectorAll('tbody tr');
|
||||||
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
||||||
this.dispatch('optionsLoaded', {detail: {options: this.options}})
|
|
||||||
this.loadingIconOutlet.toggleIcon();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -45,62 +37,7 @@ export default class extends Controller {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
async filter(activeFilter) {
|
listTargetConnected(target) {
|
||||||
let firstIncluded = true;
|
// console.log(target);
|
||||||
let count = 0;
|
|
||||||
let selectedCount = 0;
|
|
||||||
|
|
||||||
this.options.forEach((option) => {
|
|
||||||
const optionHeader = document.querySelector(`[data-option-id="${option.dataset['localId']}"]`)
|
|
||||||
const props = {
|
|
||||||
"resolution": option.querySelector('#resolution').textContent.trim(),
|
|
||||||
"codec": option.querySelector('#codec').textContent.trim(),
|
|
||||||
"provider": option.querySelector('#provider').textContent.trim(),
|
|
||||||
"quality": option.dataset['quality'],
|
|
||||||
"languages": JSON.parse(option.dataset['languages']),
|
|
||||||
}
|
|
||||||
|
|
||||||
let include = true;
|
|
||||||
option.classList.add('r-tablerow');
|
|
||||||
option.classList.remove('hidden');
|
|
||||||
optionHeader.classList.add('r-tablerow');
|
|
||||||
optionHeader.classList.remove('hidden');
|
|
||||||
option.querySelector('input[type="checkbox"]').checked = false;
|
|
||||||
|
|
||||||
for (let [key, value] of Object.entries(activeFilter)) {
|
|
||||||
if (value === "" || key === "season") {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (key === "codec" && value === "h264") {
|
|
||||||
if (!this.H264_CODECS.includes(props[key].toLowerCase())) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (key === "codec" && value === "h265") {
|
|
||||||
if (!this.H265_CODECS.includes(props[key].toLowerCase())) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (key === "language") {
|
|
||||||
if (!props["languages"].includes(value)) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (props[key] !== value) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (false === include) {
|
|
||||||
option.classList.remove('r-tablerow');
|
|
||||||
option.classList.add('hidden');
|
|
||||||
optionHeader.classList.remove('r-tablerow');
|
|
||||||
optionHeader.classList.add('hidden');
|
|
||||||
} else if (true === firstIncluded) {
|
|
||||||
count = 1;
|
|
||||||
selectedCount = selectedCount + 1;
|
|
||||||
option.querySelector('input[type="checkbox"]').checked = true;
|
|
||||||
firstIncluded = false;
|
|
||||||
} else {
|
|
||||||
count = count + 1;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
|
||||||
*/
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
inactiveStyles = "block rounded-lg px-4 py-2 text-sm font-medium text-gray-50 hover:bg-orange-500 hover:bg-opacity-80";
|
|
||||||
activeStyles = "block rounded-lg bg-orange-500 hover:bg-opacity-70 bg-clip-padding backdrop-filter backdrop-blur-md bg-opacity-80 px-4 py-2 text-sm font-medium text-gray-50";
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
this.element.querySelectorAll('.nav-list a:not(.nav-foot)').forEach(link => {
|
|
||||||
link.className = this.inactiveStyles;
|
|
||||||
if (window.location.pathname === (new URL(link.href)).pathname || window.location.pathname.startsWith( (new URL(link.href)).pathname + '/' ) ) {
|
|
||||||
link.className = this.activeStyles;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
window.addEventListener("resize", (event) => {
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
toggle() {
|
|
||||||
this.element.parentElement.classList.toggle('hidden');
|
|
||||||
this.element.classList.toggle('fixed');
|
|
||||||
this.element.classList.toggle('z-20');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -11,7 +11,6 @@ export default class extends Controller {
|
|||||||
|
|
||||||
languages = []
|
languages = []
|
||||||
providers = []
|
providers = []
|
||||||
qualities = []
|
|
||||||
seasons = []
|
seasons = []
|
||||||
|
|
||||||
activeFilter = {
|
activeFilter = {
|
||||||
@@ -19,33 +18,37 @@ export default class extends Controller {
|
|||||||
"codec": "",
|
"codec": "",
|
||||||
"language": "",
|
"language": "",
|
||||||
"provider": "",
|
"provider": "",
|
||||||
"quality": "",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static outlets = ['movie-results', 'tv-results', 'tv-episode-list']
|
static outlets = ['movie-results', 'tv-results']
|
||||||
static targets = ['resolution', 'codec', 'language', 'provider', 'season', 'quality', 'selectAll', 'downloadSelected']
|
static targets = ['resolution', 'codec', 'language', 'provider', 'season', 'selectAll', 'downloadSelected']
|
||||||
static values = {
|
static values = {
|
||||||
'imdbId': String,
|
|
||||||
'media-type': String,
|
'media-type': String,
|
||||||
'episodes': Array,
|
'episodes': Array,
|
||||||
'reverseMappedQualities': Object,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async connect() {
|
connect() {
|
||||||
if (this.mediaTypeValue === "tvshows") {
|
if (this.mediaTypeValue === "tvshows") {
|
||||||
this.activeFilter['season'] = 1;
|
this.activeFilter['season'] = 1;
|
||||||
}
|
}
|
||||||
await this.filter();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Event is fired from movies/tvshows controllers to populate this data
|
async movieResultsOutletConnected(outlet) {
|
||||||
async loadOptions({detail: { options }}) {
|
await this.parseDownloadOptionForFilter(outlet)
|
||||||
await options.forEach((option) => {
|
}
|
||||||
|
|
||||||
|
async tvResultsOutletConnected(outlet) {
|
||||||
|
await this.parseDownloadOptionForFilter(outlet)
|
||||||
|
}
|
||||||
|
|
||||||
|
async parseDownloadOptionForFilter(outlet) {
|
||||||
|
if (outlet.options.length === 0) {
|
||||||
|
await outlet.setOptions();
|
||||||
|
}
|
||||||
|
outlet.options.forEach((option) => {
|
||||||
this.addLanguages(option, option.dataset);
|
this.addLanguages(option, option.dataset);
|
||||||
this.addProviders(option, option.dataset);
|
this.addProviders(option, option.dataset);
|
||||||
this.addQualities(option, option.dataset);
|
|
||||||
})
|
})
|
||||||
await this.filter();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addLanguages(option, props) {
|
addLanguages(option, props) {
|
||||||
@@ -56,22 +59,9 @@ export default class extends Controller {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const preferred = this.languageTarget.dataset.preferred;
|
this.languageTarget.innerHTML = '<option value="">n/a</option>';
|
||||||
if (preferred) {
|
|
||||||
this.languageTarget.innerHTML = '<option value="'+preferred+'" selected>'+preferred+'</option>';
|
|
||||||
this.languageTarget.innerHTML += '<option value="">n/a</option>';
|
|
||||||
} else {
|
|
||||||
this.languageTarget.innerHTML = '<option value="">n/a</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
this.languageTarget.innerHTML += this.languages.sort()
|
this.languageTarget.innerHTML += this.languages.sort()
|
||||||
.map((language) => {
|
.map((language) => '<option value="'+language+'">'+language+'</option>')
|
||||||
const preferred = this.languageTarget.dataset.preferred;
|
|
||||||
if (preferred === language) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return '<option value="'+language+'">'+language+'</option>';
|
|
||||||
})
|
|
||||||
.join();
|
.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,54 +70,14 @@ export default class extends Controller {
|
|||||||
this.providers.push(props['provider']);
|
this.providers.push(props['provider']);
|
||||||
}
|
}
|
||||||
|
|
||||||
const preferred = this.providerTarget.dataset.preferred;
|
this.providerTarget.innerHTML = '<option value="">n/a</option>';
|
||||||
if (preferred) {
|
|
||||||
this.providerTarget.innerHTML = '<option value="'+preferred+'" selected>'+preferred+'</option>';
|
|
||||||
this.providerTarget.innerHTML += '<option value="">n/a</option>';
|
|
||||||
} else {
|
|
||||||
this.providerTarget.innerHTML = '<option value="">n/a</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
this.providerTarget.innerHTML += this.providers.sort()
|
this.providerTarget.innerHTML += this.providers.sort()
|
||||||
.map((provider) => {
|
.map((provider) => '<option value="'+provider+'">'+provider+'</option>')
|
||||||
const preferred = this.languageTarget.dataset.preferred;
|
|
||||||
if (preferred === provider) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return '<option value="' + provider + '">' + provider + '</option>'
|
|
||||||
})
|
|
||||||
.join();
|
.join();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addQualities(option, props) {
|
|
||||||
if (!this.qualities.includes(props['quality'])) {
|
|
||||||
if (props['quality'].toLowerCase() in this.reverseMappedQualitiesValue) {
|
|
||||||
this.qualities.push(props['quality']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const preferred = this.qualityTarget.dataset.preferred;
|
|
||||||
if (preferred) {
|
|
||||||
this.qualityTarget.innerHTML = '<option value="'+preferred+'" selected>'+preferred+'</option>';
|
|
||||||
this.qualityTarget.innerHTML += '<option value="">n/a</option>';
|
|
||||||
} else {
|
|
||||||
this.qualityTarget.innerHTML = '<option value="">n/a</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
this.qualityTarget.innerHTML += this.qualities.sort()
|
|
||||||
.map((quality) => {
|
|
||||||
const preferred = this.qualityTarget.dataset.preferred;
|
|
||||||
if (preferred === quality) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return '<option value="' + quality + '">' + quality + '</option>'
|
|
||||||
})
|
|
||||||
.join();
|
|
||||||
}
|
|
||||||
|
|
||||||
async filter() {
|
async filter() {
|
||||||
const downloadSeasonSpan = document.querySelector("#downloadSeasonModal");
|
|
||||||
const currentSeason = this.activeFilter['season'];
|
const currentSeason = this.activeFilter['season'];
|
||||||
|
|
||||||
let results = [];
|
let results = [];
|
||||||
@@ -136,37 +86,89 @@ export default class extends Controller {
|
|||||||
"codec": this.codecTarget.value,
|
"codec": this.codecTarget.value,
|
||||||
"language": this.languageTarget.value,
|
"language": this.languageTarget.value,
|
||||||
"provider": this.providerTarget.value,
|
"provider": this.providerTarget.value,
|
||||||
"quality": this.qualityTarget.value,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ("movies" === this.mediaTypeValue) {
|
if ("movies" === this.mediaTypeValue) {
|
||||||
results = this.movieResultsOutlets;
|
results = this.movieResultsOutlets;
|
||||||
await results.forEach((list) => list.filter(this.activeFilter));
|
|
||||||
|
|
||||||
} else if ("tvshows" === this.mediaTypeValue) {
|
} else if ("tvshows" === this.mediaTypeValue) {
|
||||||
results = this.tvResultsOutlets;
|
results = this.tvResultsOutlets;
|
||||||
this.activeFilter.season = this.seasonTarget.value;
|
this.activeFilter.season = this.seasonTarget.value;
|
||||||
downloadSeasonSpan.innerText = this.activeFilter.season;
|
|
||||||
await results.forEach((list) => list.filter(this.activeFilter, currentSeason, this.seasonTarget.value));
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
setSeason(event) {
|
const filterOperation = async (resultList, currentSeason) => {
|
||||||
this.tvEpisodeListOutlet.setSeason(event.target.value);
|
if ("tvshows" === this.mediaTypeValue && currentSeason !== this.activeFilter['season']) {
|
||||||
|
if (resultList.seasonValue === this.seasonTarget.value) {
|
||||||
|
await resultList.setActive();
|
||||||
|
} else {
|
||||||
|
resultList.setInActive();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (false === resultList.isActive()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let firstIncluded = true;
|
||||||
|
let count = 0;
|
||||||
|
let selectedCount = 0;
|
||||||
|
|
||||||
|
resultList.options.forEach((option) => {
|
||||||
|
const props = {
|
||||||
|
"resolution": option.querySelector('#resolution').textContent.trim(),
|
||||||
|
"codec": option.querySelector('#codec').textContent.trim(),
|
||||||
|
"provider": option.querySelector('#provider').textContent.trim(),
|
||||||
|
"languages": JSON.parse(option.dataset['languages']),
|
||||||
|
}
|
||||||
|
|
||||||
|
let include = true;
|
||||||
|
option.classList.remove('hidden');
|
||||||
|
|
||||||
|
for (let [key, value] of Object.entries(this.activeFilter)) {
|
||||||
|
if (value === "" || key === "season") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (key === "codec" && value === "h264") {
|
||||||
|
if (!this.H264_CODECS.includes(props[key].toLowerCase())) {
|
||||||
|
include = false;
|
||||||
|
}
|
||||||
|
} else if (key === "codec" && value === "h265") {
|
||||||
|
if (!this.H265_CODECS.includes(props[key].toLowerCase())) {
|
||||||
|
include = false;
|
||||||
|
}
|
||||||
|
} else if (key === "language") {
|
||||||
|
if (!props["languages"].includes(value)) {
|
||||||
|
include = false;
|
||||||
|
}
|
||||||
|
} else if (props[key] !== value) {
|
||||||
|
include = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (false === include) {
|
||||||
|
option.classList.add('hidden');
|
||||||
|
} else if (true === firstIncluded) {
|
||||||
|
count = 1;
|
||||||
|
selectedCount = selectedCount + 1;
|
||||||
|
option.querySelector('input[type="checkbox"]').checked = true;
|
||||||
|
firstIncluded = false;
|
||||||
|
} else {
|
||||||
|
count = count + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ("tvshows" === this.mediaTypeValue) {
|
||||||
|
resultList.countTarget.innerText = count;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
await results.forEach((list) => filterOperation(list, currentSeason));
|
||||||
}
|
}
|
||||||
|
|
||||||
uncheckSelectAllBtn() {
|
uncheckSelectAllBtn() {
|
||||||
this.selectAllTarget.checked = false;
|
this.selectAllTarget.checked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
downloadSeason() {
|
|
||||||
fetch(`/api/download/season/${this.imdbIdValue}/${this.activeFilter['season']}`, {
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json'
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
selectAllEpisodes() {
|
selectAllEpisodes() {
|
||||||
this.tvResultsOutlets.forEach((episode) => {
|
this.tvResultsOutlets.forEach((episode) => {
|
||||||
if (episode.isActive()) {
|
if (episode.isActive()) {
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
|
|
||||||
export default class extends Controller {
|
|
||||||
initialize() {
|
|
||||||
this._onPreConnect = this._onPreConnect.bind(this);
|
|
||||||
this._onConnect = this._onConnect.bind(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
document.querySelector("#search").onsubmit = (event) => {
|
|
||||||
event.preventDefault();
|
|
||||||
const autocompleteController = this.application.getControllerForElementAndIdentifier(this.element, 'symfony--ux-autocomplete--autocomplete')
|
|
||||||
window.location.href = `/search?term=${autocompleteController.tomSelect.lastValue}`
|
|
||||||
}
|
|
||||||
this.element.addEventListener('autocomplete:pre-connect', this._onPreConnect);
|
|
||||||
this.element.addEventListener('autocomplete:connect', this._onConnect);
|
|
||||||
}
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// You should always remove listeners when the controller is disconnected to avoid side-effects
|
|
||||||
this.element.removeEventListener('autocomplete:connect', this._onConnect);
|
|
||||||
this.element.removeEventListener('autocomplete:pre-connect', this._onPreConnect);
|
|
||||||
}
|
|
||||||
|
|
||||||
_onPreConnect(event) {
|
|
||||||
// TomSelect has not been initialized - options can be changed
|
|
||||||
// console.log(event.detail); // Options that will be used to initialize TomSelect
|
|
||||||
event.detail.options.onItemAdd = (value, $item) => {
|
|
||||||
const params = value.split('|')
|
|
||||||
window.location.href = `/result/${params[0]}/${params[1]}`
|
|
||||||
};
|
|
||||||
event.detail.options.render.loading = (data, escape) => {
|
|
||||||
return `
|
|
||||||
<span data-controller="loading-icon" data-loading-icon-total-value="52" data-loading-icon-count-value="20" class="loading-icon">
|
|
||||||
<svg viewBox="0 0 24 24" fill="currentColor" height="20" width="20" data-loading-icon-target="icon" class="text-end" aria-hidden="true"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 6.99998C9.1747 6.99987 6.99997 9.24998 7 12C7.00003 14.55 9.02119 17 12 17C14.7712 17 17 14.75 17 12"><animateTransform attributeName="transform" attributeType="XML" dur="560ms" from="0,12,12" repeatCount="indefinite" to="360,12,12" type="rotate"></animateTransform></path></svg>
|
|
||||||
</span>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
event.detail.options.render.option = (data, escape) => {
|
|
||||||
if (data.data.description.length > 60) {
|
|
||||||
data.data.description = data.data.description.substring(0, 107) + "...";
|
|
||||||
}
|
|
||||||
return `<div class="flex flex-row">
|
|
||||||
<img src="${data.data.poster}" class="w-16 rounded-md">
|
|
||||||
<div class="p-2 flex flex-col">
|
|
||||||
<h2>${data.data.title}</h2>
|
|
||||||
<p class="max-w-[60ch] text-wrap">${data.data.description}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
`
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_onConnect(event) {
|
|
||||||
// TomSelect has just been initialized and you can access details from the event
|
|
||||||
// console.log(event.detail.tomSelect); // TomSelect instance
|
|
||||||
// console.log(event.detail.options); // Options used to initialize TomSelect
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
import { Controller } from '@hotwired/stimulus';
|
|
||||||
import { getComponent } from '@symfony/ux-live-component';
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
||||||
* See https://symfony.com/bundles/StimulusBundle/current/index.html#lazy-stimulus-controllers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* stimulusFetch: 'lazy' */
|
|
||||||
export default class extends Controller {
|
|
||||||
|
|
||||||
async initialize() {
|
|
||||||
this.component = await getComponent(this.element);
|
|
||||||
this.component.on('render:finished', (component) => {
|
|
||||||
console.log(component);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setSeason(season) {
|
|
||||||
this.element.querySelectorAll(".episode-container").forEach(element => element.remove());
|
|
||||||
this.component.set('pageNumber', 1);
|
|
||||||
this.component.set('season', parseInt(season));
|
|
||||||
this.component.render();
|
|
||||||
}
|
|
||||||
|
|
||||||
paginate(event) {
|
|
||||||
this.element.querySelectorAll(".episode-container").forEach(element => element.remove());
|
|
||||||
this.component.action('paginate', {page: event.params.page});
|
|
||||||
this.component.render();
|
|
||||||
}
|
|
||||||
|
|
||||||
connect() {
|
|
||||||
// Called every time the controller is connected to the DOM
|
|
||||||
// (on page load, when it's added to the DOM, moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you can add event listeners on the element or target elements,
|
|
||||||
// add or remove classes, attributes, dispatch custom events, etc.
|
|
||||||
// this.fooTarget.addEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add custom controller actions here
|
|
||||||
// fooBar() { this.fooTarget.classList.toggle(this.bazClass) }
|
|
||||||
|
|
||||||
disconnect() {
|
|
||||||
// Called anytime its element is disconnected from the DOM
|
|
||||||
// (on page change, when it's removed from or moved in the DOM, etc.)
|
|
||||||
|
|
||||||
// Here you should remove all event listeners added in "connect()"
|
|
||||||
// this.fooTarget.removeEventListener('click', this._fooBar)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,9 +6,6 @@ import { Controller } from '@hotwired/stimulus';
|
|||||||
*/
|
*/
|
||||||
/* stimulusFetch: 'lazy' */
|
/* stimulusFetch: 'lazy' */
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
H264_CODECS = ['h264', 'h.264', 'x264']
|
|
||||||
H265_CODECS = ['h265', 'h.265', 'x265', 'hevc']
|
|
||||||
|
|
||||||
static values = {
|
static values = {
|
||||||
title: String,
|
title: String,
|
||||||
tmdbId: String,
|
tmdbId: String,
|
||||||
@@ -18,62 +15,47 @@ export default class extends Controller {
|
|||||||
active: Boolean,
|
active: Boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
static targets = ['list', 'count', 'episodeSelector', 'toggleButton', 'listContainer']
|
static targets = ['list', 'count', 'episodeSelector']
|
||||||
static outlets = ['loading-icon']
|
static outlets = ['loading-icon']
|
||||||
|
|
||||||
options = []
|
options = []
|
||||||
optionsLoaded = false
|
optionsLoaded = false
|
||||||
isOpen = false
|
|
||||||
|
|
||||||
async connect() {
|
async connect() {
|
||||||
await this.setOptions();
|
await this.setOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
async setOptions() {
|
async setOptions() {
|
||||||
if (this.optionsLoaded === false) {
|
if (true === this.activeValue) {
|
||||||
this.optionsLoaded = true;
|
await fetch(`/torrentio/tvshows/${this.tmdbIdValue}/${this.imdbIdValue}/${this.seasonValue}/${this.episodeValue}`)
|
||||||
let response;
|
.then(res => res.text())
|
||||||
|
.then(response => {
|
||||||
try {
|
this.element.innerHTML = response;
|
||||||
response = await fetch(`/torrentio/tvshows/${this.tmdbIdValue}/${this.imdbIdValue}/${this.seasonValue}/${this.episodeValue}`)
|
this.options = this.element.querySelectorAll('tbody tr');
|
||||||
} catch (error) {
|
if (this.options.length > 0) {
|
||||||
console.log('There was an error', error);
|
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
||||||
}
|
this.options[0].querySelector('input[type="checkbox"]').checked = true;
|
||||||
|
} else {
|
||||||
if (response?.ok) {
|
this.episodeSelectorTarget.disabled = true;
|
||||||
response = await response.text()
|
}
|
||||||
this.listContainerTarget.innerHTML = response;
|
this.optionsLoaded = true;
|
||||||
this.options = this.element.querySelectorAll('tbody tr');
|
this.loadingIconOutlet.increaseCount();
|
||||||
if (this.options.length > 0) {
|
});
|
||||||
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
|
||||||
this.options[0].querySelector('input[type="checkbox"]').checked = true;
|
|
||||||
} else {
|
|
||||||
this.countTarget.innerText = 0;
|
|
||||||
this.episodeSelectorTarget.disabled = true;
|
|
||||||
}
|
|
||||||
this.dispatch('optionsLoaded', {detail: {options: this.options}})
|
|
||||||
this.loadingIconOutlet.increaseCount();
|
|
||||||
} else {
|
|
||||||
console.log(`HTTP Response Code: ${response?.status}`)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
// async clearCache() {
|
|
||||||
// await fetch(`/torrentio/tvshows/clear/${this.tmdbIdValue}/${this.imdbIdValue}/${this.seasonValue}/${this.episodeValue}`)
|
|
||||||
// .then(res => res.text())
|
|
||||||
// .then(response => {});
|
|
||||||
// }
|
|
||||||
|
|
||||||
async setActive() {
|
async setActive() {
|
||||||
|
this.activeValue = true;
|
||||||
|
this.element.classList.remove('hidden');
|
||||||
if (false === this.optionsLoaded) {
|
if (false === this.optionsLoaded) {
|
||||||
await this.setOptions();
|
await this.setOptions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async setInActive() {
|
setInActive() {
|
||||||
|
this.activeValue = false;
|
||||||
this.episodeSelectorTarget.checked = false;
|
this.episodeSelectorTarget.checked = false;
|
||||||
|
this.element.classList.add('hidden');
|
||||||
}
|
}
|
||||||
|
|
||||||
isActive() {
|
isActive() {
|
||||||
@@ -91,10 +73,7 @@ export default class extends Controller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
toggleList() {
|
toggleList() {
|
||||||
this.listTarget.classList.toggle('options-table');
|
|
||||||
this.listTarget.classList.toggle('hidden');
|
this.listTarget.classList.toggle('hidden');
|
||||||
this.toggleButtonTarget.classList.toggle('rotate-90');
|
|
||||||
this.toggleButtonTarget.classList.toggle('-rotate-90');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
download() {
|
download() {
|
||||||
@@ -109,76 +88,4 @@ export default class extends Controller {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async filter(activeFilter, currentSeason, newSeason) {
|
|
||||||
if (currentSeason !== activeFilter['season']) {
|
|
||||||
if (this.seasonValue === newSeason) {
|
|
||||||
await this.setActive();
|
|
||||||
} else {
|
|
||||||
await this.setInActive();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (false === this.isActive()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let firstIncluded = true;
|
|
||||||
let count = 0;
|
|
||||||
let selectedCount = 0;
|
|
||||||
|
|
||||||
this.options.forEach((option) => {
|
|
||||||
const optionHeader = document.querySelector(`[data-option-id="${option.dataset['localId']}"]`)
|
|
||||||
const props = {
|
|
||||||
"resolution": option.querySelector('#resolution').textContent.trim(),
|
|
||||||
"codec": option.querySelector('#codec').textContent.trim(),
|
|
||||||
"provider": option.querySelector('#provider').textContent.trim(),
|
|
||||||
"languages": JSON.parse(option.dataset['languages']),
|
|
||||||
}
|
|
||||||
|
|
||||||
let include = true;
|
|
||||||
option.classList.add('r-tablerow');
|
|
||||||
option.classList.remove('hidden');
|
|
||||||
optionHeader.classList.add('r-tablerow');
|
|
||||||
optionHeader.classList.remove('hidden');
|
|
||||||
option.querySelector('input[type="checkbox"]').checked = false;
|
|
||||||
|
|
||||||
for (let [key, value] of Object.entries(activeFilter)) {
|
|
||||||
if (value === "" || key === "season") {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (key === "codec" && value === "h264") {
|
|
||||||
if (!this.H264_CODECS.includes(props[key].toLowerCase())) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (key === "codec" && value === "h265") {
|
|
||||||
if (!this.H265_CODECS.includes(props[key].toLowerCase())) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (key === "language") {
|
|
||||||
if (!props["languages"].includes(value)) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
} else if (props[key] !== value) {
|
|
||||||
include = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (false === include) {
|
|
||||||
option.classList.remove('r-tablerow');
|
|
||||||
option.classList.add('hidden');
|
|
||||||
optionHeader.classList.remove('r-tablerow');
|
|
||||||
optionHeader.classList.add('hidden');
|
|
||||||
} else if (true === firstIncluded) {
|
|
||||||
count = 1;
|
|
||||||
selectedCount = selectedCount + 1;
|
|
||||||
option.querySelector('input[type="checkbox"]').checked = true;
|
|
||||||
firstIncluded = false;
|
|
||||||
} else {
|
|
||||||
count = count + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.countTarget.innerText = count;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" color="currentColor"><path d="M17.201 2H6.8c-1.458 0-2.737.985-2.795 2.404c-.074 1.785 1.182 2.97 2.5 4.083c1.825 1.54 2.737 2.31 2.832 3.284q.023.229 0 .458c-.095.975-1.007 1.744-2.832 3.284c-1.355 1.143-2.578 2.207-2.5 4.083C4.062 21.016 5.34 22 6.799 22H17.2c1.458 0 2.737-.985 2.796-2.404c.046-1.13-.373-2.254-1.262-3.036c-.405-.357-.826-.698-1.24-1.047c-1.824-1.54-2.736-2.31-2.831-3.284a2.3 2.3 0 0 1 0-.458c.095-.975 1.008-1.744 2.832-3.284c1.34-1.131 2.577-2.229 2.5-4.083C19.939 2.984 18.66 2 17.202 2"/><path d="M9 21.638c0-.442 0-.663.088-.856a1 1 0 0 1 .046-.09c.107-.183.288-.312.65-.571c1.006-.719 1.51-1.078 2.081-1.116q.135-.009.27 0c.572.038 1.075.397 2.08 1.116c.363.259.544.388.651.571q.026.045.046.09c.088.193.088.414.088.856V22H9z"/></g></svg>
|
|
||||||
|
Before Width: | Height: | Size: 928 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8s8-3.59 8-8s-3.59-8-8-8m5 11.59L15.59 17L12 13.41L8.41 17L7 15.59L10.59 12L7 8.41L8.41 7L12 10.59L15.59 7L17 8.41L13.41 12z" opacity=".3"/><path fill="currentColor" d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10s10-4.47 10-10S17.53 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m3.59-13L12 10.59L8.41 7L7 8.41L10.59 12L7 15.59L8.41 17L12 13.41L15.59 17L17 15.59L13.41 12L17 8.41z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 526 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><mask id="ipTPauseOne0"><g fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="4"><path fill="#555" d="M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4S4 12.954 4 24s8.954 20 20 20Z"/><path stroke-linecap="round" d="M19 18v12m10-12v12"/></g></mask></defs><path fill="currentColor" d="M0 0h48v48H0z" mask="url(#ipTPauseOne0)"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 407 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><mask id="ipTPlay0"><g fill="#555" stroke="#fff" stroke-linejoin="round" stroke-width="4"><path d="M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4S4 12.954 4 24s8.954 20 20 20Z"/><path d="M20 24v-6.928l6 3.464L32 24l-6 3.464l-6 3.464z"/></g></mask></defs><path fill="currentColor" d="M0 0h48v48H0z" mask="url(#ipTPlay0)"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 392 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" fill-opacity="0" stroke="currentColor" stroke-dasharray="64" stroke-dashoffset="64" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12c0 -4.97 4.03 -9 9 -9c4.97 0 9 4.03 9 9c0 4.97 -4.03 9 -9 9c-4.97 0 -9 -4.03 -9 -9Z"><animate fill="freeze" attributeName="fill-opacity" begin="0.6s" dur="0.15s" values="0;0.3"/><animate fill="freeze" attributeName="stroke-dashoffset" dur="0.6s" values="64;0"/></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 517 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M5 21q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h7v2H5v14h7v2zm11-4l-1.375-1.45l2.55-2.55H9v-2h8.175l-2.55-2.55L16 7l5 5z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 224 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 0 0"><path fill="currentColor" fill-rule="evenodd" d="M0 3.75A.75.75 0 0 1 .75 3h14.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 3.75M0 8a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 8m.75 3.5a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5z" clip-rule="evenodd"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 333 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="currentColor" d="M4 22a8 8 0 1 1 16 0h-2a6 6 0 0 0-12 0zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6s6 2.685 6 6s-2.685 6-6 6m0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4s-4 1.79-4 4s1.79 4 4 4"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 257 B |
@@ -10,123 +10,4 @@
|
|||||||
h2 {
|
h2 {
|
||||||
font-size: var(--text-xl);
|
font-size: var(--text-xl);
|
||||||
}
|
}
|
||||||
.rounded-ms {
|
|
||||||
border-radius: 0.275rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@layer components {
|
|
||||||
.alert {
|
|
||||||
@apply text-white text-sm min-w-[250px] border px-4 py-3 rounded-md
|
|
||||||
}
|
|
||||||
.alert-success {
|
|
||||||
@apply bg-green-950 hover:bg-green-900 border-green-500
|
|
||||||
}
|
|
||||||
.alert-warning {
|
|
||||||
@apply bg-yellow-500 hover:bg-yellow-600 border-yellow-400 text-black
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Prevent scrolling while dialog is open */
|
|
||||||
body:has(dialog[data-dialog-target="dialog"][open]) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Customize the dialog backdrop */
|
|
||||||
dialog {
|
|
||||||
box-shadow: 0 0 0 100vw rgb(0 0 0 / 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fade-in {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fade-out {
|
|
||||||
0% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add animations */
|
|
||||||
dialog[data-dialog-target="dialog"][open] {
|
|
||||||
animation: fade-in 200ms forwards;
|
|
||||||
}
|
|
||||||
|
|
||||||
dialog[data-dialog-target="dialog"][closing] {
|
|
||||||
animation: fade-out 200ms forwards;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-input {
|
|
||||||
@apply bg-gray-50 text-gray-50 p-1 bg-transparent border-b-2 border-orange-400
|
|
||||||
}
|
|
||||||
|
|
||||||
.submit-button {
|
|
||||||
@apply bg-green-600/40 px-1.5 py-1 w-full rounded-md text-gray-50 backdrop-filter backdrop-blur-sm border-2 border-green-500 hover:bg-green-700/40
|
|
||||||
}
|
|
||||||
|
|
||||||
.r-tablecell {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.r-tablerow {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
|
||||||
.r-tablecell {
|
|
||||||
display: table-cell;
|
|
||||||
}
|
|
||||||
|
|
||||||
.r-tablerow {
|
|
||||||
display: table-row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.options-table {
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
:last-child {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
|
||||||
.options-table {
|
|
||||||
display: inline-table;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#search .ts-wrapper.single .ts-control::after {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#search .ts-control {
|
|
||||||
background: transparent !important;
|
|
||||||
border: none !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
color: #fff !important;
|
|
||||||
padding-left: 0;
|
|
||||||
|
|
||||||
input {
|
|
||||||
color: #fff !important;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#search .ts-dropdown {
|
|
||||||
background: unset;
|
|
||||||
@apply bg-orange-500/80 backdrop-filter backdrop-blur-md text-white border border-orange-500 rounded-md
|
|
||||||
}
|
|
||||||
|
|
||||||
#search .ts-dropdown .ts-dropdown-content .option.active {
|
|
||||||
background: unset;
|
|
||||||
@apply bg-orange-500/80 text-black font-bold rounded-md
|
|
||||||
}
|
}
|
||||||
|
|||||||
2
bash/app/wget_download.sh
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
# $1 = movies/tvshows/etc, $2 = title of media, $3 = URL of download
|
||||||
|
cd /var/download/${1} && if [ ! -d "${2}" ]; then mkdir "${2}"; fi && cd "${2}" && wget "${3}"
|
||||||
@@ -1,3 +1,2 @@
|
|||||||
echo "> Building ${IMG} for linux/amd64"
|
echo "> Building ${IMG} for linux/amd64"
|
||||||
docker buildx build --platform linux/amd64 -f Dockerfile.app -t "${IMG}-app" .
|
docker buildx build --platform linux/amd64 -f Dockerfile.prod -t ${IMG} .
|
||||||
docker buildx build --platform linux/amd64 -f Dockerfile.worker -t "${IMG}-worker" .
|
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
echo "> Building ${IMG} for linux/arm/v8"
|
echo "> Building ${IMG} for linux/arm/v8"
|
||||||
docker buildx build --platform linux/arm/v8 -f Dockerfile.app -t "${IMG}-app" .
|
docker buildx build --platform linux/arm/v8 -f Dockerfile.prod -t ${IMG} .
|
||||||
docker buildx build --platform linux/arm/v8 -f Dockerfile.app -t "${IMG}-worker" .
|
|
||||||
@@ -1,3 +1,2 @@
|
|||||||
echo "> Pushing ${IMG}"
|
echo "> Pushing ${IMG}"
|
||||||
docker push "${IMG}-app"
|
docker push ${IMG}
|
||||||
docker push "${IMG}-worker"
|
|
||||||
@@ -2,5 +2,5 @@ dev.caldwell.digital:443
|
|||||||
|
|
||||||
tls /etc/ssl/wildcard.crt /etc/ssl/wildcard.pem
|
tls /etc/ssl/wildcard.crt /etc/ssl/wildcard.pem
|
||||||
|
|
||||||
reverse_proxy app:80
|
reverse_proxy php:80
|
||||||
|
|
||||||
|
|||||||
18
bash/vhost.conf
Executable file
@@ -0,0 +1,18 @@
|
|||||||
|
<VirtualHost *:80>
|
||||||
|
ServerName localhost
|
||||||
|
|
||||||
|
DocumentRoot /var/www/public
|
||||||
|
DirectoryIndex /index.php
|
||||||
|
|
||||||
|
<Directory /var/www/public>
|
||||||
|
AllowOverride None
|
||||||
|
Order Allow,Deny
|
||||||
|
Allow from All
|
||||||
|
|
||||||
|
FallbackResource /index.php
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory /var/www/public/bundles>
|
||||||
|
FallbackResource disabled
|
||||||
|
</Directory>
|
||||||
|
</VirtualHost>
|
||||||
41
build.xml
@@ -1,20 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project name="Torsearch" default="build">
|
<project name="Caldwell Digital Symfony Template" default="build">
|
||||||
<!-- build dev for dev envs -->
|
<!-- build dev for dev envs -->
|
||||||
<target name="build" depends="setEnv,composer,compileAssets,migrateDb,clearCache" />
|
<target name="build" depends="setEnv,composer,compileAssets" />
|
||||||
|
|
||||||
<target name="composer" description="Run composer">
|
<target name="composer" description="Run composer">
|
||||||
<exec executable="composer">
|
<exec executable="composer">
|
||||||
<arg value="install" />
|
<arg value="install" />
|
||||||
<arg value="--ignore-platform-reqs" />
|
|
||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="setEnv" description="Set the database configuration">
|
|
||||||
<copy file="${project.basedir}/.env.properties" tofile="${project.basedir}/.env.local" overwrite="true">
|
|
||||||
</copy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="compileAssets" description="Run composer">
|
<target name="compileAssets" description="Run composer">
|
||||||
<exec executable="php">
|
<exec executable="php">
|
||||||
<arg value="bin/console" />
|
<arg value="bin/console" />
|
||||||
@@ -26,19 +20,22 @@
|
|||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="migrateDb" description="Migrate the database">
|
<target name="setEnv" description="Set the database configuration">
|
||||||
<exec executable="php">
|
<copy file="${project.basedir}/.env.dist" tofile="${project.basedir}/.env.local" overwrite="true">
|
||||||
<arg value="bin/console" />
|
<filterchain>
|
||||||
<arg value="--no-interaction" />
|
<replacetokens begintoken="%%" endtoken="%%">
|
||||||
<arg value="doctrine:migrations:migrate" />
|
<token key="app_secret" value="${APP_SECRET}" />
|
||||||
</exec>
|
<token key="db_url" value="${DATABASE_URL}" />
|
||||||
</target>
|
<token key="download_dir" value="${DOWNLOAD_DIR}" />
|
||||||
|
<token key="rd_key" value="${REAL_DEBRID_KEY}" />
|
||||||
<target name="clearCache" description="Clear the application cache">
|
<token key="tmdb_api" value="${TMDB_API}" />
|
||||||
<exec executable="php">
|
<token key="mercure_url" value="${MERCURE_URL}" />
|
||||||
<arg value="bin/console" />
|
<token key="mercure_public_url" value="${MERCURE_PUBLIC_URL}" />
|
||||||
<arg value="cache:pool:clear" />
|
<token key="mercure_jwt_secret" value="${MERCURE_JWT_SECRET}" />
|
||||||
<arg value="cache.app" />
|
<token key="jellyfin_url" value="${JELLYFIN_URL}" />
|
||||||
</exec>
|
<token key="jellyfin_token" value="${JELLYFIN_TOKEN}" />
|
||||||
|
</replacetokens>
|
||||||
|
</filterchain>
|
||||||
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
61
compose.yml
@@ -12,57 +12,17 @@ services:
|
|||||||
- $PWD/bash/caddy:/etc/caddy
|
- $PWD/bash/caddy:/etc/caddy
|
||||||
- $PWD/bash/certs:/etc/ssl
|
- $PWD/bash/certs:/etc/ssl
|
||||||
|
|
||||||
|
php:
|
||||||
app:
|
|
||||||
build: .
|
build: .
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
volumes:
|
||||||
- $PWD:/app
|
- ./:/var/www
|
||||||
- $PWD/var/download:/var/download
|
|
||||||
- mercure_data:/data
|
|
||||||
- mercure_config:/config
|
|
||||||
tty: true
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
depends_on:
|
|
||||||
database:
|
|
||||||
condition: service_healthy
|
|
||||||
|
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
build: .
|
build: .
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
volumes:
|
||||||
- $PWD:/app
|
- ./:/var/www
|
||||||
- $PWD/var/download:/var/download
|
- ./var/download:/var/download
|
||||||
tty: true
|
command: php ./bin/console messenger:consume async -v --time-limit=3600 --limit=10
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
command: php /app/bin/console messenger:consume async -vv --time-limit=3600
|
|
||||||
|
|
||||||
|
|
||||||
scheduler:
|
|
||||||
build: .
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- $PWD:/app
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
command: php /app/bin/console messenger:consume scheduler_monitor -vv
|
|
||||||
tty: true
|
|
||||||
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:latest
|
|
||||||
volumes:
|
|
||||||
- redis_data:/data
|
|
||||||
command: redis-server --maxmemory 512MB
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
|
|
||||||
|
|
||||||
database:
|
database:
|
||||||
image: mariadb:10.11.2
|
image: mariadb:10.11.2
|
||||||
@@ -71,26 +31,15 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- mysql:/var/lib/mysql
|
- mysql:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
TZ: America/Chicago
|
|
||||||
MYSQL_DATABASE: app
|
MYSQL_DATABASE: app
|
||||||
MYSQL_USERNAME: app
|
MYSQL_USERNAME: app
|
||||||
MYSQL_PASSWORD: password
|
MYSQL_PASSWORD: password
|
||||||
MYSQL_ROOT_PASSWORD: password
|
MYSQL_ROOT_PASSWORD: password
|
||||||
healthcheck:
|
|
||||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 10
|
|
||||||
|
|
||||||
|
|
||||||
adminer:
|
adminer:
|
||||||
image: adminer
|
image: adminer
|
||||||
ports:
|
ports:
|
||||||
- "8081:8080"
|
- "8081:8080"
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
mysql:
|
mysql:
|
||||||
mercure_data:
|
|
||||||
mercure_config:
|
|
||||||
redis_data:
|
|
||||||
|
|||||||
@@ -4,61 +4,38 @@
|
|||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=8.4",
|
"php": ">=8.2",
|
||||||
"ext-ctype": "*",
|
"ext-ctype": "*",
|
||||||
"ext-iconv": "*",
|
"ext-iconv": "*",
|
||||||
"1tomany/rich-bundle": "^1.8",
|
"1tomany/rich-bundle": "^1.8",
|
||||||
"aimeos/map": "^3.12",
|
|
||||||
"chrisullyott/php-filesize": "^4.2",
|
|
||||||
"doctrine/dbal": "^3",
|
"doctrine/dbal": "^3",
|
||||||
"doctrine/doctrine-bundle": "^2.14",
|
"doctrine/doctrine-bundle": "^2.14",
|
||||||
"doctrine/doctrine-fixtures-bundle": "^4.1",
|
|
||||||
"doctrine/doctrine-migrations-bundle": "^3.4",
|
"doctrine/doctrine-migrations-bundle": "^3.4",
|
||||||
"doctrine/orm": "^3.3",
|
"doctrine/orm": "^3.3",
|
||||||
"dragonmantank/cron-expression": "^3.4",
|
|
||||||
"drenso/symfony-oidc-bundle": "^4.2",
|
|
||||||
"guzzlehttp/guzzle": "^7.9",
|
|
||||||
"league/pipeline": "^1.1",
|
|
||||||
"nesbot/carbon": "^3.9",
|
|
||||||
"nihilarr/parse-torrent-name": "^0.0.1",
|
"nihilarr/parse-torrent-name": "^0.0.1",
|
||||||
"nyholm/psr7": "*",
|
"nyholm/psr7": "*",
|
||||||
"p3k/emoji-detector": "^1.2",
|
"p3k/emoji-detector": "^1.2",
|
||||||
"php-http/cache-plugin": "^2.0",
|
"php-flasher/flasher-symfony": "^2.1",
|
||||||
"php-tmdb/api": "^4.1",
|
"php-tmdb/api": "^4.1",
|
||||||
"predis/predis": "^2.4",
|
"symfony/asset": "7.2.*",
|
||||||
"runtime/frankenphp-symfony": "^0.2.0",
|
"symfony/console": "7.2.*",
|
||||||
"spomky-labs/pwa-bundle": "^1.2",
|
"symfony/doctrine-messenger": "7.2.*",
|
||||||
"stof/doctrine-extensions-bundle": "^1.14",
|
"symfony/dotenv": "7.2.*",
|
||||||
"symfony/asset": "7.3.*",
|
|
||||||
"symfony/console": "7.3.*",
|
|
||||||
"symfony/doctrine-messenger": "7.3.*",
|
|
||||||
"symfony/dotenv": "7.3.*",
|
|
||||||
"symfony/filesystem": "7.3.*",
|
|
||||||
"symfony/finder": "7.3.*",
|
|
||||||
"symfony/flex": "^2",
|
"symfony/flex": "^2",
|
||||||
"symfony/form": "7.3.*",
|
"symfony/form": "7.2.*",
|
||||||
"symfony/framework-bundle": "7.3.*",
|
"symfony/framework-bundle": "7.2.*",
|
||||||
"symfony/http-client": "7.3.*",
|
"symfony/messenger": "7.2.*",
|
||||||
"symfony/ldap": "7.3.*",
|
"symfony/runtime": "7.2.*",
|
||||||
"symfony/mailer": "7.3.*",
|
"symfony/security-bundle": "7.2.*",
|
||||||
"symfony/mercure-bundle": "^0.3.9",
|
|
||||||
"symfony/messenger": "7.3.*",
|
|
||||||
"symfony/runtime": "7.3.*",
|
|
||||||
"symfony/scheduler": "7.3.*",
|
|
||||||
"symfony/security-bundle": "7.3.*",
|
|
||||||
"symfony/stimulus-bundle": "^2.24",
|
"symfony/stimulus-bundle": "^2.24",
|
||||||
"symfony/twig-bundle": "7.3.*",
|
"symfony/twig-bundle": "7.2.*",
|
||||||
"symfony/ux-autocomplete": "^2.27",
|
|
||||||
"symfony/ux-icons": "^2.24",
|
"symfony/ux-icons": "^2.24",
|
||||||
"symfony/ux-live-component": "^2.24",
|
"symfony/ux-live-component": "^2.24",
|
||||||
"symfony/ux-turbo": "^2.24",
|
|
||||||
"symfony/ux-twig-component": "^2.24",
|
"symfony/ux-twig-component": "^2.24",
|
||||||
"symfony/yaml": "7.3.*",
|
"symfony/yaml": "7.2.*",
|
||||||
"symfonycasts/reset-password-bundle": "^1.23",
|
|
||||||
"symfonycasts/tailwind-bundle": "^0.10.0",
|
"symfonycasts/tailwind-bundle": "^0.10.0",
|
||||||
"twig/extra-bundle": "^2.12|^3.0",
|
"twig/extra-bundle": "^2.12|^3.0",
|
||||||
"twig/twig": "^2.12|^3.0",
|
"twig/twig": "^2.12|^3.0"
|
||||||
"web-token/jwt-library": "^4.0"
|
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"allow-plugins": {
|
"allow-plugins": {
|
||||||
@@ -66,9 +43,6 @@
|
|||||||
"symfony/flex": true,
|
"symfony/flex": true,
|
||||||
"symfony/runtime": true
|
"symfony/runtime": true
|
||||||
},
|
},
|
||||||
"platform": {
|
|
||||||
"php": "8.4"
|
|
||||||
},
|
|
||||||
"bump-after-update": true,
|
"bump-after-update": true,
|
||||||
"sort-packages": true
|
"sort-packages": true
|
||||||
},
|
},
|
||||||
@@ -104,7 +78,7 @@
|
|||||||
"post-update-cmd": [
|
"post-update-cmd": [
|
||||||
"@auto-scripts"
|
"@auto-scripts"
|
||||||
],
|
],
|
||||||
"sym": "docker compose exec app ./bin/console"
|
"sym": "docker compose exec php ./bin/console"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"symfony/symfony": "*"
|
"symfony/symfony": "*"
|
||||||
@@ -112,13 +86,10 @@
|
|||||||
"extra": {
|
"extra": {
|
||||||
"symfony": {
|
"symfony": {
|
||||||
"allow-contrib": false,
|
"allow-contrib": false,
|
||||||
"require": "7.3.*"
|
"require": "7.2.*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpstan/phpstan": "^2.1",
|
"symfony/maker-bundle": "^1.62"
|
||||||
"symfony/maker-bundle": "^1.62",
|
|
||||||
"symfony/stopwatch": "7.3.*",
|
|
||||||
"symfony/web-profiler-bundle": "7.3.*"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
4617
composer.lock
generated
@@ -14,13 +14,5 @@ return [
|
|||||||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||||||
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
||||||
Symfony\UX\LiveComponent\LiveComponentBundle::class => ['all' => true],
|
Symfony\UX\LiveComponent\LiveComponentBundle::class => ['all' => true],
|
||||||
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
|
Flasher\Symfony\FlasherSymfonyBundle::class => ['all' => true],
|
||||||
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
|
|
||||||
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
||||||
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
||||||
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
|
|
||||||
Symfony\UX\Autocomplete\AutocompleteBundle::class => ['all' => true],
|
|
||||||
SymfonyCasts\Bundle\ResetPassword\SymfonyCastsResetPasswordBundle::class => ['all' => true],
|
|
||||||
Drenso\OidcBundle\DrensoOidcBundle::class => ['all' => true],
|
|
||||||
SpomkyLabs\PwaBundle\SpomkyLabsPwaBundle::class => ['all' => true],
|
|
||||||
];
|
];
|
||||||
|
|||||||
57
config/dist/ldap.security.yaml
vendored
@@ -1,57 +0,0 @@
|
|||||||
security:
|
|
||||||
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
|
|
||||||
password_hashers:
|
|
||||||
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
|
|
||||||
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
|
||||||
providers:
|
|
||||||
users_in_memory: { memory: null }
|
|
||||||
app_local:
|
|
||||||
entity:
|
|
||||||
class: App\User\Framework\Entity\User
|
|
||||||
property: email
|
|
||||||
|
|
||||||
app_ldap:
|
|
||||||
id: App\User\Framework\Security\LdapUserProvider
|
|
||||||
|
|
||||||
firewalls:
|
|
||||||
dev:
|
|
||||||
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
||||||
security: false
|
|
||||||
main:
|
|
||||||
lazy: true
|
|
||||||
provider: app_ldap
|
|
||||||
form_login_ldap:
|
|
||||||
login_path: app_login
|
|
||||||
check_path: app_login
|
|
||||||
enable_csrf: true
|
|
||||||
service: Symfony\Component\Ldap\Ldap
|
|
||||||
dn_string: '%env(LDAP_DN_STRING)%'
|
|
||||||
logout:
|
|
||||||
path: app_logout
|
|
||||||
|
|
||||||
# activate different ways to authenticate
|
|
||||||
# https://symfony.com/doc/current/security.html#the-firewall
|
|
||||||
|
|
||||||
# https://symfony.com/doc/current/security/impersonating_user.html
|
|
||||||
# switch_user: true
|
|
||||||
|
|
||||||
# Easy way to control access for large sections of your site
|
|
||||||
# Note: Only the *first* access control that matches will be used
|
|
||||||
access_control:
|
|
||||||
- { path: ^/getting-started, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/register, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/login, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/, roles: ROLE_USER } # Or ROLE_ADMIN, ROLE_SUPER_ADMIN,
|
|
||||||
|
|
||||||
when@test:
|
|
||||||
security:
|
|
||||||
password_hashers:
|
|
||||||
# By default, password hashers are resource intensive and take time. This is
|
|
||||||
# important to generate secure password hashes. In tests however, secure hashes
|
|
||||||
# are not important, waste resources and increase test times. The following
|
|
||||||
# reduces the work factor to the lowest possible values.
|
|
||||||
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
|
|
||||||
algorithm: auto
|
|
||||||
cost: 4 # Lowest possible value for bcrypt
|
|
||||||
time_cost: 3 # Lowest possible value for argon
|
|
||||||
memory_cost: 10 # Lowest possible value for argon
|
|
||||||
55
config/dist/local.security.yaml
vendored
@@ -1,55 +0,0 @@
|
|||||||
security:
|
|
||||||
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
|
|
||||||
password_hashers:
|
|
||||||
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
|
|
||||||
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
|
||||||
providers:
|
|
||||||
users_in_memory: { memory: null }
|
|
||||||
app_local:
|
|
||||||
entity:
|
|
||||||
class: App\User\Framework\Entity\User
|
|
||||||
property: email
|
|
||||||
|
|
||||||
app_ldap:
|
|
||||||
id: App\User\Framework\Security\LdapUserProvider
|
|
||||||
|
|
||||||
firewalls:
|
|
||||||
dev:
|
|
||||||
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
||||||
security: false
|
|
||||||
main:
|
|
||||||
lazy: true
|
|
||||||
provider: app_local
|
|
||||||
form_login:
|
|
||||||
login_path: app_login
|
|
||||||
check_path: app_login
|
|
||||||
enable_csrf: true
|
|
||||||
logout:
|
|
||||||
path: app_logout
|
|
||||||
|
|
||||||
# activate different ways to authenticate
|
|
||||||
# https://symfony.com/doc/current/security.html#the-firewall
|
|
||||||
|
|
||||||
# https://symfony.com/doc/current/security/impersonating_user.html
|
|
||||||
# switch_user: true
|
|
||||||
|
|
||||||
# Easy way to control access for large sections of your site
|
|
||||||
# Note: Only the *first* access control that matches will be used
|
|
||||||
access_control:
|
|
||||||
- { path: ^/getting-started, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/register, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/login, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/, roles: ROLE_USER } # Or ROLE_ADMIN, ROLE_SUPER_ADMIN,
|
|
||||||
|
|
||||||
when@test:
|
|
||||||
security:
|
|
||||||
password_hashers:
|
|
||||||
# By default, password hashers are resource intensive and take time. This is
|
|
||||||
# important to generate secure password hashes. In tests however, secure hashes
|
|
||||||
# are not important, waste resources and increase test times. The following
|
|
||||||
# reduces the work factor to the lowest possible values.
|
|
||||||
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
|
|
||||||
algorithm: auto
|
|
||||||
cost: 4 # Lowest possible value for bcrypt
|
|
||||||
time_cost: 3 # Lowest possible value for argon
|
|
||||||
memory_cost: 10 # Lowest possible value for argon
|
|
||||||
@@ -8,8 +8,8 @@ framework:
|
|||||||
# Other options include:
|
# Other options include:
|
||||||
|
|
||||||
# Redis
|
# Redis
|
||||||
app: cache.adapter.redis
|
#app: cache.adapter.redis
|
||||||
default_redis_provider: '%app.cache.redis.host%'
|
#default_redis_provider: redis://localhost
|
||||||
|
|
||||||
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
|
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
|
||||||
#app: cache.adapter.apcu
|
#app: cache.adapter.apcu
|
||||||
|
|||||||
@@ -30,18 +30,6 @@ doctrine:
|
|||||||
dir: '%kernel.project_dir%/src/Download/Framework/Entity'
|
dir: '%kernel.project_dir%/src/Download/Framework/Entity'
|
||||||
prefix: 'App\Download\Framework\Entity'
|
prefix: 'App\Download\Framework\Entity'
|
||||||
alias: Download
|
alias: Download
|
||||||
User:
|
|
||||||
type: attribute
|
|
||||||
is_bundle: false
|
|
||||||
dir: '%kernel.project_dir%/src/User/Framework/Entity'
|
|
||||||
prefix: 'App\User\Framework\Entity'
|
|
||||||
alias: User
|
|
||||||
Monitor:
|
|
||||||
type: attribute
|
|
||||||
is_bundle: false
|
|
||||||
dir: '%kernel.project_dir%/src/Monitor/Framework/Entity'
|
|
||||||
prefix: 'App\Monitor\Framework\Entity'
|
|
||||||
alias: Download
|
|
||||||
controller_resolver:
|
controller_resolver:
|
||||||
auto_mapping: false
|
auto_mapping: false
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
drenso_oidc:
|
|
||||||
#default_client: default # The default client, will be aliased to OidcClientInterface
|
|
||||||
clients:
|
|
||||||
default: # The client name, each client will be aliased to its name (for example, $defaultOidcClient)
|
|
||||||
# Required OIDC client configuration
|
|
||||||
well_known_url: '%env(OIDC_WELL_KNOWN_URL)%'
|
|
||||||
client_id: '%env(OIDC_CLIENT_ID)%'
|
|
||||||
client_secret: '%env(OIDC_CLIENT_SECRET)%'
|
|
||||||
redirect_route: '/login/oidc/auth'
|
|
||||||
|
|
||||||
# Extra configuration options
|
|
||||||
#redirect_route: '/login_check'
|
|
||||||
#custom_client_headers: []
|
|
||||||
|
|
||||||
# Add any extra client
|
|
||||||
#link: # Will be accessible using $linkOidcClient
|
|
||||||
#well_known_url: '%env(LINK_WELL_KNOWN_URL)%'
|
|
||||||
#client_id: '%env(LINK_CLIENT_ID)%'
|
|
||||||
#client_secret: '%env(LINK_CLIENT_SECRET)%'
|
|
||||||
48
config/packages/flasher.yaml
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
flasher:
|
||||||
|
# Default notification library (e.g., 'flasher', 'toastr', 'noty', 'notyf', 'sweetalert')
|
||||||
|
default: flasher
|
||||||
|
|
||||||
|
# Path to the main PHPFlasher JavaScript file
|
||||||
|
main_script: '/vendor/flasher/flasher.min.js'
|
||||||
|
|
||||||
|
# List of CSS files to style your notifications
|
||||||
|
styles:
|
||||||
|
- '/vendor/flasher/flasher.min.css'
|
||||||
|
|
||||||
|
# Set global options for all notifications (optional)
|
||||||
|
# options:
|
||||||
|
# # Time in milliseconds before the notification disappears
|
||||||
|
# timeout: 5000
|
||||||
|
# # Where the notification appears on the screen
|
||||||
|
# position: 'top-right'
|
||||||
|
|
||||||
|
# Automatically inject JavaScript and CSS assets into your HTML pages
|
||||||
|
inject_assets: true
|
||||||
|
|
||||||
|
# Enable message translation using Symfony's translation service
|
||||||
|
translate: true
|
||||||
|
|
||||||
|
# URL patterns to exclude from asset injection and flash_bag conversion
|
||||||
|
excluded_paths:
|
||||||
|
- '/^\/_profiler/'
|
||||||
|
- '/^\/_fragment/'
|
||||||
|
|
||||||
|
# Map Symfony flash message keys to notification types
|
||||||
|
flash_bag:
|
||||||
|
success: ['success']
|
||||||
|
error: ['error', 'danger']
|
||||||
|
warning: ['warning', 'alarm']
|
||||||
|
info: ['info', 'notice', 'alert']
|
||||||
|
|
||||||
|
# Set criteria to filter which notifications are displayed (optional)
|
||||||
|
# filter:
|
||||||
|
# # Maximum number of notifications to show at once
|
||||||
|
# limit: 5
|
||||||
|
|
||||||
|
# Define notification presets to simplify notification creation (optional)
|
||||||
|
# presets:
|
||||||
|
# # Example preset:
|
||||||
|
# entity_saved:
|
||||||
|
# type: 'success'
|
||||||
|
# title: 'Entity saved'
|
||||||
|
# message: 'Entity saved successfully'
|
||||||
@@ -2,16 +2,8 @@
|
|||||||
framework:
|
framework:
|
||||||
secret: '%env(APP_SECRET)%'
|
secret: '%env(APP_SECRET)%'
|
||||||
|
|
||||||
serializer:
|
# Note that the session will be started ONLY if you read or write from it.
|
||||||
default_context:
|
session: true
|
||||||
enable_max_depth: true
|
|
||||||
|
|
||||||
trusted_proxies: 'private_ranges'
|
|
||||||
# trust *all* "X-Forwarded-*" headers
|
|
||||||
trusted_headers: [ 'x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-port', 'x-forwarded-prefix' ]
|
|
||||||
|
|
||||||
session:
|
|
||||||
handler_id: '%env(REDIS_HOST)%'
|
|
||||||
|
|
||||||
#esi: true
|
#esi: true
|
||||||
#fragments: true
|
#fragments: true
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
framework:
|
|
||||||
mailer:
|
|
||||||
dsn: 'smtp://%env(SMTP_USER)%:%env(SMTP_PASS)%@%env(SMTP_HOST)%:%env(SMTP_PORT)%'
|
|
||||||
envelope:
|
|
||||||
sender: '%env(SMTP_FROM)%'
|
|
||||||
headers:
|
|
||||||
From: '%env(SMTP_FROM_NAME)% <%env(SMTP_FROM)%>'
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
mercure:
|
|
||||||
hubs:
|
|
||||||
default:
|
|
||||||
url: '%app.mercure.url%'
|
|
||||||
public_url: '%app.mercure.public_url%'
|
|
||||||
jwt:
|
|
||||||
secret: '%env(MERCURE_JWT_SECRET)%'
|
|
||||||
publish: '*'
|
|
||||||
@@ -1,31 +1,11 @@
|
|||||||
framework:
|
framework:
|
||||||
messenger:
|
messenger:
|
||||||
# Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
|
# Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
|
||||||
failure_transport: failed
|
# failure_transport: failed
|
||||||
|
|
||||||
transports:
|
transports:
|
||||||
# https://symfony.com/doc/current/messenger.html#transport-configuration
|
# https://symfony.com/doc/current/messenger.html#transport-configuration
|
||||||
async:
|
async: '%env(MESSENGER_TRANSPORT_DSN)%'
|
||||||
dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
|
|
||||||
options:
|
|
||||||
use_notify: true
|
|
||||||
check_delayed_interval: 60000
|
|
||||||
queue_name: default
|
|
||||||
retry_strategy:
|
|
||||||
max_retries: 1
|
|
||||||
multiplier: 1
|
|
||||||
|
|
||||||
media_cache:
|
|
||||||
dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
|
|
||||||
options:
|
|
||||||
use_notify: true
|
|
||||||
check_delayed_interval: 60000
|
|
||||||
queue_name: media_cache
|
|
||||||
retry_strategy:
|
|
||||||
max_retries: 1
|
|
||||||
multiplier: 1
|
|
||||||
|
|
||||||
|
|
||||||
failed: 'doctrine://default?queue_name=failed'
|
failed: 'doctrine://default?queue_name=failed'
|
||||||
|
|
||||||
default_bus: messenger.bus.default
|
default_bus: messenger.bus.default
|
||||||
@@ -37,12 +17,6 @@ framework:
|
|||||||
# Route your messages to the transports
|
# Route your messages to the transports
|
||||||
# 'App\Message\YourMessage': async
|
# 'App\Message\YourMessage': async
|
||||||
'App\Download\Action\Command\DownloadMediaCommand': async
|
'App\Download\Action\Command\DownloadMediaCommand': async
|
||||||
'App\Download\Action\Command\DownloadSeasonCommand': async
|
|
||||||
'App\Monitor\Action\Command\MonitorTvEpisodeCommand': async
|
|
||||||
'App\Monitor\Action\Command\MonitorTvSeasonCommand': async
|
|
||||||
'App\Monitor\Action\Command\MonitorTvShowCommand': async
|
|
||||||
'App\Monitor\Action\Command\MonitorMovieCommand': async
|
|
||||||
'App\Torrentio\Action\Command\GetTvShowOptionsCommand': media_cache
|
|
||||||
|
|
||||||
# when@test:
|
# when@test:
|
||||||
# framework:
|
# framework:
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
framework:
|
|
||||||
property_info:
|
|
||||||
with_constructor_extractor: true
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
pwa:
|
|
||||||
manifest:
|
|
||||||
enabled: true
|
|
||||||
name: "Torsearch"
|
|
||||||
short_name: "torsearch"
|
|
||||||
start_url: "/"
|
|
||||||
display: "standalone"
|
|
||||||
id: "/"
|
|
||||||
background_color: "#083344"
|
|
||||||
theme_color: "#f98e44"
|
|
||||||
description: Torsearch provides a simple and intuitive way to manage your personal media library.
|
|
||||||
icons:
|
|
||||||
- src: "icon.png"
|
|
||||||
sizes: [ 192 ]
|
|
||||||
- src: "icon.png"
|
|
||||||
sizes: [ 192 ]
|
|
||||||
purpose: maskable
|
|
||||||
categories:
|
|
||||||
- entertainment
|
|
||||||
- multimedia
|
|
||||||
- utilities
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
symfonycasts_reset_password:
|
|
||||||
request_password_repository: App\User\Framework\Repository\ResetPasswordRequestRepository
|
|
||||||
@@ -5,34 +5,13 @@ security:
|
|||||||
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
||||||
providers:
|
providers:
|
||||||
users_in_memory: { memory: null }
|
users_in_memory: { memory: null }
|
||||||
app_local:
|
|
||||||
entity:
|
|
||||||
class: App\User\Framework\Entity\User
|
|
||||||
property: email
|
|
||||||
|
|
||||||
app_oidc:
|
|
||||||
id: App\User\Framework\Security\OidcUserProvider
|
|
||||||
|
|
||||||
app_ldap:
|
|
||||||
id: App\User\Framework\Security\LdapUserProvider
|
|
||||||
|
|
||||||
firewalls:
|
firewalls:
|
||||||
dev:
|
dev:
|
||||||
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
||||||
security: false
|
security: false
|
||||||
main:
|
main:
|
||||||
logout:
|
lazy: true
|
||||||
path: /logout
|
provider: users_in_memory
|
||||||
provider: app_oidc
|
|
||||||
form_login:
|
|
||||||
login_path: app_login
|
|
||||||
check_path: app_login
|
|
||||||
enable_csrf: true
|
|
||||||
oidc:
|
|
||||||
login_path: '/login/oidc'
|
|
||||||
check_path: '/login/oidc/auth'
|
|
||||||
enable_end_session_listener: true
|
|
||||||
entry_point: form_login
|
|
||||||
|
|
||||||
# activate different ways to authenticate
|
# activate different ways to authenticate
|
||||||
# https://symfony.com/doc/current/security.html#the-firewall
|
# https://symfony.com/doc/current/security.html#the-firewall
|
||||||
@@ -43,11 +22,8 @@ security:
|
|||||||
# Easy way to control access for large sections of your site
|
# Easy way to control access for large sections of your site
|
||||||
# Note: Only the *first* access control that matches will be used
|
# Note: Only the *first* access control that matches will be used
|
||||||
access_control:
|
access_control:
|
||||||
- { path: ^/reset-password, roles: PUBLIC_ACCESS }
|
# - { path: ^/admin, roles: ROLE_ADMIN }
|
||||||
- { path: ^/getting-started, roles: PUBLIC_ACCESS }
|
# - { path: ^/profile, roles: ROLE_USER }
|
||||||
- { path: ^/register, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/login, roles: PUBLIC_ACCESS }
|
|
||||||
- { path: ^/, roles: ROLE_USER } # Or ROLE_ADMIN, ROLE_SUPER_ADMIN,
|
|
||||||
|
|
||||||
when@test:
|
when@test:
|
||||||
security:
|
security:
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
# Read the documentation: https://symfony.com/doc/current/bundles/StofDoctrineExtensionsBundle/index.html
|
|
||||||
# See the official DoctrineExtensions documentation for more details: https://github.com/doctrine-extensions/DoctrineExtensions/tree/main/doc
|
|
||||||
stof_doctrine_extensions:
|
|
||||||
default_locale: en_US
|
|
||||||
orm:
|
|
||||||
default:
|
|
||||||
timestampable: true
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
framework:
|
|
||||||
default_locale: en
|
|
||||||
translator:
|
|
||||||
default_path: '%kernel.project_dir%/translations'
|
|
||||||
fallbacks:
|
|
||||||
- en
|
|
||||||
providers:
|
|
||||||
@@ -1,10 +1,5 @@
|
|||||||
twig:
|
twig:
|
||||||
globals:
|
|
||||||
version: '%app.version%'
|
|
||||||
file_name_pattern: '*.twig'
|
file_name_pattern: '*.twig'
|
||||||
date:
|
|
||||||
format: 'm/d/Y'
|
|
||||||
timezone: '%env(default:app.default.timezone:TZ)%'
|
|
||||||
|
|
||||||
when@test:
|
when@test:
|
||||||
twig:
|
twig:
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
when@dev:
|
|
||||||
web_profiler:
|
|
||||||
toolbar: true
|
|
||||||
|
|
||||||
framework:
|
|
||||||
profiler:
|
|
||||||
collect_serializer_data: true
|
|
||||||
|
|
||||||
when@test:
|
|
||||||
framework:
|
|
||||||
profiler: { collect: false }
|
|
||||||
@@ -1,55 +1,8 @@
|
|||||||
controllersBase:
|
controllersIndex:
|
||||||
resource:
|
resource:
|
||||||
path: ../src/Base/Framework/Controller/
|
path: ../src/Controller/
|
||||||
namespace: App\Base\Framework\Controller
|
namespace: App\Controller
|
||||||
type: attribute
|
type: attribute
|
||||||
defaults:
|
defaults:
|
||||||
schemes: [ 'https' ]
|
schemes: [ 'https' ]
|
||||||
|
|
||||||
controllersSearch:
|
|
||||||
resource:
|
|
||||||
path: ../src/Search/Framework/Controller/
|
|
||||||
namespace: App\Search\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: [ 'https' ]
|
|
||||||
|
|
||||||
controllersUser:
|
|
||||||
resource:
|
|
||||||
path: ../src/User/Framework/Controller
|
|
||||||
namespace: App\User\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: ['https']
|
|
||||||
|
|
||||||
controllersDownload:
|
|
||||||
resource:
|
|
||||||
path: ../src/Download/Framework/Controller
|
|
||||||
namespace: App\Download\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: [ 'https' ]
|
|
||||||
|
|
||||||
controllersMonitor:
|
|
||||||
resource:
|
|
||||||
path: ../src/Monitor/Framework/Controller
|
|
||||||
namespace: App\Monitor\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: ['https']
|
|
||||||
|
|
||||||
controllersTorrentio:
|
|
||||||
resource:
|
|
||||||
path: ../src/Torrentio/Framework/Controller
|
|
||||||
namespace: App\Torrentio\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: ['https']
|
|
||||||
|
|
||||||
controllersTmdb:
|
|
||||||
resource:
|
|
||||||
path: ../src/Tmdb/Framework/Controller
|
|
||||||
namespace: App\Tmdb\Framework\Controller
|
|
||||||
type: attribute
|
|
||||||
defaults:
|
|
||||||
schemes: ['https']
|
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
ux_autocomplete:
|
|
||||||
resource: '@AutocompleteBundle/config/routes.php'
|
|
||||||
prefix: '/autocomplete'
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
when@dev:
|
|
||||||
web_profiler_wdt:
|
|
||||||
resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
|
|
||||||
prefix: /_wdt
|
|
||||||
|
|
||||||
web_profiler_profiler:
|
|
||||||
resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
|
|
||||||
prefix: /_profiler
|
|
||||||
@@ -4,45 +4,6 @@
|
|||||||
# Put parameters here that don't need to change on each machine where the app is deployed
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
||||||
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
|
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
|
||||||
parameters:
|
parameters:
|
||||||
# App
|
|
||||||
app.url: '%env(APP_URL)%'
|
|
||||||
app.version: '%env(default:app.default.version:APP_VERSION)%'
|
|
||||||
|
|
||||||
# Debrid Services
|
|
||||||
app.debrid.real_debrid.key: '%env(REAL_DEBRID_KEY)%'
|
|
||||||
|
|
||||||
# TMDB Key
|
|
||||||
app.meta_provider.tmdb.key: '%env(TMDB_API)%'
|
|
||||||
|
|
||||||
# Media
|
|
||||||
media.base_path: '/var/download'
|
|
||||||
media.default_movies_dir: movies
|
|
||||||
media.default_tvshows_dir: tvshows
|
|
||||||
media.movies_path: '/var/download/%env(default:media.default_movies_dir:MOVIES_PATH)%'
|
|
||||||
media.tvshows_path: '/var/download/%env(default:media.default_tvshows_dir:TVSHOWS_PATH)%'
|
|
||||||
|
|
||||||
# Mercure
|
|
||||||
app.mercure.url: 'http://app/.well-known/mercure'
|
|
||||||
app.mercure.public_url: '%env(APP_URL)%/.well-known/mercure'
|
|
||||||
|
|
||||||
# Cache
|
|
||||||
app.cache.adapter: '%env(default:app.cache.adapter.default:CACHE_ADAPTER)%'
|
|
||||||
app.cache.redis.host: '%env(default:app.cache.redis.host.default:REDIS_HOST)%'
|
|
||||||
app.cache.adapter.default: 'filesystem'
|
|
||||||
app.cache.redis.host.default: 'redis://redis'
|
|
||||||
|
|
||||||
# Various configs
|
|
||||||
app.default.version: '0.dev'
|
|
||||||
app.default.timezone: 'America/Chicago'
|
|
||||||
|
|
||||||
# Auth
|
|
||||||
auth.default.method: 'form_login'
|
|
||||||
auth.method: '%env(default:auth.default.method:AUTH_METHOD)%'
|
|
||||||
|
|
||||||
auth.oidc.well_known_url: '%env(OIDC_WELL_KNOWN_URL)%'
|
|
||||||
auth.oidc.client_id: '%env(OIDC_CLIENT_ID)%'
|
|
||||||
auth.oidc.client_secret: '%env(OIDC_CLIENT_SECRET)%'
|
|
||||||
auth.oidc.bypass_form_login: '%env(bool:OIDC_BYPASS_FORM_LOGIN)%'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# default configuration for services in *this* file
|
# default configuration for services in *this* file
|
||||||
@@ -62,39 +23,3 @@ services:
|
|||||||
# add more service definitions when explicit configuration is needed
|
# add more service definitions when explicit configuration is needed
|
||||||
# please note that last definitions always *replace* previous ones
|
# please note that last definitions always *replace* previous ones
|
||||||
App\Download\Downloader\DownloaderInterface: "@App\\Download\\Downloader\\ProcessDownloader"
|
App\Download\Downloader\DownloaderInterface: "@App\\Download\\Downloader\\ProcessDownloader"
|
||||||
|
|
||||||
# Session
|
|
||||||
Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler:
|
|
||||||
arguments:
|
|
||||||
- '%env(DATABASE_URL)%'
|
|
||||||
|
|
||||||
# LDAP
|
|
||||||
App\User\Framework\Security\LdapUserProvider:
|
|
||||||
arguments:
|
|
||||||
$registerLdapUserHandler: '@App\User\Action\Handler\RegisterLdapUserHandler'
|
|
||||||
$userRepository: '@App\User\Framework\Repository\UserRepository'
|
|
||||||
$ldap: '@Symfony\Component\Ldap\LdapInterface'
|
|
||||||
$baseDn: '%env(LDAP_BASE_DN)%'
|
|
||||||
$searchDn: '%env(LDAP_BIND_USER)%'
|
|
||||||
$searchPassword: '%env(LDAP_BIND_PASS)%'
|
|
||||||
$defaultRoles: ['ROLE_USER']
|
|
||||||
$uidKey: '%env(LDAP_UID_KEY)%'
|
|
||||||
# $passwordAttribute: '%env(LDAP_PASSWORD_ATTRIBUTE)%'
|
|
||||||
|
|
||||||
|
|
||||||
Symfony\Component\Ldap\LdapInterface: '@Symfony\Component\Ldap\Ldap'
|
|
||||||
|
|
||||||
Symfony\Component\Ldap\Ldap:
|
|
||||||
arguments: [ '@Symfony\Component\Ldap\Adapter\ExtLdap\Adapter' ]
|
|
||||||
tags:
|
|
||||||
- ldap
|
|
||||||
|
|
||||||
Symfony\Component\Ldap\Adapter\ExtLdap\Adapter:
|
|
||||||
arguments:
|
|
||||||
- host: '%env(LDAP_HOST)%'
|
|
||||||
port: '%env(LDAP_PORT)%'
|
|
||||||
encryption: '%env(LDAP_ENCRYPTION)%'
|
|
||||||
options:
|
|
||||||
protocol_version: 3
|
|
||||||
referrals: false
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,58 +1,15 @@
|
|||||||
services:
|
services:
|
||||||
app:
|
php:
|
||||||
image: registry.caldwell.digital/home/torsearch-app:${TAG}
|
image: registry.caldwell.digital/home/torsearch/app:${TAG}
|
||||||
ports:
|
ports:
|
||||||
- '8001:80'
|
- "8001:80"
|
||||||
environment:
|
|
||||||
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
tty: true
|
|
||||||
deploy:
|
deploy:
|
||||||
replicas: 2
|
replicas: 2
|
||||||
volumes:
|
|
||||||
- /mnt/media/downloads/movies:/var/download/movies
|
|
||||||
- /mnt/media/downloads/tvshows:/var/download/tvshows
|
|
||||||
- mercure_data:/data
|
|
||||||
- mercure_config:/config
|
|
||||||
depends_on:
|
|
||||||
- database
|
|
||||||
|
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
image: registry.caldwell.digital/home/torsearch-worker:${TAG}
|
image: registry.caldwell.digital/home/torsearch/app:${TAG}
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/media/downloads/movies:/var/download/movies
|
- /mnt/media/downloads:/var/download
|
||||||
- /mnt/media/downloads/tvshows:/var/download/tvshows
|
command: php ./bin/console messenger:consume async -v --time-limit=3600 --limit=10
|
||||||
restart: always
|
|
||||||
command: -vv --time-limit=3600 --limit=10
|
|
||||||
deploy:
|
deploy:
|
||||||
replicas: 2
|
replicas: 2
|
||||||
depends_on:
|
|
||||||
- app
|
|
||||||
|
|
||||||
|
|
||||||
scheduler:
|
|
||||||
image: registry.caldwell.digital/home/torsearch-scheduler:${TAG}
|
|
||||||
volumes:
|
|
||||||
- /mnt/media/downloads/movies:/var/download/movies
|
|
||||||
- /mnt/media/downloads/tvshows:/var/download/tvshows
|
|
||||||
restart: always
|
|
||||||
command: -vv
|
|
||||||
depends_on:
|
|
||||||
- app
|
|
||||||
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:latest
|
|
||||||
volumes:
|
|
||||||
- redis_data:/data
|
|
||||||
command: redis-server --maxmemory 512MB
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
mysql:
|
|
||||||
mercure_config:
|
|
||||||
mercure_data:
|
|
||||||
redis_data:
|
|
||||||
|
|
||||||
@@ -2,7 +2,6 @@ assets
|
|||||||
bash
|
bash
|
||||||
bin
|
bin
|
||||||
config
|
config
|
||||||
docker
|
|
||||||
migrations
|
migrations
|
||||||
public
|
public
|
||||||
src
|
src
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
FROM dunglas/frankenphp
|
|
||||||
|
|
||||||
ENV SERVER_NAME=":80"
|
|
||||||
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
|
|
||||||
ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime"
|
|
||||||
|
|
||||||
ARG APP_VERSION="0.dev"
|
|
||||||
ENV APP_VERSION="${APP_VERSION}"
|
|
||||||
|
|
||||||
RUN install-php-extensions \
|
|
||||||
pdo_mysql \
|
|
||||||
gd \
|
|
||||||
intl \
|
|
||||||
zip \
|
|
||||||
opcache
|
|
||||||
|
|
||||||
COPY . /app
|
|
||||||
COPY --chmod=775 docker/app/entrypoint.sh /usr/local/bin/docker-entrypoint
|
|
||||||
COPY docker/app/Caddyfile /etc/frankenphp/Caddyfile
|
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/local/bin/docker-entrypoint" ]
|
|
||||||
|
|
||||||
CMD [ "frankenphp", "run", "--config", "/etc/frankenphp/Caddyfile" ]
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD [ "php", "/app/bin/console", "startup:status" ]
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
FROM dunglas/frankenphp:php8.4-alpine
|
|
||||||
|
|
||||||
ENV SERVER_NAME=":80"
|
|
||||||
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
|
|
||||||
ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime"
|
|
||||||
|
|
||||||
ARG APP_VERSION="0.dev"
|
|
||||||
ENV APP_VERSION="${APP_VERSION}"
|
|
||||||
|
|
||||||
RUN install-php-extensions \
|
|
||||||
pdo_mysql \
|
|
||||||
gd \
|
|
||||||
intl \
|
|
||||||
zip \
|
|
||||||
opcache
|
|
||||||
|
|
||||||
COPY . /app
|
|
||||||
|
|
||||||
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "scheduler_monitor" ]
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD return 0
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
FROM dunglas/frankenphp:php8.4-alpine
|
|
||||||
|
|
||||||
ENV SERVER_NAME=":80"
|
|
||||||
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
|
|
||||||
ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime"
|
|
||||||
|
|
||||||
ARG APP_VERSION="0.dev"
|
|
||||||
ENV APP_VERSION="${APP_VERSION}"
|
|
||||||
|
|
||||||
RUN install-php-extensions \
|
|
||||||
pdo_mysql \
|
|
||||||
gd \
|
|
||||||
intl \
|
|
||||||
zip \
|
|
||||||
opcache
|
|
||||||
|
|
||||||
RUN apk add --no-cache wget
|
|
||||||
|
|
||||||
COPY . /app
|
|
||||||
|
|
||||||
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async" ]
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD return 0
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
{$CADDY_GLOBAL_OPTIONS}
|
|
||||||
|
|
||||||
frankenphp {
|
|
||||||
{$FRANKENPHP_CONFIG}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
{$CADDY_EXTRA_CONFIG}
|
|
||||||
|
|
||||||
{$SERVER_NAME:localhost} {
|
|
||||||
log {
|
|
||||||
{$CADDY_SERVER_LOG_OPTIONS}
|
|
||||||
# Redact the authorization query parameter that can be set by Mercure
|
|
||||||
format filter {
|
|
||||||
request>uri query {
|
|
||||||
replace authorization REDACTED
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
root /app/public
|
|
||||||
encode zstd br gzip
|
|
||||||
|
|
||||||
mercure {
|
|
||||||
# Publisher JWT key
|
|
||||||
publisher_jwt {env.MERCURE_PUBLISHER_JWT_KEY} {env.MERCURE_PUBLISHER_JWT_ALG}
|
|
||||||
# Subscriber JWT key
|
|
||||||
subscriber_jwt {env.MERCURE_SUBSCRIBER_JWT_KEY} {env.MERCURE_SUBSCRIBER_JWT_ALG}
|
|
||||||
# Allow anonymous subscribers (double-check that it's what you want)
|
|
||||||
anonymous
|
|
||||||
# Enable the subscription API (double-check that it's what you want)
|
|
||||||
subscriptions
|
|
||||||
# Custmo cors
|
|
||||||
cors_origins *
|
|
||||||
# Extra directives
|
|
||||||
{$MERCURE_EXTRA_DIRECTIVES}
|
|
||||||
}
|
|
||||||
|
|
||||||
vulcain
|
|
||||||
|
|
||||||
{$CADDY_SERVER_EXTRA_DIRECTIVES}
|
|
||||||
|
|
||||||
# Disable Topics tracking if not enabled explicitly: https://github.com/jkarlin/topics
|
|
||||||
header ?Permissions-Policy "browsing-topics=()"
|
|
||||||
|
|
||||||
@phpRoute {
|
|
||||||
not path /.well-known/mercure*
|
|
||||||
not file {path}
|
|
||||||
}
|
|
||||||
rewrite @phpRoute index.php
|
|
||||||
|
|
||||||
@frontController path index.php
|
|
||||||
php @frontController
|
|
||||||
|
|
||||||
file_server {
|
|
||||||
hide *.php
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Sleep for a second to ensure DB is awake and ready
|
|
||||||
SLEEP_TIME=$(shuf -i 2-4 -n 1)
|
|
||||||
echo "> Sleeping for ${SLEEP_TIME} seconds to wait for the database"
|
|
||||||
sleep $SLEEP_TIME
|
|
||||||
|
|
||||||
# Provision database
|
|
||||||
php /app/bin/console doctrine:migrations:migrate --no-interaction
|
|
||||||
php /app/bin/console db:seed
|
|
||||||
|
|
||||||
exec docker-php-entrypoint "$@"
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Torsearch media cache warming services
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
ExecStart=php /app/bin/console messenger:consume media_cache --time-limit=3600
|
|
||||||
# for Redis, set a custom consumer name for each instance
|
|
||||||
Environment="MESSENGER_CONSUMER_NAME=symfony-%n-%i"
|
|
||||||
Restart=always
|
|
||||||
RestartSec=30
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=default.target
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
# App must be served over HTTPS (requirement of Mercure)
|
|
||||||
# Either serve behind an SSL terminating reverse proxy
|
|
||||||
# or pass your certificates into the 'app' container.
|
|
||||||
# Please omit any trailing slashes. The APP_URL is
|
|
||||||
# used to generate the Mercure URL behind the scenes.
|
|
||||||
APP_URL="https://dev.caldwell.digital"
|
|
||||||
APP_SECRET="70169beadfbc8101c393cbfbba27a313"
|
|
||||||
APP_ENV=prod
|
|
||||||
|
|
||||||
# Mercure is a Caddy module built into the webserver
|
|
||||||
# that facilitates the usage of websockets to transmit
|
|
||||||
# real time data (download progress, etc.)
|
|
||||||
MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
|
|
||||||
|
|
||||||
# Use the DATABASE_URL below to use the MariaDB container
|
|
||||||
# provided in the example.compose.yml file, or remove this
|
|
||||||
# line and fill in the details of your own MySQL/MariaDB server
|
|
||||||
DATABASE_URL="mysql://root:password@database:3306/app?serverVersion=10.6.19.2-MariaDB&charset=utf8mb4"
|
|
||||||
|
|
||||||
# Fill in your MySQL/MariaDB connection details
|
|
||||||
#DATABASE_URL="mysql://<mysql user>:<mysql pass>@<mysql host>:3306/<mysql db name>?serverVersion=10.6.19.2-MariaDB&charset=utf8mb4"
|
|
||||||
|
|
||||||
# Enter your Real Debrid API key
|
|
||||||
# This key is never saved anywhere
|
|
||||||
# else and is passed to Torrentio
|
|
||||||
# to retrieve download options
|
|
||||||
REAL_DEBRID_KEY=""
|
|
||||||
|
|
||||||
# Enter your TMDB API key
|
|
||||||
# This is used to provide rich search results
|
|
||||||
# when searching for media and rendering the
|
|
||||||
# Popular Movies and TV Shows section.
|
|
||||||
TMDB_API=""
|
|
||||||
|
|
||||||
# Use your own Redis instance or use the
|
|
||||||
# below value to use the container included
|
|
||||||
# in the example compose.yml file.
|
|
||||||
REDIS_HOST="redis://redis"
|
|
||||||
|
|
||||||
### Auth ###
|
|
||||||
# Change to "oidc" to and provide the required
|
|
||||||
# environment variables below to use OIDC auth.
|
|
||||||
AUTH_METHOD=form_login
|
|
||||||
|
|
||||||
# OIDC
|
|
||||||
OIDC_WELL_KNOWN_URL=
|
|
||||||
OIDC_CLIENT_ID=
|
|
||||||
OIDC_CLIENT_SECRET=
|
|
||||||
# Allows you to skip the login page and directly
|
|
||||||
# rely on your IdP for auth.
|
|
||||||
OIDC_BYPASS_FORM_LOGIN=
|
|
||||||
|
|
||||||
|
|
||||||
# LDAP Config: To use LDAP, enter the below fields
|
|
||||||
# and run 'php bin/console config:set auth.method ldap'
|
|
||||||
# (LDAP is still in progress and not ready for use)
|
|
||||||
#LDAP_HOST=
|
|
||||||
#LDAP_PORT=
|
|
||||||
#LDAP_ENCRYPTION=
|
|
||||||
#LDAP_BASE_DN=
|
|
||||||
#LDAP_BIND_USER=
|
|
||||||
#LDAP_BIND_PASS=
|
|
||||||
#LDAP_DN_STRING=
|
|
||||||
#LDAP_UID_KEY="uid"
|
|
||||||
# LDAP group that identifies an Admin
|
|
||||||
# Users with this LDAP group will automatically
|
|
||||||
# get the admin role in this system.
|
|
||||||
#LDAP_ADMIN_ROLE_DN=""
|
|
||||||
#LDAP_EMAIL_ATTRIBUTE=mail
|
|
||||||
#LDAP_USERNAME_ATTRIBUTE=uid
|
|
||||||
#LDAP_NAME_ATTRIBUTE=displayname
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
services:
|
|
||||||
app:
|
|
||||||
image: code.caldwell.digital/home/torsearch-app:latest
|
|
||||||
ports:
|
|
||||||
- '8006:80'
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
volumes:
|
|
||||||
- ./downloads/movies:/var/download/movies
|
|
||||||
- ./downloads/tvshows:/var/download/tvshows
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
depends_on:
|
|
||||||
database:
|
|
||||||
condition: service_healthy
|
|
||||||
|
|
||||||
# Downloads happen in this container. Replicate this
|
|
||||||
# container to run multiple downloads simultaneously.
|
|
||||||
# Map your "movies" folder to /var/download/movies
|
|
||||||
# Map your "TV shows" folder to /var/download/tvshows
|
|
||||||
# If your folders are on another machine, use an NFS volume.
|
|
||||||
# This container runs a Symfony worker process.
|
|
||||||
# See: https://symfony.com/doc/current/messenger.html
|
|
||||||
worker:
|
|
||||||
image: code.caldwell.digital/home/torsearch-worker:latest
|
|
||||||
volumes:
|
|
||||||
- ./downloads/movies:/var/download/movies
|
|
||||||
- ./downloads/tvshows:/var/download/tvshows
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
command: -vv --time-limit=3600 --limit=10
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
restart: always
|
|
||||||
depends_on:
|
|
||||||
app:
|
|
||||||
condition: service_healthy
|
|
||||||
|
|
||||||
# This container handles the monitoring for new media. When new
|
|
||||||
# monitors are added, jobs are periodically dispatched to this
|
|
||||||
# container, and the desired media is searched for and downloaded.
|
|
||||||
# This container runs a Symfony worker process.
|
|
||||||
# See: https://symfony.com/doc/current/messenger.html
|
|
||||||
scheduler:
|
|
||||||
image: code.caldwell.digital/home/torsearch-scheduler:latest
|
|
||||||
volumes:
|
|
||||||
- ./downloads/movies:/var/download/movies
|
|
||||||
- ./downloads/tvshows:/var/download/tvshows
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
command: -vv
|
|
||||||
environment:
|
|
||||||
TZ: America/Chicago
|
|
||||||
restart: always
|
|
||||||
depends_on:
|
|
||||||
app:
|
|
||||||
condition: service_healthy
|
|
||||||
|
|
||||||
database:
|
|
||||||
image: mariadb:10.11.2
|
|
||||||
volumes:
|
|
||||||
- mysql:/var/lib/mysql
|
|
||||||
environment:
|
|
||||||
MYSQL_DATABASE: app
|
|
||||||
MYSQL_USERNAME: app
|
|
||||||
MYSQL_PASSWORD: password
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
healthcheck:
|
|
||||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 10
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:latest
|
|
||||||
volumes:
|
|
||||||
- redis_data:/data
|
|
||||||
command: redis-server --maxmemory 512MB
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# **Optional**
|
|
||||||
# Provides a simple method of viewing the database
|
|
||||||
adminer:
|
|
||||||
image: adminer
|
|
||||||
ports:
|
|
||||||
- "8081:8080"
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
mysql:
|
|
||||||
mercure_config:
|
|
||||||
mercure_data:
|
|
||||||
redis_data:
|
|
||||||
@@ -1,115 +0,0 @@
|
|||||||
services:
|
|
||||||
# The "entrypoint" into the application. This reverse proxy
|
|
||||||
# proxies traffic back to their respective services. If not
|
|
||||||
# running behind a reverse proxy inject your SSL certificates
|
|
||||||
# into this container.
|
|
||||||
# This container runs the actual web app in a php:8.4-fpm
|
|
||||||
# base container.
|
|
||||||
app:
|
|
||||||
image: code.caldwell.digital/home/torsearch-app:latest
|
|
||||||
ports:
|
|
||||||
- '8006:80'
|
|
||||||
configs:
|
|
||||||
- env_file
|
|
||||||
deploy:
|
|
||||||
replicas: 2
|
|
||||||
depends_on:
|
|
||||||
- database
|
|
||||||
|
|
||||||
# Downloads happen in this container. Replicate this
|
|
||||||
# container to run multiple downloads simultaneously.
|
|
||||||
# Map your "movies" folder to /var/download/movies
|
|
||||||
# Map your "TV shows" folder to /var/download/tvshows
|
|
||||||
# If your folders are on another machine, use an NFS volume.
|
|
||||||
# This container runs a Symfony worker process.
|
|
||||||
# See: https://symfony.com/doc/current/messenger.html
|
|
||||||
worker:
|
|
||||||
image: code.caldwell.digital/home/torsearch-worker:latest
|
|
||||||
configs:
|
|
||||||
- source: env_file
|
|
||||||
target: /app/bin/.env.local
|
|
||||||
volumes:
|
|
||||||
- /mnt/media/downloads/movies:/var/download/movies
|
|
||||||
- /mnt/media/downloads/tvshows:/var/download/tvshows
|
|
||||||
restart: always
|
|
||||||
command: -vv
|
|
||||||
deploy:
|
|
||||||
replicas: 4
|
|
||||||
depends_on:
|
|
||||||
- app
|
|
||||||
|
|
||||||
# This container handles the monitoring for new media. When new
|
|
||||||
# monitors are added, jobs are periodically dispatched to this
|
|
||||||
# container, and the desired media is searched for and downloaded.
|
|
||||||
# This container runs a Symfony worker process.
|
|
||||||
# See: https://symfony.com/doc/current/messenger.html
|
|
||||||
scheduler:
|
|
||||||
image: code.caldwell.digital/home/torsearch-scheduler:latest
|
|
||||||
configs:
|
|
||||||
- env_file
|
|
||||||
volumes:
|
|
||||||
- ./downloads:/var/download
|
|
||||||
restart: always
|
|
||||||
depends_on:
|
|
||||||
- app
|
|
||||||
|
|
||||||
# This container facilitates viewing the progress of downloads
|
|
||||||
# in realtime. It also handles sending alerts and notifications.
|
|
||||||
# The MERCURE_PUBLISHER_JWT key & MERCURE_SUBSCRIBER_JWT_KEY should
|
|
||||||
# match the MERCURE_JWT_SECRET environment variable.
|
|
||||||
mercure:
|
|
||||||
image: dunglas/mercure
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "3001:80"
|
|
||||||
environment:
|
|
||||||
SERVER_NAME: ':80'
|
|
||||||
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
|
|
||||||
MERCURE_EXTRA_DIRECTIVES: |
|
|
||||||
cors_origins *
|
|
||||||
anonymous
|
|
||||||
command: /usr/bin/caddy run --config /etc/caddy/dev.Caddyfile
|
|
||||||
volumes:
|
|
||||||
- mercure_data:/data
|
|
||||||
- mercure_config:/config
|
|
||||||
|
|
||||||
database:
|
|
||||||
image: mariadb:10.11.2
|
|
||||||
volumes:
|
|
||||||
- mysql:/var/lib/mysql
|
|
||||||
environment:
|
|
||||||
MYSQL_DATABASE: app
|
|
||||||
MYSQL_USERNAME: app
|
|
||||||
MYSQL_PASSWORD: password
|
|
||||||
MYSQL_ROOT_PASSWORD: password
|
|
||||||
healthcheck:
|
|
||||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 10
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:latest
|
|
||||||
volumes:
|
|
||||||
- redis_data:/data
|
|
||||||
command: redis-server --maxmemory 512MB
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# **Optional**
|
|
||||||
# Provides a simple method of viewing the database
|
|
||||||
adminer:
|
|
||||||
image: adminer
|
|
||||||
ports:
|
|
||||||
- "8081:8080"
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
mysql:
|
|
||||||
mercure_config:
|
|
||||||
mercure_data:
|
|
||||||
redis_data:
|
|
||||||
|
|
||||||
configs:
|
|
||||||
env_file:
|
|
||||||
file: $PWD/.env
|
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 200 KiB |
|
Before Width: | Height: | Size: 421 KiB |
|
Before Width: | Height: | Size: 654 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 568 KiB |
|
Before Width: | Height: | Size: 889 KiB |
|
Before Width: | Height: | Size: 643 KiB |
|
Before Width: | Height: | Size: 438 KiB |
@@ -25,43 +25,7 @@ return [
|
|||||||
'@symfony/ux-live-component' => [
|
'@symfony/ux-live-component' => [
|
||||||
'path' => './vendor/symfony/ux-live-component/assets/dist/live_controller.js',
|
'path' => './vendor/symfony/ux-live-component/assets/dist/live_controller.js',
|
||||||
],
|
],
|
||||||
'@hotwired/turbo' => [
|
'@flasher/flasher' => [
|
||||||
'version' => '7.3.0',
|
'version' => '2.1.5',
|
||||||
],
|
|
||||||
'@stimulus-components/popover' => [
|
|
||||||
'version' => '7.0.0',
|
|
||||||
],
|
|
||||||
'@stimulus-components/dialog' => [
|
|
||||||
'version' => '1.0.1',
|
|
||||||
],
|
|
||||||
'@stimulus-components/dropdown' => [
|
|
||||||
'version' => '3.0.0',
|
|
||||||
],
|
|
||||||
'stimulus-use' => [
|
|
||||||
'version' => '0.52.2',
|
|
||||||
],
|
|
||||||
'animate.css' => [
|
|
||||||
'version' => '4.1.1',
|
|
||||||
],
|
|
||||||
'animate.css/animate.min.css' => [
|
|
||||||
'version' => '4.1.1',
|
|
||||||
'type' => 'css',
|
|
||||||
],
|
|
||||||
'tom-select' => [
|
|
||||||
'version' => '2.4.3',
|
|
||||||
],
|
|
||||||
'@orchidjs/sifter' => [
|
|
||||||
'version' => '1.1.0',
|
|
||||||
],
|
|
||||||
'@orchidjs/unicode-variants' => [
|
|
||||||
'version' => '1.1.2',
|
|
||||||
],
|
|
||||||
'tom-select/dist/css/tom-select.default.min.css' => [
|
|
||||||
'version' => '2.4.3',
|
|
||||||
'type' => 'css',
|
|
||||||
],
|
|
||||||
'tom-select/dist/css/tom-select.default.css' => [
|
|
||||||
'version' => '2.4.3',
|
|
||||||
'type' => 'css',
|
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250428133608 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE preference (id VARCHAR(255) NOT NULL, name VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, enabled TINYINT(1) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE preference_option (id INT AUTO_INCREMENT NOT NULL, preference_id VARCHAR(255) DEFAULT NULL, name VARCHAR(255) DEFAULT NULL, value VARCHAR(255) DEFAULT NULL, enabled TINYINT(1) NOT NULL, INDEX IDX_607C52FD81022C0 (preference_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE preference_option ADD CONSTRAINT FK_607C52FD81022C0 FOREIGN KEY (preference_id) REFERENCES preference (id)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE preference_option DROP FOREIGN KEY FK_607C52FD81022C0
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE preference
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE preference_option
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250428140450 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE user (id INT AUTO_INCREMENT NOT NULL, email VARCHAR(180) NOT NULL, roles JSON NOT NULL COMMENT '(DC2Type:json)', password VARCHAR(255) NOT NULL, UNIQUE INDEX UNIQ_8D93D649E7927C74 (email), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE episode DROP FOREIGN KEY FK_DDAA1CDAACB7A4A
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE processed_messages
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE episode
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE series
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE messenger_messages CHANGE id id BIGINT AUTO_INCREMENT NOT NULL
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE INDEX IDX_75EA56E0FB7336F0 ON messenger_messages (queue_name)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE INDEX IDX_75EA56E0E3BD61CE ON messenger_messages (available_at)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE INDEX IDX_75EA56E016BA31DB ON messenger_messages (delivered_at)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE processed_messages (id INT AUTO_INCREMENT NOT NULL, run_id INT NOT NULL, attempt SMALLINT NOT NULL, message_type VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, description VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, dispatched_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', received_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', finished_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', wait_time BIGINT NOT NULL, handle_time BIGINT NOT NULL, memory_usage INT NOT NULL, transport VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, tags VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, failure_type VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, failure_message LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, results JSON DEFAULT NULL COMMENT '(DC2Type:json)', PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = ''
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE episode (id INT AUTO_INCREMENT NOT NULL, series_id_id INT DEFAULT NULL, imdb_id VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, tvdb_id VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, title VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, year VARCHAR(5) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, poster VARCHAR(500) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, season VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, episode VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, episode_code VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, download_directory VARCHAR(500) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, INDEX IDX_DDAA1CDAACB7A4A (series_id_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = ''
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE series (id INT AUTO_INCREMENT NOT NULL, imdb_id VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, tvdb_id VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, title VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, year VARCHAR(5) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, poster VARCHAR(500) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, directory VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, number_seasons INT DEFAULT NULL, number_episodes INT DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = ''
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE episode ADD CONSTRAINT FK_DDAA1CDAACB7A4A FOREIGN KEY (series_id_id) REFERENCES series (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE user
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP INDEX IDX_75EA56E0FB7336F0 ON messenger_messages
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP INDEX IDX_75EA56E0E3BD61CE ON messenger_messages
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP INDEX IDX_75EA56E016BA31DB ON messenger_messages
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE messenger_messages CHANGE id id INT AUTO_INCREMENT NOT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250429020903 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user ADD name VARCHAR(255) DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user DROP name
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250429032311 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE user_preference (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, preference_id VARCHAR(255) NOT NULL, preference_value VARCHAR(255) DEFAULT NULL, INDEX IDX_FA0E76BFA76ED395 (user_id), INDEX IDX_FA0E76BFD81022C0 (preference_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user_preference ADD CONSTRAINT FK_FA0E76BFA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user_preference ADD CONSTRAINT FK_FA0E76BFD81022C0 FOREIGN KEY (preference_id) REFERENCES preference (id)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user_preference DROP FOREIGN KEY FK_FA0E76BFA76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user_preference DROP FOREIGN KEY FK_FA0E76BFD81022C0
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE user_preference
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250430231033 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE sessions (sess_id VARBINARY(128) NOT NULL, sess_data LONGBLOB NOT NULL, sess_lifetime INT UNSIGNED NOT NULL, sess_time INT UNSIGNED NOT NULL, INDEX sess_lifetime_idx (sess_lifetime), PRIMARY KEY(sess_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_bin` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE sessions
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250503034641 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE movie_monitor (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, title VARCHAR(255) DEFAULT NULL, imdb_id VARCHAR(255) NOT NULL, tmdb_id VARCHAR(255) NOT NULL, status VARCHAR(255) NOT NULL, search_count INT DEFAULT NULL, last_search DATETIME DEFAULT NULL, created_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', downloaded_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)', INDEX IDX_C183DBABA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE movie_monitor ADD CONSTRAINT FK_C183DBABA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE movie_monitor DROP FOREIGN KEY FK_C183DBABA76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE movie_monitor
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250505211458 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE monitor (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, title VARCHAR(255) DEFAULT NULL, imdb_id VARCHAR(255) NOT NULL, tmdb_id VARCHAR(255) NOT NULL, status VARCHAR(255) NOT NULL, search_count INT DEFAULT NULL, last_search DATETIME DEFAULT NULL, created_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', downloaded_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)', monitor_type VARCHAR(255) NOT NULL, season INT DEFAULT NULL, episode INT DEFAULT NULL, INDEX IDX_E1159985A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor ADD CONSTRAINT FK_E1159985A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE movie_monitor DROP FOREIGN KEY FK_C183DBABA76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE movie_monitor
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE movie_monitor (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, title VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, imdb_id VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, tmdb_id VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, status VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, search_count INT DEFAULT NULL, last_search DATETIME DEFAULT NULL, created_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', downloaded_at DATETIME DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)', INDEX IDX_C183DBABA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = ''
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE movie_monitor ADD CONSTRAINT FK_C183DBABA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor DROP FOREIGN KEY FK_E1159985A76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE monitor
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250510185814 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user ADD username VARCHAR(255) DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE user DROP username
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250511050008 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download ADD user_id INT DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download ADD CONSTRAINT FK_781A8270A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE INDEX IDX_781A8270A76ED395 ON download (user_id)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download DROP FOREIGN KEY FK_781A8270A76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP INDEX IDX_781A8270A76ED395 ON download
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download DROP user_id
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250519193350 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE preference ADD type VARCHAR(255) DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE preference DROP type
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250610195448 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download ADD created_at DATETIME NULL, ADD updated_at DATETIME NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download DROP created_at, DROP updated_at
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250610222503 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor ADD parent_id INT DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor ADD CONSTRAINT FK_E1159985727ACA70 FOREIGN KEY (parent_id) REFERENCES monitor (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE INDEX IDX_E1159985727ACA70 ON monitor (parent_id)
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor DROP FOREIGN KEY FK_E1159985727ACA70
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP INDEX IDX_E1159985727ACA70 ON monitor
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor DROP parent_id
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download CHANGE created_at created_at DATETIME DEFAULT NULL, CHANGE updated_at updated_at DATETIME DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250708033046 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor ADD only_future TINYINT(1) NOT NULL DEFAULT 1
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor DROP only_future
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250709161037 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download CHANGE batch_id episode_id VARCHAR(255) DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE download CHANGE episode_id batch_id VARCHAR(255) DEFAULT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace DoctrineMigrations;
|
|
||||||
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
|
||||||
use Doctrine\Migrations\AbstractMigration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
|
||||||
*/
|
|
||||||
final class Version20250709200956 extends AbstractMigration
|
|
||||||
{
|
|
||||||
public function getDescription(): string
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function up(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this up() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
CREATE TABLE reset_password_request (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, selector VARCHAR(20) NOT NULL, hashed_token VARCHAR(100) NOT NULL, requested_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', expires_at DATETIME NOT NULL COMMENT '(DC2Type:datetime_immutable)', INDEX IDX_7CE748AA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE reset_password_request ADD CONSTRAINT FK_7CE748AA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor CHANGE only_future only_future TINYINT(1) NOT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function down(Schema $schema): void
|
|
||||||
{
|
|
||||||
// this down() migration is auto-generated, please modify it to your needs
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE reset_password_request DROP FOREIGN KEY FK_7CE748AA76ED395
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
DROP TABLE reset_password_request
|
|
||||||
SQL);
|
|
||||||
$this->addSql(<<<'SQL'
|
|
||||||
ALTER TABLE monitor CHANGE only_future only_future TINYINT(1) DEFAULT 1 NOT NULL
|
|
||||||
SQL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||