-
Notifications
You must be signed in to change notification settings - Fork 38
/
animeDetails.php
317 lines (296 loc) · 19.8 KB
/
animeDetails.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?php
session_start();
require_once('./_config.php');
$parts=parse_url($_SERVER['REQUEST_URI']);
$page_url=explode('/', $parts['path']);
$url = $page_url[count($page_url)-1];
$getAnime = file_get_contents("$api/getAnime/$url");
$getAnime = json_decode($getAnime, true);
$episodelist = $getAnime['episode_id'];
?>
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Watch <?=$getAnime['name']?> - <?=$websiteTitle?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="title" content="Watch <?=$getAnime['name']?> - <?=$websiteTitle?>" />
<meta name="description" content="<?=substr($getAnime['synopsis'],0, 150)?>.... Read More On <?=$websiteTitle?>" />
<meta name="keywords" content="<?=$getAnime['name']?>, <?=$getAnime['othername']?>, <?=$websiteTitle?>, watch anime online, free anime, anime stream, anime hd, english sub, kissanime, gogoanime, animeultima, 9anime, 123animes, <?=$websiteTitle?>, vidstreaming, gogo-stream, animekisa, zoro.to, gogoanime.run, animefrenzy, animekisa" />
<meta name="charset" content="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<meta name="robots" content="index, follow" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Content-Language" content="en" />
<meta property="og:title" content="Watch <?=$getAnime['name']?> - <?=$websiteTitle?>">
<meta property="og:description" content="W<?=substr($getAnime['synopsis'],0, 150)?>.... Read More On <?=$websiteTitle?>.">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:site_name" content="<?=$websiteTitle?>">
<meta property="og:url" content="<?=$websiteUrl?>/anime/<?=$url?>">
<meta itemprop="image" content="<?=$getAnime['imageUrl']?>">
<meta property="og:image" content="<?=$getAnime['imageUrl']?>">
<meta property="og:image:secure_url" content="<?=$getAnime['imageUrl']?>">
<meta property="og:image:width" content="650">
<meta property="og:image:height" content="350">
<meta property="twitter:title" content="Watch <?=$getAnime['name']?> - <?=$websiteTitle?>">
<meta property="twitter:description" ontent="W<?=substr($getAnime['synopsis'],0, 150)?>.... Read More On <?=$websiteTitle?>.">
<meta property="twitter:url" content="<?=$websiteUrl?>/anime/<?=$url?>">
<meta property="twitter:card" content="summary">
<meta name="apple-mobile-web-app-status-bar" content="#202125">
<meta name="theme-color" content="#202125">
<link rel="apple-touch-icon" href="<?=$websiteUrl?>/favicon.png?v=<?=$version?>" />
<link rel="shortcut icon" href="<?=$websiteUrl?>/favicon.png?v=<?=$version?>" type="image/x-icon"/>
<link rel="apple-touch-icon" sizes="180x180" href="<?=$websiteUrl?>/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?=$websiteUrl?>/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?=$websiteUrl?>/favicon-16x16.png">
<link rel="mask-icon" href="<?=$websiteUrl?>/safari-pinned-tab.svg" color="#5bbad5">
<link rel="icon" sizes="192x192" href="<?=$websiteUrl?>/files/images/touch-icon-192x192.png?v=<?=$version?>">
<link rel="stylesheet" href="<?=$websiteUrl?>/files/css/style.css?v=<?=$version?>">
<link rel="stylesheet" href="<?=$websiteUrl?>/files/css/min.css?v=<?=$version?>">
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-63430163bc99824a"></script>
<script type="text/javascript">
setTimeout(function () {
var wpse326013 = document.createElement('link');
wpse326013.rel = 'stylesheet';
wpse326013.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css';
wpse326013.type = 'text/css';
var godefer = document.getElementsByTagName('link')[0];
godefer.parentNode.insertBefore(wpse326013, godefer);
var wpse326013_2 = document.createElement('link');
wpse326013_2.rel = 'stylesheet';
wpse326013_2.href = 'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css';
wpse326013_2.type = 'text/css';
var godefer2 = document.getElementsByTagName('link')[0];
godefer2.parentNode.insertBefore(wpse326013_2, godefer2);
}, 500);
</script>
<noscript>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css" />
</noscript>
</head>
<body data-page="movie_info">
<div id="sidebar_menu_bg"></div>
<div id="wrapper" data-page="page_home">
<?php include('./_php/header.php'); ?>
<div class="clearfix"></div>
<div id="main-wrapper" date-page="movie_info" data-id="<?=$url?>">
<div id="ani_detail">
<div class="ani_detail-stage">
<div class="container">
<div class="anis-cover-wrap">
<div class="anis-cover"
style="background-image: url('<?=$getAnime['imageUrl']?>')"></div>
</div>
<div class="anis-content">
<div class="anisc-poster">
<div class="film-poster">
<img src="<?=$websiteUrl?>/files/images/no_poster.jpg"
data-src="<?=$getAnime['imageUrl']?>"
class="lazyload film-poster-img">
</div>
</div>
<div class="anisc-detail">
<div class="prebreadcrumb">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li itemprop="itemListElement" itemscope=""
itemtype="http://schema.org/ListItem" class="breadcrumb-item">
<a itemprop="item" href="/"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1">
</li>
<li itemprop="itemListElement" itemscope=""
itemtype="http://schema.org/ListItem" class="breadcrumb-item">
<a itemprop="item" href="/anime"><span itemprop="name">Anime</span></a>
<meta itemprop="position" content="2">
</li>
<li itemprop="itemListElement" itemscope=""
itemtype="http://schema.org/ListItem"
class="breadcrumb-item dynamic-name" data-jname="<?=$getAnime['name']?>"
aria-current="page">
<a itemprop="item" href="/anime/<?=$url?>"><span itemprop="name"><?=$getAnime['name']?></span></a>
<meta itemprop="position" content="3">
</li>
</ol>
</nav>
</div>
<h2 class="film-name dynamic-name" data-jname="<?=$getAnime['name']?>"><?=$getAnime['name']?></h2>
<div class="film-stats">
<div class="tac tick-item tick-quality">HD</div>
<div class="tac tick-item tick-dub">
<?php $str = $getAnime['name'];
$last_word_start = strrpos ( $str , " ") + 1;
$last_word_end = strlen($str) - 1;
$last_word = substr($str, $last_word_start, $last_word_end);
if ($last_word == "(Dub)"){echo "Dubbed";} else {echo "Subbed";}
?>
</div>
<span class="dot"></span>
<span class="item"><?=$getAnime['type']?></span>
<div class="clearfix"></div>
</div>
<?php if(count($getAnime['episode_id']) == 0) {
echo "";
} else { ?>
<div class="film-buttons">
<a href="/watch/<?php foreach(array_slice($episodelist, 0, 1) as $episode1) {?><?=$episode1['episodeId']?><?php } ?>" class="btn btn-radius btn-primary btn-play"><i
class="fas fa-play mr-2"></i>Watch now</a>
<div class="dr-fav" id="watch-list-content">
<?php } ?>
<div class="dr-fav" id="watch-list-content">
<?php if(isset($_COOKIE['userID'])){?>
<?php
$watchLater = mysqli_query($conn, "SELECT * FROM `watch_later` WHERE (user_id,anime_id) = ('$user_id','$url')");
$watchLater = mysqli_fetch_assoc($watchLater);
if(isset($watchLater['anime_id'])){
$anime_id = $watchLater['anime_id'];
}else{
$anime_id = null;
}
if($anime_id == null){ ?>
<a id="addToList" class="btn btn-radius btn-light"
animeId="<?=$url?>"> <i class='fas fa-plus mr-2'></i> Add to
List </a>
<script>
let btn = document.querySelector('#addToList');
btn.addEventListener("click", () => {
let btnValue = btn.getAttribute('animeId');
$.post('../user/ajax/watchlist.php', {
btnValue: btnValue
}, (response) => {
btn.innerHTML = response;
});
});
</script>
<?php }elseif($anime_id == $url){ ?>
<a id="addToList" class="btn btn-radius btn-light"
animeId="<?=$url?>"> <i class='fas fa-minus mr-2'></i> Remove From
List </a>
<script>
let btn = document.querySelector('#addToList');
btn.addEventListener("click", () => {
let btnValue = btn.getAttribute('animeId');
$.post('../user/ajax/watchlist.php', {
btnValue: btnValue
}, (response) => {
btn.innerHTML = response;
});
});
</script>
<?php }?>
<?php } ?>
<?php if(!isset($_COOKIE['userID'])){?>
<a href="<?=$websiteUrl?>/user/login?animeId=<?=$url?>"
class="btn btn-radius btn-light"> <i
class='fas fa-plus mr-2'></i> Login to Add </a>
<?php } ?>
</div>
</div>
<div class="film-description m-hide">
<div class="text"><?=$getAnime['synopsis']?></div>
</div>
<div class="film-text m-hide"><?=$websiteTitle?> is a site to watch online anime like <strong><?=$getAnime['name']?></strong> online, or you can even watch <strong><?=$getAnime['name']?></strong> in HD quality</div>
<div class="share-buttons share-buttons-min mt-3">
<div class="share-buttons-block" style="padding-bottom: 0 !important;">
<div class="share-icon"></div>
<div class="sbb-title">
<span>Share Anime</span>
<p class="mb-0">to your friends</p>
</div>
<div class="addthis_inline_share_toolbox"></div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="anisc-info-wrap">
<div class="anisc-info">
<div class="item item-title w-hide">
<span class="item-head">Overview:</span>
<div class="text"><?=$getAnime['synopsis']?></div>
</div>
<div class="item item-title">
<span class="item-head">Other names:</span> <span class="name"><?=$getAnime['othername']?></span>
</div>
<div class="item item-title">
<span class="item-head">Language:</span>
<span class="name">
<?php $str = $getAnime['name'];
$last_word_start = strrpos ( $str , " ") + 1;
$last_word_end = strlen($str) - 1;
$last_word = substr($str, $last_word_start, $last_word_end);
if ($last_word == "(Dub)"){echo "Dubbed";} else {echo "Subbed";}
?>
</span>
</div>
<div class="item item-title">
<span class="item-head">Episodes:</span> <span class="name"><?php echo count($getAnime['episode_id'])?></span>
</div>
<div class="item item-title">
<span class="item-head">Release Year:</span> <span class="name"><?=$getAnime['released']?></span>
</div>
<div class="item item-title">
<span class="item-head">Type:</span> <span class="name"><?=$getAnime['type']?></span>
</div>
<div class="item item-title">
<span class="item-head">Status:</span> <a href="<?php if ($getAnime['status'] == "Completed") {echo "/status/completed";} else {echo "/status/ongoing";}?>"><?=$getAnime['status']?></a>
</div>
<div class="item item-list">
<span class="item-head">Genres:</span>
<?php
// Split genres string into an array using comma and optional whitespace as delimiter
$genresArray = array_map('trim', explode(',', $getAnime['genres']));
// Loop through each genre in the array
foreach($genresArray as $genre) {
// Trim any extra whitespace
$genre = trim($genre);
if (!empty($genre)) { // Check if genre is not empty
?>
<a href="<?=$websiteUrl?>/genre/<?=strtolower(str_replace(" ", "+", $genre))?>"><?=$genre?></a>
<?php
}
}
?>
</div>
<div class="film-text w-hide"><?=$websiteTitle?> is a site to watch online anime like <strong><?=$getAnime['name']?></strong> online, or you can even watch <strong><?=$getAnime['name']?></strong> in HD quality</div>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="main-content">
<section class="block_area block_area-comment">
<div class="block_area-header block_area-header-tabs">
<div class="float-left bah-heading mr-4">
<h2 class="cat-heading">Comments</h2>
</div>
<div class="clearfix"></div>
</div>
<div class="tab-content">
<?php include('./_php/disqus.php'); ?>
</div>
</section>
<?php include('./_php/recent-releases.php'); ?>
<div class="clearfix"></div>
</div>
<?php include('./_php/sidenav.php'); ?>
<div class="clearfix"></div>
</div>
</div>
<?php include('./_php/footer.php'); ?>
<div id="mask-overlay"></div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js"></script>
<script type="text/javascript" src="<?=$websiteUrl?>/files/js/app.js"></script>
<script type="text/javascript" src="<?=$websiteUrl?>/files/js/comman.js"></script>
<script type="text/javascript" src="<?=$websiteUrl?>/files/js/movie.js"></script>
<link rel="stylesheet" href="<?=$websiteUrl?>/files/css/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="<?=$websiteUrl?>/files/js/function.js"></script>
</div>
</body>
</html>