78 lines
3 KiB
HTML
78 lines
3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Movie Search</title>
|
|
</head>
|
|
<body>
|
|
<h1>Movie Search</h1>
|
|
<form id="searchForm">
|
|
<label for="movieName">Enter Movie Name:</label><br>
|
|
<input type="text" id="movieName" name="movieName"><br><br>
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<div id="searchResults"></div>
|
|
|
|
<script>
|
|
document.getElementById('searchForm').addEventListener('submit', function(event) {
|
|
event.preventDefault();
|
|
let movieName = document.getElementById('movieName').value.trim();
|
|
if (movieName === '') {
|
|
alert('Please enter a movie name.');
|
|
return;
|
|
}
|
|
fetch(`https://filmer.anorak01.top/api/search?search_query=${encodeURIComponent(movieName)}`)
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
displayResults(data);
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
});
|
|
});
|
|
|
|
function displayResults(results) {
|
|
let searchResultsDiv = document.getElementById('searchResults');
|
|
searchResultsDiv.innerHTML = '';
|
|
if (results.length === 0) {
|
|
searchResultsDiv.textContent = 'No results found.';
|
|
} else {
|
|
let resultList = document.createElement('ul');
|
|
results.forEach(result => {
|
|
let listItem = document.createElement('li');
|
|
let link = document.createElement('a');
|
|
link.textContent = `${result.title} (${result.year})`;
|
|
link.href = "#"; // Set a placeholder href
|
|
link.addEventListener('click', function(event) {
|
|
event.preventDefault();
|
|
generateDynamic(result.href);
|
|
});
|
|
listItem.appendChild(link);
|
|
resultList.appendChild(listItem);
|
|
});
|
|
searchResultsDiv.appendChild(resultList);
|
|
}
|
|
}
|
|
|
|
function generateDynamic(href) {
|
|
if (href && href.startsWith('/')) {
|
|
fetch(`https://filmer.anorak01.top/vid/${href.split("/")[1]}`)
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.url) {
|
|
window.location.href = data.url; // Redirect to the generated link
|
|
} else {
|
|
console.error('Error: Unable to fetch video link');
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
});
|
|
} else {
|
|
console.error('Error: No valid link provided');
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|