forked from dxpsite/playflu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
249 lines (201 loc) · 5.51 KB
/
index.php
File metadata and controls
249 lines (201 loc) · 5.51 KB
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
<?php
require_once 'auth/auth.php';
authHTML();
include 'theme/header.php';
?>
<script type="text/javascript">
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<script src="js/jquery.tabledit.min.js"></script>
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="page-header clearfix">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="page-header clearfix">
<h2 class="pull-left">Program</h2>
</div>
<div id="plistapi" style="overflow: auto;max-height: 70vh;">Be patient..<i class="fas fa-cog fa-spin fa-lg"></i></div>
</div>
<div class="col-lg-6">
<div class="page-header clearfix">
<h2 class="pull-left">Preview Stream</h2>
</div>
<div type="button" class="btn btn-default" id="time"></div>
<a href="/shed"><div type="button" class="btn btn-default" id="checkair">Be patient..<i class="fas fa-cog fa-spin fa-lg"></i></div></a>
<hr>
<!--<iframe style="width:600px; height:290px; top:-300px;" allowfullscreen src="https://peerhub.ru/playlist1/embed.html"></iframe>-->
<video id="my_video_1" class="video-js vjs-default-skin vjs-16-9 vjs-big-play-centered" controls autoplay preload="auto" width="640" height="268"
data-setup='{}'>
</video>
<script>
const player = videojs('my_video_1');
player.src({
src: 'https://peerhub.ru/playlist1/index.m3u8?token=O8uYcNBFo0',
type: 'application/x-mpegURL'
});
</script>
</div>
</div>
</div>
</div>
<div class="page-header clearfix">
<h2 class="pull-left">Dashboard</h2>
</div>
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">Search</span>
<input type="text" name="search_text" id="search_text" placeholder="Print any words.." class="form-control" />
</div>
</div>
<br />
<div class="scroll-area" id="result"></div>
<div style="clear:both"></div>
<br />
<br />
<br />
<br />
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>This is a small modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
function show()
{
$.ajax({
url: "/time.php",
cache: false,
success: function(html){
$("#time").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',1000);
});
</script>
<script>
/*$(document).ready(function(){
$("tones").change(function(){
$.ajax({
type: "POST",
url: "test.php",
data: {tones : $("#tones").val(), data:$("#data").val()},
success: function(html){
$("#checkair").html(html);
}
});
return false;
});
});
*/
$(document).ready(function(){
//$("button").click(function(){
$("#plistapi").load("/api/plist3_api.php");
//});
});
$(function() {
setInterval(function() {
$.ajax({
type: "GET",
url: "/api/plist3_api.php",
success: function(html) {
$("#plistapi").html(html);
/* $.ajax({
url: '/api/plist3_api.php?action=save',
type: 'GET',
success: function(response) {
alert('Saved!')
}
})*/
}
});
}, 5000);
});
$(function() {
setInterval(function() {
$.ajax({
type: "GET",
url: "/api/dashboard_api.php",
success: function(html) {
// html is a string of all output of the server script.
// $("#checkair").fadein(html);
$("#dashapi").html(html);
/* $("#checkair").fadeOut(600, function ()
{
$("#checkair").html(html)
});
$("#checkair").fadeIn(600);
*/
}
});
}, 5000);
});
$(function() {
setInterval(function() {
$.ajax({
type: "GET",
url: "/check_air.php",
success: function(html) {
// html is a string of all output of the server script.
// $("#checkair").fadein(html);
$("#checkair").html(html);
/* $("#checkair").fadeOut(600, function ()
{
$("#checkair").html(html)
});
$("#checkair").fadeIn(600);
*/
}
});
}, 10000);
});
$(document).ready(function(){
load_data();
function load_data(query)
{
$.ajax({
url:"/action_searchf.php",
method:"post",
data:{query:query},
success:function(data)
{
$('#result').html(data);
}
});
}
$('#search_text').keyup(function(){
var search = $(this).val();
if(search != '')
{
load_data(search);
}
else
{
load_data();
}
});
});
</script>