mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-25 19:21:49 +01:00
Merge pull request #5 from JamesHawkinss/feature/tv-show
tv show support
This commit is contained in:
commit
c10807808a
@ -19,7 +19,6 @@
|
|||||||
.inputTextBox {
|
.inputTextBox {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
|
||||||
background-color: #36363e;
|
background-color: #36363e;
|
||||||
color: white;
|
color: white;
|
||||||
padding: .7rem 1.5rem;
|
padding: .7rem 1.5rem;
|
||||||
@ -35,10 +34,36 @@
|
|||||||
padding: .5rem 2.1rem;
|
padding: .5rem 2.1rem;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inputDropdown {
|
||||||
|
border-width: 0;
|
||||||
|
outline: none;
|
||||||
|
background-color: #36363e;
|
||||||
|
color: white;
|
||||||
|
padding: .7rem 1rem;
|
||||||
|
height: auto;
|
||||||
|
width: 25%;
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputOptionBox {
|
||||||
|
border-width: 0;
|
||||||
|
outline: none;
|
||||||
|
background-color: #36363e;
|
||||||
|
color: white;
|
||||||
|
height: auto;
|
||||||
|
width: 10%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputDropdown:hover {
|
||||||
|
background-color: #3C3D44;
|
||||||
|
}
|
||||||
|
|
||||||
.inputSearchButton:hover {
|
.inputSearchButton:hover {
|
||||||
background-color: #9C3179;
|
background-color: #9C3179;
|
||||||
}
|
}
|
||||||
@ -47,6 +72,10 @@
|
|||||||
background-color: #3C3D44;
|
background-color: #3C3D44;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inputOptionBox:hover {
|
||||||
|
background-color: #3C3D44;
|
||||||
|
}
|
||||||
|
|
||||||
.inputSearchButton .text > .arrow {
|
.inputSearchButton .text > .arrow {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
|
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
|
||||||
@ -85,9 +114,24 @@
|
|||||||
|
|
||||||
.inputSearchButton {
|
.inputSearchButton {
|
||||||
margin-top: .5rem;
|
margin-top: .5rem;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputTextBox {
|
.inputTextBox {
|
||||||
|
margin-top: .5rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inputDropdown {
|
||||||
|
width: 100%;
|
||||||
|
padding: .7rem 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputOptionBox {
|
||||||
|
margin-top: .5rem;
|
||||||
|
width: 50%;
|
||||||
|
/* align-items:stretch; */
|
||||||
|
align-self: center;
|
||||||
|
padding: .7rem 1.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,23 +4,52 @@ import './InputBox.css'
|
|||||||
|
|
||||||
// props = { onSubmit: (str) => {}, placeholder: string}
|
// props = { onSubmit: (str) => {}, placeholder: string}
|
||||||
export function InputBox({ onSubmit, placeholder }) {
|
export function InputBox({ onSubmit, placeholder }) {
|
||||||
const [value, setValue] = React.useState("");
|
const [searchTerm, setSearchTerm] = React.useState("");
|
||||||
|
const [type, setType] = React.useState("movie");
|
||||||
|
const [season, setSeason] = React.useState("");
|
||||||
|
const [episode, setEpisode] = React.useState("");
|
||||||
|
|
||||||
|
const showContentType = type === "show" ? false : true;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form className="inputBar" onSubmit={(e) => {
|
<form className="inputBar" onSubmit={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
onSubmit(value)
|
onSubmit(searchTerm, type, season, episode)
|
||||||
return false;
|
return false;
|
||||||
}}>
|
}}>
|
||||||
|
<select name="type" id="type" className="inputDropdown" onChange={(e) => setType(e.target.value)} required>
|
||||||
|
<option value="movie">Movie</option>
|
||||||
|
<option value="show">TV Show</option>
|
||||||
|
</select>
|
||||||
<input
|
<input
|
||||||
type='text'
|
type='text'
|
||||||
className="inputTextBox"
|
className="inputTextBox"
|
||||||
id="inputTextBox"
|
id="inputTextBox"
|
||||||
placeholder={placeholder}
|
placeholder={placeholder}
|
||||||
value={value}
|
value={searchTerm}
|
||||||
onChange={(e) => setValue(e.target.value)}
|
onChange={(e) => setSearchTerm(e.target.value)}
|
||||||
|
required
|
||||||
/>
|
/>
|
||||||
<button className="inputSearchButton"><span className="text">Search<span className="arrow"><Arrow/></span></span></button>
|
<input
|
||||||
|
type='text'
|
||||||
|
className='inputOptionBox'
|
||||||
|
id='inputOptionBoxSeason'
|
||||||
|
placeholder='Season'
|
||||||
|
value={season}
|
||||||
|
onChange={(e) => setSeason(e.target.value)}
|
||||||
|
hidden={showContentType}
|
||||||
|
required={!showContentType}
|
||||||
|
/>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='inputOptionBox'
|
||||||
|
id='inputOptionBoxEpisode'
|
||||||
|
placeholder='Episode'
|
||||||
|
value={episode}
|
||||||
|
onChange={(e) => setEpisode(e.target.value)}
|
||||||
|
hidden={showContentType}
|
||||||
|
required={!showContentType} />
|
||||||
|
<button className="inputSearchButton"><span className="text">Search<span className="arrow"><Arrow /></span></span></button>
|
||||||
</form>
|
</form>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@ export function MovieRow(props) {
|
|||||||
<span className="year">({props.year})</span>
|
<span className="year">({props.year})</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="watch">
|
<div className="watch">
|
||||||
|
<span className='attribute' hidden={props.type === 'show' ? false : true }>{props.season}x{props.episode}</span>
|
||||||
<p>Watch {props.type}</p>
|
<p>Watch {props.type}</p>
|
||||||
<Arrow/>
|
<Arrow/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.title {
|
.title {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
color: white;
|
color: white;
|
||||||
max-width: 20rem;
|
/* max-width: 20rem; */
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-bottom: 3.5rem;
|
margin-bottom: 3.5rem;
|
||||||
|
@ -9,7 +9,13 @@ async function getVideoUrl(config) {
|
|||||||
const accessToken = await getAccessToken(config);
|
const accessToken = await getAccessToken(config);
|
||||||
const now = Math.floor(Date.now() / 1e3);
|
const now = Math.floor(Date.now() / 1e3);
|
||||||
|
|
||||||
let url = getCorsUrl(`https://lookmovie.io/manifests/movies/json/${config.movieId}/${now}/${accessToken}/master.m3u8`);
|
let url = '';
|
||||||
|
|
||||||
|
if (config.type === 'movie') {
|
||||||
|
url = getCorsUrl(`https://lookmovie.io/manifests/movies/json/${config.id}/${now}/${accessToken}/master.m3u8`);
|
||||||
|
} else if (config.type === 'show') {
|
||||||
|
url = getCorsUrl(`https://lookmovie.io/manifests/shows/json/${accessToken}/${now}/${config.id}/master.m3u8`);
|
||||||
|
}
|
||||||
|
|
||||||
if (url) {
|
if (url) {
|
||||||
const videoOpts = await fetch(url).then((d) => d.json());
|
const videoOpts = await fetch(url).then((d) => d.json());
|
||||||
@ -31,7 +37,13 @@ async function getVideoUrl(config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function getAccessToken(config) {
|
async function getAccessToken(config) {
|
||||||
let url = getCorsUrl(`https://lookmovie.io/api/v1/security/movie-access?id_movie=${config.movieId}&token=1&sk=&step=1`);
|
let url = '';
|
||||||
|
|
||||||
|
if (config.type === 'movie') {
|
||||||
|
url = getCorsUrl(`https://lookmovie.io/api/v1/security/movie-access?id_movie=${config.id}&token=1&sk=&step=1`);
|
||||||
|
} else if (config.type === 'show') {
|
||||||
|
url = getCorsUrl(`https://lookmovie.io/api/v1/security/show-access?slug=${config.slug}&token=&step=2`);
|
||||||
|
}
|
||||||
|
|
||||||
const data = await fetch(url).then((d) => d.json());
|
const data = await fetch(url).then((d) => d.json());
|
||||||
|
|
||||||
@ -41,7 +53,7 @@ async function getAccessToken(config) {
|
|||||||
return "Invalid type provided in config";
|
return "Invalid type provided in config";
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getStreamUrl(slug, type) {
|
async function getStreamUrl(slug, type, season, episode) {
|
||||||
const url = getCorsUrl(`https://lookmovie.io/${type}s/view/${slug}`);
|
const url = getCorsUrl(`https://lookmovie.io/${type}s/view/${slug}`);
|
||||||
const pageReq = await fetch(url).then((d) => d.text());
|
const pageReq = await fetch(url).then((d) => d.text());
|
||||||
|
|
||||||
@ -54,19 +66,35 @@ async function getStreamUrl(slug, type) {
|
|||||||
"}"
|
"}"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let id = '';
|
||||||
|
|
||||||
|
if (type === "movie") {
|
||||||
|
id = data.id_movie;
|
||||||
|
} else if (type === "show") {
|
||||||
|
const episodeObj = data.seasons.find((v) => { return v.season === season && v.episode === episode; });
|
||||||
|
|
||||||
|
if (episodeObj) {
|
||||||
|
id = episodeObj.id_episode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (id === '') {
|
||||||
|
return { url: '' }
|
||||||
|
}
|
||||||
|
|
||||||
const videoUrl = await getVideoUrl({
|
const videoUrl = await getVideoUrl({
|
||||||
slug: slug,
|
slug: slug,
|
||||||
movieId: data.id_movie,
|
id: id,
|
||||||
type: type,
|
type: type,
|
||||||
});
|
});
|
||||||
|
|
||||||
return { url: videoUrl }
|
return { url: videoUrl }
|
||||||
}
|
}
|
||||||
|
|
||||||
async function findMovie(searchTerm) {
|
async function findContent(searchTerm, type) {
|
||||||
const searchUrl = getCorsUrl(`https://lookmovie.io/api/v1/movies/search/?q=${encodeURIComponent(searchTerm)}`);
|
const searchUrl = getCorsUrl(`https://lookmovie.io/api/v1/${type}s/search/?q=${encodeURIComponent(searchTerm)}`);
|
||||||
const searchRes = await fetch(searchUrl).then((d) => d.json());
|
const searchRes = await fetch(searchUrl).then((d) => d.json());
|
||||||
let results = [...searchRes.result.map((v) => ({ ...v, type: "movie" }))];
|
const results = [...searchRes.result.map((v) => ({ ...v, type: type}))];
|
||||||
|
|
||||||
const fuse = new Fuse(results, { threshold: 0.3, distance: 200, keys: ["title"] });
|
const fuse = new Fuse(results, { threshold: 0.3, distance: 200, keys: ["title"] });
|
||||||
const matchedResults = fuse
|
const matchedResults = fuse
|
||||||
@ -97,4 +125,4 @@ async function findMovie(searchTerm) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { findMovie, getStreamUrl };
|
export { findContent, getStreamUrl };
|
@ -55,10 +55,6 @@ function registerValidSW(swUrl, config) {
|
|||||||
// At this point, the updated precached content has been fetched,
|
// At this point, the updated precached content has been fetched,
|
||||||
// but the previous service worker will still serve the older
|
// but the previous service worker will still serve the older
|
||||||
// content until all client tabs are closed.
|
// content until all client tabs are closed.
|
||||||
console.log(
|
|
||||||
'New content is available and will be used when all ' +
|
|
||||||
'tabs for this page are closed. See https://cra.link/PWA.'
|
|
||||||
);
|
|
||||||
|
|
||||||
// Execute callback
|
// Execute callback
|
||||||
if (config && config.onUpdate) {
|
if (config && config.onUpdate) {
|
||||||
@ -68,7 +64,6 @@ function registerValidSW(swUrl, config) {
|
|||||||
// At this point, everything has been precached.
|
// At this point, everything has been precached.
|
||||||
// It's the perfect time to display a
|
// It's the perfect time to display a
|
||||||
// "Content is cached for offline use." message.
|
// "Content is cached for offline use." message.
|
||||||
console.log('Content is cached for offline use.');
|
|
||||||
|
|
||||||
// Execute callback
|
// Execute callback
|
||||||
if (config && config.onSuccess) {
|
if (config && config.onSuccess) {
|
||||||
@ -108,7 +103,6 @@ function checkValidServiceWorker(swUrl, config) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
console.log('No internet connection found. App is running in offline mode.');
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ export function MovieView(props) {
|
|||||||
<div className="cardView">
|
<div className="cardView">
|
||||||
<Card fullWidth>
|
<Card fullWidth>
|
||||||
<Title accent="Return to home" accentLink="search">
|
<Title accent="Return to home" accentLink="search">
|
||||||
{ streamData.title }
|
{streamData.title} {streamData.type === "show" ? `(${streamData.season}x${streamData.episode})` : '' }
|
||||||
</Title>
|
</Title>
|
||||||
<VideoElement streamUrl={streamUrl}/>
|
<VideoElement streamUrl={streamUrl}/>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -5,7 +5,7 @@ import { Card } from '../components/Card'
|
|||||||
import { MovieRow } from '../components/MovieRow'
|
import { MovieRow } from '../components/MovieRow'
|
||||||
import { Arrow } from '../components/Arrow'
|
import { Arrow } from '../components/Arrow'
|
||||||
import { Progress } from '../components/Progress'
|
import { Progress } from '../components/Progress'
|
||||||
import { findMovie, getStreamUrl } from '../lib/lookMovie'
|
import { findContent, getStreamUrl } from '../lib/lookMovie'
|
||||||
import { useMovie } from '../hooks/useMovie';
|
import { useMovie } from '../hooks/useMovie';
|
||||||
|
|
||||||
import './Search.css'
|
import './Search.css'
|
||||||
@ -26,17 +26,24 @@ export function SearchView() {
|
|||||||
setFailed(true)
|
setFailed(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getStream(title, slug, type) {
|
async function getStream(title, slug, type, season, episode) {
|
||||||
setStreamUrl("");
|
setStreamUrl("");
|
||||||
try {
|
try {
|
||||||
setProgress(2);
|
setProgress(2);
|
||||||
setText(`Getting stream for "${title}"`)
|
setText(`Getting stream for "${title}"`)
|
||||||
const { url } = await getStreamUrl(slug, type);
|
const { url } = await getStreamUrl(slug, type, season, episode);
|
||||||
|
|
||||||
|
if (url === '') {
|
||||||
|
return fail(`Not found: ${title} (${season}x${episode})`)
|
||||||
|
}
|
||||||
|
|
||||||
setProgress(maxSteps);
|
setProgress(maxSteps);
|
||||||
setStreamUrl(url);
|
setStreamUrl(url);
|
||||||
setStreamData({
|
setStreamData({
|
||||||
title,
|
title,
|
||||||
type,
|
type,
|
||||||
|
season,
|
||||||
|
episode
|
||||||
})
|
})
|
||||||
setText(`Streaming...`)
|
setText(`Streaming...`)
|
||||||
navigate("movie")
|
navigate("movie")
|
||||||
@ -45,39 +52,44 @@ export function SearchView() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function searchMovie(query) {
|
async function searchMovie(query, contentType, season, episode) {
|
||||||
setFailed(false);
|
setFailed(false);
|
||||||
setText(`Searching for "${query}"`);
|
setText(`Searching for ${contentType} "${query}" ${contentType === 'show' ? ` (${season}x${episode})` : ''}`);
|
||||||
setProgress(1)
|
setProgress(1)
|
||||||
setShowingOptions(false)
|
setShowingOptions(false)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { options } = await findMovie(query)
|
const { options } = await findContent(query, contentType)
|
||||||
|
|
||||||
if (options.length === 0) {
|
if (options.length === 0) {
|
||||||
return fail("Could not find that movie")
|
return fail(`Could not find that ${contentType}`)
|
||||||
} else if (options.length > 1) {
|
} else if (options.length > 1) {
|
||||||
|
options.forEach((o) => {
|
||||||
|
o.season = season;
|
||||||
|
o.episode = episode;
|
||||||
|
});
|
||||||
|
|
||||||
setProgress(2);
|
setProgress(2);
|
||||||
setText("Choose your movie");
|
setText(`Choose your ${contentType}`);
|
||||||
setOptions(options);
|
setOptions(options);
|
||||||
setShowingOptions(true);
|
setShowingOptions(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { title, slug, type } = options[0];
|
const { title, slug, type } = options[0];
|
||||||
getStream(title, slug, type);
|
getStream(title, slug, type, season, episode);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
fail("Failed to watch movie")
|
fail(`Failed to watch ${contentType}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="cardView">
|
<div className="cardView">
|
||||||
<Card>
|
<Card>
|
||||||
<Title accent="Because watching movies legally is boring">
|
<Title accent="Because watching content legally is boring">
|
||||||
What movie do you wanna watch?
|
What do you wanna watch?
|
||||||
</Title>
|
</Title>
|
||||||
<InputBox placeholder="Hamilton" onSubmit={(str) => searchMovie(str)} />
|
<InputBox placeholder="Hamilton" onSubmit={(str, type, season, episode) => searchMovie(str, type, season, episode)} />
|
||||||
<Progress show={progress > 0} failed={failed} progress={progress} steps={maxSteps} text={text} />
|
<Progress show={progress > 0} failed={failed} progress={progress} steps={maxSteps} text={text} />
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
@ -86,9 +98,9 @@ export function SearchView() {
|
|||||||
Whoops, there are a few movies like that
|
Whoops, there are a few movies like that
|
||||||
</Title>
|
</Title>
|
||||||
{options?.map((v, i) => (
|
{options?.map((v, i) => (
|
||||||
<MovieRow key={i} title={v.title} type={v.type} year={v.year} onClick={() => {
|
<MovieRow key={i} title={v.title} type={v.type} year={v.year} season={v.season} episode={v.episode} onClick={() => {
|
||||||
setShowingOptions(false)
|
setShowingOptions(false)
|
||||||
getStream(v.title, v.slug, v.type)
|
getStream(v.title, v.slug, v.type, v.season, v.episode)
|
||||||
}}/>
|
}}/>
|
||||||
))}
|
))}
|
||||||
</Card>
|
</Card>
|
||||||
|
Loading…
Reference in New Issue
Block a user