mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Disable share downloading when EnableDownloads
is false.
Fixes https://github.com/navidrome/navidrome/pull/2246#issuecomment-1472341635
This commit is contained in:
parent
23c483da10
commit
377e7ebd52
5 changed files with 19 additions and 14 deletions
|
@ -52,7 +52,9 @@ func (p *Router) routes() http.Handler {
|
||||||
})
|
})
|
||||||
if conf.Server.EnableSharing {
|
if conf.Server.EnableSharing {
|
||||||
r.HandleFunc("/s/{id}", p.handleStream)
|
r.HandleFunc("/s/{id}", p.handleStream)
|
||||||
r.HandleFunc("/d/{id}", p.handleDownloads)
|
if conf.Server.EnableDownloads {
|
||||||
|
r.HandleFunc("/d/{id}", p.handleDownloads)
|
||||||
|
}
|
||||||
r.HandleFunc("/{id}", p.handleShares)
|
r.HandleFunc("/{id}", p.handleShares)
|
||||||
r.HandleFunc("/", p.handleShares)
|
r.HandleFunc("/", p.handleShares)
|
||||||
r.Handle("/*", p.assetsHandler)
|
r.Handle("/*", p.assetsHandler)
|
||||||
|
|
|
@ -33,7 +33,7 @@ export const ShareDialog = () => {
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
const [description, setDescription] = useState('')
|
const [description, setDescription] = useState('')
|
||||||
const [downloadable, setDownloadable] = useState(
|
const [downloadable, setDownloadable] = useState(
|
||||||
config.defaultDownloadableShare
|
config.defaultDownloadableShare && config.enableDownloads
|
||||||
)
|
)
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setDescription('')
|
setDescription('')
|
||||||
|
@ -118,14 +118,16 @@ export const ShareDialog = () => {
|
||||||
setDescription(event.target.value)
|
setDescription(event.target.value)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<BooleanInput
|
{config.enableDownloads && (
|
||||||
resource={'share'}
|
<BooleanInput
|
||||||
source={'downloadable'}
|
resource={'share'}
|
||||||
defaultValue={downloadable}
|
source={'downloadable'}
|
||||||
onChange={(value) => {
|
defaultValue={downloadable}
|
||||||
setDownloadable(value)
|
onChange={(value) => {
|
||||||
}}
|
setDownloadable(value)
|
||||||
/>
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
<TranscodingOptionsInput
|
<TranscodingOptionsInput
|
||||||
fullWidth
|
fullWidth
|
||||||
label={translate('message.shareOriginalFormat')}
|
label={translate('message.shareOriginalFormat')}
|
||||||
|
|
|
@ -9,6 +9,7 @@ import {
|
||||||
import { shareUrl } from '../utils'
|
import { shareUrl } from '../utils'
|
||||||
import { Link } from '@material-ui/core'
|
import { Link } from '@material-ui/core'
|
||||||
import { DateField } from '../common'
|
import { DateField } from '../common'
|
||||||
|
import config from '../config'
|
||||||
|
|
||||||
export const ShareEdit = (props) => {
|
export const ShareEdit = (props) => {
|
||||||
const { id, basePath, hasCreate, ...rest } = props
|
const { id, basePath, hasCreate, ...rest } = props
|
||||||
|
@ -20,7 +21,7 @@ export const ShareEdit = (props) => {
|
||||||
{url}
|
{url}
|
||||||
</Link>
|
</Link>
|
||||||
<TextInput source="description" />
|
<TextInput source="description" />
|
||||||
<BooleanInput source="downloadable" />
|
{config.enableDownloads && <BooleanInput source="downloadable" />}
|
||||||
<DateTimeInput source="expiresAt" />
|
<DateTimeInput source="expiresAt" />
|
||||||
<TextInput source="contents" disabled />
|
<TextInput source="contents" disabled />
|
||||||
<TextInput source="format" disabled />
|
<TextInput source="format" disabled />
|
||||||
|
|
|
@ -105,7 +105,7 @@ const ShareList = (props) => {
|
||||||
<TextField source="description" />
|
<TextField source="description" />
|
||||||
{isDesktop && <TextField source="contents" />}
|
{isDesktop && <TextField source="contents" />}
|
||||||
{isDesktop && <FormatInfo source="format" />}
|
{isDesktop && <FormatInfo source="format" />}
|
||||||
<BooleanField source="downloadable" />
|
{config.enableDownloads && <BooleanField source="downloadable" />}
|
||||||
<NumberField source="visitCount" />
|
<NumberField source="visitCount" />
|
||||||
{isDesktop && (
|
{isDesktop && (
|
||||||
<DateField source="lastVisitedAt" showTime sortByOrder={'DESC'} />
|
<DateField source="lastVisitedAt" showTime sortByOrder={'DESC'} />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import ReactJkMusicPlayer from 'navidrome-music-player'
|
import ReactJkMusicPlayer from 'navidrome-music-player'
|
||||||
import { shareInfo } from '../config'
|
import config, { shareInfo } from '../config'
|
||||||
import { shareCoverUrl, shareDownloadUrl, shareStreamUrl } from '../utils'
|
import { shareCoverUrl, shareDownloadUrl, shareStreamUrl } from '../utils'
|
||||||
|
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
|
@ -44,7 +44,7 @@ const SharePlayer = () => {
|
||||||
mode: 'full',
|
mode: 'full',
|
||||||
toggleMode: false,
|
toggleMode: false,
|
||||||
mobileMediaQuery: '',
|
mobileMediaQuery: '',
|
||||||
showDownload: shareInfo?.downloadable,
|
showDownload: shareInfo?.downloadable && config.enableDownloads,
|
||||||
showReload: false,
|
showReload: false,
|
||||||
showMediaSession: true,
|
showMediaSession: true,
|
||||||
theme: 'auto',
|
theme: 'auto',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue