@ -1,16 +1,51 @@
import React , { useState } from 'react' ;
import React , { useState } from 'react' ;
import LoadingSpinner from '../Common/LoadingSpinner' ;
import LoadingSpinner from '../Common/LoadingSpinner' ;
import type { PlexSettings } from '../../../server/lib/settings' ;
import type { PlexSettings } from '../../../server/lib/settings' ;
import type { SyncStatus } from '../../../server/job/plexsync' ;
import useSWR from 'swr' ;
import useSWR from 'swr' ;
import { useFormik } from 'formik' ;
import { useFormik } from 'formik' ;
import Button from '../Common/Button' ;
import Button from '../Common/Button' ;
import axios from 'axios' ;
import axios from 'axios' ;
import LibraryItem from './LibraryItem' ;
import LibraryItem from './LibraryItem' ;
import Badge from '../Common/Badge' ;
import { defineMessages , FormattedMessage , useIntl } from 'react-intl' ;
const messages = defineMessages ( {
plexsettings : 'Plex Settings' ,
plexsettingsDescription :
'Configure the settings for your Plex server. Overseerr uses your Plex server to scan your library at an interval and see what content is available.' ,
servername : 'Server Name (Automatically Set)' ,
servernamePlaceholder : 'Plex Server Name' ,
hostname : 'Hostname/IP' ,
port : 'Port' ,
save : 'Save Changes' ,
saving : 'Saving...' ,
plexlibraries : 'Plex Libraries' ,
plexlibrariesDescription :
'These are the libraries Overseerr will scan for titles. If you see no libraries listed, you will need to run at least one sync by clicking the button below. You must first configure and save your plex connection settings before you will be able to retrieve your libraries.' ,
syncing : 'Syncing' ,
sync : 'Sync Plex Libraries' ,
manualscan : 'Manual Library Scan' ,
manualscanDescription :
"Normally, this will only be run once every 6 hours. Overseerr will check your Plex server's recently added more aggressively. If this is your first time configuring Plex, a one time full manual library scan is recommended!" ,
notrunning : 'Not Running' ,
currentlibrary : 'Current Library: {name}' ,
librariesRemaining : 'Libraries Remaining: {count}' ,
startscan : 'Start Scan' ,
cancelscan : 'Cancel Scan' ,
} ) ;
const SettingsPlex : React.FC = ( ) = > {
const SettingsPlex : React.FC = ( ) = > {
const intl = useIntl ( ) ;
const { data , error , revalidate } = useSWR < PlexSettings > (
const { data , error , revalidate } = useSWR < PlexSettings > (
'/api/v1/settings/plex'
'/api/v1/settings/plex'
) ;
) ;
const { data : dataSync , revalidate : revalidateSync } = useSWR < SyncStatus > (
'/api/v1/settings/plex/sync' ,
{
refreshInterval : 1000 ,
}
) ;
const [ isSyncing , setIsSyncing ] = useState ( false ) ;
const [ isSyncing , setIsSyncing ] = useState ( false ) ;
const [ isUpdating , setIsUpdating ] = useState ( false ) ;
const [ isUpdating , setIsUpdating ] = useState ( false ) ;
const [ submitError , setSubmitError ] = useState < string | null > ( null ) ;
const [ submitError , setSubmitError ] = useState < string | null > ( null ) ;
@ -21,6 +56,7 @@ const SettingsPlex: React.FC = () => {
} ,
} ,
enableReinitialize : true ,
enableReinitialize : true ,
onSubmit : async ( values ) = > {
onSubmit : async ( values ) = > {
setSubmitError ( null ) ;
setIsUpdating ( true ) ;
setIsUpdating ( true ) ;
try {
try {
await axios . post ( '/api/v1/settings/plex' , {
await axios . post ( '/api/v1/settings/plex' , {
@ -30,7 +66,7 @@ const SettingsPlex: React.FC = () => {
revalidate ( ) ;
revalidate ( ) ;
} catch ( e ) {
} catch ( e ) {
setSubmitError ( e . message) ;
setSubmitError ( e . response. data . message) ;
} finally {
} finally {
setIsUpdating ( false ) ;
setIsUpdating ( false ) ;
}
}
@ -55,6 +91,24 @@ const SettingsPlex: React.FC = () => {
revalidate ( ) ;
revalidate ( ) ;
} ;
} ;
const startScan = async ( ) = > {
await axios . get ( '/api/v1/settings/plex/sync' , {
params : {
start : true ,
} ,
} ) ;
revalidateSync ( ) ;
} ;
const cancelScan = async ( ) = > {
await axios . get ( '/api/v1/settings/plex/sync' , {
params : {
cancel : true ,
} ,
} ) ;
revalidateSync ( ) ;
} ;
const toggleLibrary = async ( libraryId : string ) = > {
const toggleLibrary = async ( libraryId : string ) = > {
setIsSyncing ( true ) ;
setIsSyncing ( true ) ;
if ( activeLibraries . includes ( libraryId ) ) {
if ( activeLibraries . includes ( libraryId ) ) {
@ -84,29 +138,34 @@ const SettingsPlex: React.FC = () => {
< >
< >
< div >
< div >
< h3 className = "text-lg leading-6 font-medium text-cool-gray-200" >
< h3 className = "text-lg leading-6 font-medium text-cool-gray-200" >
Plex Settings
< FormattedMessage { ...messages.plexsettings } / >
< / h3 >
< / h3 >
< p className = "mt-1 max-w-2xl text-sm leading-5 text-cool-gray-500" >
< p className = "mt-1 max-w-2xl text-sm leading-5 text-cool-gray-500" >
Configure the settings for your Plex server . Overseerr uses your Plex
< FormattedMessage { ...messages.plexsettingsDescription } / >
server to scan your library at an interval and see what content is
available .
< / p >
< / p >
< / div >
< / div >
< form onSubmit = { formik . handleSubmit } >
< form onSubmit = { formik . handleSubmit } >
< div className = "mt-6 sm:mt-5" >
< div className = "mt-6 sm:mt-5" >
{ submitError && (
< div className = "bg-red-700 text-white p-4 rounded-md mb-6" >
{ submitError }
< / div >
) }
< div className = "sm:grid sm:grid-cols-3 sm:gap-4 sm:items-start sm:border-t sm:border-gray-800 sm:pt-5" >
< div className = "sm:grid sm:grid-cols-3 sm:gap-4 sm:items-start sm:border-t sm:border-gray-800 sm:pt-5" >
< label
< label
htmlFor = "name"
htmlFor = "name"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
>
>
Server Name ( Automatically set )
< FormattedMessage { ...messages.servername } / >
< / label >
< / label >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "max-w-lg flex rounded-md shadow-sm" >
< div className = "max-w-lg flex rounded-md shadow-sm" >
< input
< input
id = "name"
id = "name"
name = "name"
name = "name"
placeholder = "Plex Server Name (will be set automatically)"
placeholder = { intl . formatMessage (
messages . servernamePlaceholder
) }
value = { data ? . name }
value = { data ? . name }
readOnly
readOnly
className = "flex-1 form-input block w-full min-w-0 rounded-md transition duration-150 ease-in-out sm:text-sm sm:leading-5 bg-cool-gray-700 border border-cool-gray-500"
className = "flex-1 form-input block w-full min-w-0 rounded-md transition duration-150 ease-in-out sm:text-sm sm:leading-5 bg-cool-gray-700 border border-cool-gray-500"
@ -119,7 +178,7 @@ const SettingsPlex: React.FC = () => {
htmlFor = "hostname"
htmlFor = "hostname"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
>
>
Hostname / IP
< FormattedMessage { ...messages.hostname } / >
< / label >
< / label >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "max-w-lg flex rounded-md shadow-sm" >
< div className = "max-w-lg flex rounded-md shadow-sm" >
@ -139,7 +198,7 @@ const SettingsPlex: React.FC = () => {
htmlFor = "port"
htmlFor = "port"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
className = "block text-sm font-medium leading-5 text-cool-gray-400 sm:mt-px sm:pt-2"
>
>
Port
< FormattedMessage { ...messages.port } / >
< / label >
< / label >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "mt-1 sm:mt-0 sm:col-span-2" >
< div className = "max-w-lg rounded-md shadow-sm sm:max-w-xs" >
< div className = "max-w-lg rounded-md shadow-sm sm:max-w-xs" >
@ -159,51 +218,152 @@ const SettingsPlex: React.FC = () => {
< div className = "flex justify-end" >
< div className = "flex justify-end" >
< span className = "ml-3 inline-flex rounded-md shadow-sm" >
< span className = "ml-3 inline-flex rounded-md shadow-sm" >
< Button buttonType = "primary" type = "submit" disabled = { isUpdating } >
< Button buttonType = "primary" type = "submit" disabled = { isUpdating } >
{ isUpdating ? 'Saving...' : 'Save Changes' }
{ isUpdating
? intl . formatMessage ( messages . saving )
: intl . formatMessage ( messages . save ) }
< / Button >
< / Button >
< / span >
< / span >
< / div >
< / div >
< / div >
< / div >
< div className = "mt-10" >
< / form >
< h3 className = "text-lg leading-6 font-medium text-cool-gray-200" >
< div className = "mt-10" >
Plex Libraries
< h3 className = "text-lg leading-6 font-medium text-cool-gray-200" >
< / h3 >
< FormattedMessage { ...messages.plexlibraries } / >
< p className = "mt-1 max-w-2xl text-sm leading-5 text-cool-gray-500" >
< / h3 >
These are the libraries Overseerr will scan for titles . If you see
< p className = "mt-1 max-w-2xl text-sm leading-5 text-cool-gray-500" >
no libraries listed , you will need to run at least one sync by
< FormattedMessage { ...messages.plexlibrariesDescription } / >
clicking the button below . You must first configure and save your
< / p >
plex connection settings before you will be able to retrieve your
< div className = "mt-6" >
libraries .
< Button onClick = { ( ) = > syncLibraries ( ) } disabled = { isSyncing } >
< / p >
< svg
< div className = "mt-6" >
className = { ` ${ isSyncing ? 'animate-spin' : '' } w-5 h-5 mr-1 ` }
< Button onClick = { ( ) = > syncLibraries ( ) } disabled = { isSyncing } >
fill = "currentColor"
< svg
viewBox = "0 0 20 20"
className = { ` ${ isSyncing ? 'animate-spin' : '' } w-5 h-5 mr-1 ` }
xmlns = "http://www.w3.org/2000/svg"
fill = "currentColor"
>
viewBox = "0 0 20 20"
< path
xmlns = "http://www.w3.org/2000/svg"
fillRule = "evenodd"
>
d = "M4 2a1 1 0 011 1v2.101a7.002 7.002 0 0111.601 2.566 1 1 0 11-1.885.666A5.002 5.002 0 005.999 7H9a1 1 0 010 2H4a1 1 0 01-1-1V3a1 1 0 011-1zm.008 9.057a1 1 0 011.276.61A5.002 5.002 0 0014.001 13H11a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0v-2.101a7.002 7.002 0 01-11.601-2.566 1 1 0 01.61-1.276z"
< path
clipRule = "evenodd"
fillRule = "evenodd"
/ >
d = "M4 2a1 1 0 011 1v2.101a7.002 7.002 0 0111.601 2.566 1 1 0 11-1.885.666A5.002 5.002 0 005.999 7H9a1 1 0 010 2H4a1 1 0 01-1-1V3a1 1 0 011-1zm.008 9.057a1 1 0 011.276.61A5.002 5.002 0 0014.001 13H11a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0v-2.101a7.002 7.002 0 01-11.601-2.566 1 1 0 01.61-1.276z"
< / svg >
clipRule = "evenodd"
{ isSyncing
? intl . formatMessage ( messages . syncing )
: intl . formatMessage ( messages . sync ) }
< / Button >
< / div >
< ul className = "mt-6 grid grid-cols-1 gap-5 sm:gap-6 sm:grid-cols-2 lg:grid-cols-4" >
{ data ? . libraries . map ( ( library ) = > (
< LibraryItem
name = { library . name }
isEnabled = { library . enabled }
key = { ` setting-library- ${ library . id } ` }
onToggle = { ( ) = > toggleLibrary ( library . id ) }
/ >
) ) }
< / ul >
< / div >
< div className = "mt-10" >
< h3 className = "text-lg leading-6 font-medium text-cool-gray-200" >
< FormattedMessage { ...messages.manualscan } / >
< / h3 >
< p className = "mt-1 max-w-2xl text-sm leading-5 text-cool-gray-500" >
< FormattedMessage { ...messages.manualscanDescription } / >
< / p >
< div className = "mt-6" >
< div className = "bg-cool-gray-800 p-4 rounded-md" >
< div className = "w-full h-8 rounded-full bg-cool-gray-600 mb-6 relative" >
{ dataSync ? . running && (
< div
className = "h-8 rounded-full bg-indigo-600 transition-all ease-in-out duration-200"
style = { {
width : ` ${ Math . round (
( dataSync . progress / dataSync . total ) * 100
) } % ` ,
} }
/ >
/ >
< / svg >
) }
{ isSyncing ? 'Syncing...' : 'Sync Plex Libraries' }
< div className = "absolute inset-0 text-sm w-full h-8 flex items-center justify-center" >
< / Button >
< span >
{ dataSync ? . running
? ` ${ dataSync . progress } of ${ dataSync . total } `
: 'Not running' }
< / span >
< / div >
< / div >
< div className = "flex w-full flex-col sm:flex-row" >
{ dataSync ? . running && (
< >
< div className = "flex items-center mr-0 mb-2 sm:mb-0 sm:mr-2" >
< Badge >
< FormattedMessage
{ . . . messages . currentlibrary }
values = { { name : dataSync.currentLibrary.name } }
/ >
< / Badge >
< / div >
< div className = "flex items-center" >
< Badge badgeType = "warning" >
< FormattedMessage
{ . . . messages . librariesRemaining }
values = { {
count : dataSync.libraries.slice (
dataSync . libraries . findIndex (
( library ) = >
library . id === dataSync . currentLibrary . id
) + 1
) . length ,
} }
/ >
< / Badge >
< / div >
< / >
) }
< div className = "flex-1 text-right" >
{ ! dataSync ? . running && (
< Button buttonType = "warning" onClick = { ( ) = > startScan ( ) } >
< svg
className = "w-5 h-5 mr-1"
fill = "none"
stroke = "currentColor"
viewBox = "0 0 24 24"
xmlns = "http://www.w3.org/2000/svg"
>
< path
strokeLinecap = "round"
strokeLinejoin = "round"
strokeWidth = { 2 }
d = "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
/ >
< / svg >
< FormattedMessage { ...messages.startscan } / >
< / Button >
) }
{ dataSync ? . running && (
< Button buttonType = "danger" onClick = { ( ) = > cancelScan ( ) } >
< svg
className = "w-5 h-5 mr-1"
fill = "none"
stroke = "currentColor"
viewBox = "0 0 24 24"
xmlns = "http://www.w3.org/2000/svg"
>
< path
strokeLinecap = "round"
strokeLinejoin = "round"
strokeWidth = { 2 }
d = "M6 18L18 6M6 6l12 12"
/ >
< / svg >
< FormattedMessage { ...messages.cancelscan } / >
< / Button >
) }
< / div >
< / div >
< / div >
< / div >
< ul className = "mt-6 grid grid-cols-1 gap-5 sm:gap-6 sm:grid-cols-2 lg:grid-cols-4" >
{ data ? . libraries . map ( ( library ) = > (
< LibraryItem
name = { library . name }
isEnabled = { library . enabled }
key = { ` setting-library- ${ library . id } ` }
onToggle = { ( ) = > toggleLibrary ( library . id ) }
/ >
) ) }
< / ul >
< / div >
< / div >
< / form >
< / div >
< / >
< / >
) ;
) ;
} ;
} ;