-
Notifications
You must be signed in to change notification settings - Fork 0
/
apaslider.php
526 lines (410 loc) · 15.5 KB
/
apaslider.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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
<?php
/*
Plugin Name: apaslider
Plugin URI: doggydev.ir
Version: 2.4
Description: a plugin for aparat videos
Author: parazok (parsa yadpa)
Author URI: doggydev.ir/parazok
License: MIT
*/
/*
* just for debugging easier
* */
function debug_to_console( $data ) {
$output = $data;
if ( is_array( $output ) ) {
$output = implode( ',', $output );
}
echo "<script>console.log('Debug Objects: " . $output . "' );</script>";
}
/**
* Activate the plugin.
*/
function apaslider_activate() {
// Trigger our function that registers the custom post type plugin.
apaslider_setup_post_type();
// Clear the permalinks after the post type has been registered.
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'apaslider_activate' );
/**
* Deactivation hook.
*/
function apaslider_deactivate() {
// Unregister the post type, so the rules are no longer in memory.
unregister_post_type( 'apaslider' );
// Clear the permalinks to remove our post type's rules from the database.
flush_rewrite_rules();
}
register_deactivation_hook( __FILE__, 'apaslider_deactivate' );
/**
* Register the 'apaslider' custom post type
*/
function apaslider_setup_post_type() {
$labels = array(
'name' => 'ویدیوهای آپارات',
'singular_name' => 'ویدیو',
'menu_name' => 'ویدیوهای آپارات',
'name_admin_bar' => 'ویدیوی آپارات',
'archives' => 'آرشیو ویدیو ها',
'attributes' => 'ویژگی های ویدیو',
'parent_item_colon' => 'ویدیو والد:',
'all_items' => 'همه ویدیو ها',
'add_new_item' => 'ویدیو جدید',
'add_new' => 'ویدیو جدید',
'new_item' => 'ویدیو جدید',
'edit_item' => 'ویرایش ویدیو',
'update_item' => 'آپدیت کردن ویدیو',
'view_item' => 'نمایش ویدیو',
'view_items' => 'نمایش همه ویدیوها',
'search_items' => 'جست و جوی ویدیو',
'not_found' => 'ویدیوی پیدا نشد',
'not_found_in_trash' => 'در سطل زباله یافت نشد',
'featured_image' => 'تصویر شاخص',
'set_featured_image' => 'ثبت تصویر شاخص',
'remove_featured_image' => 'حذف تصویر شاخص',
'use_featured_image' => 'استفاده به عنوان تصویر شاخص',
'insert_into_item' => 'بارگزاری در این ویدیو',
'uploaded_to_this_item' => 'در این آیتم بارگزاری شد',
'items_list' => 'لیست ویدیو ها',
'items_list_navigation' => 'پیمایش لیست ویدیو ها',
'filter_items_list' => 'فیلتر کردن لیست ویدیو ها',
);
$args = array(
'label' => 'ویدیو',
'description' => 'ویدیوهایی که باید در ویدیور آپارات نشان داده شوند',
'labels' => $labels,
'supports' => array( 'title', ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 10,
'menu_icon' => 'dashicons-video-alt3',
'show_in_admin_bar' => false,
'show_in_nav_menus' => false,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'post',
'rewrite' => array( 'slug' => 'videos' ), // my custom slug
);
register_post_type( 'apaslider', $args );
}
add_action( 'init', 'apaslider_setup_post_type', 0 );
/**
* add needed meta box and data to apaslider post type
* */
function apaslider_meta_box() {
$screens = [ 'apaslider', ];
foreach ( $screens as $screen ) {
add_meta_box(
'apaslider', // Unique ID
'ویدیو', // Box title
'apaslider_meta_box_html', // Content callback, must be of type callable
$screen // Post type
);
}
}
add_action( 'add_meta_boxes', 'apaslider_meta_box' );
function apaslider_meta_box_html( $post ) {
$custom = get_post_custom( $post->ID );
// $value = get_post_meta($post->ID, '_apaslider_video_url', true);
$value = $custom['_apaslider_video_url'][0];
$is_students_review = $custom['_apaslider_is_std_rev'][0];
$img = $custom['_apaslider_img'][0];
// debug_to_console($value);
// debug_to_console($is_students_review);
?>
<label for='apaslider_video_url_input' style='font-size: large;'>آدرس ویدیو آپارات را وارد کنید:</label>
<input name='apaslider_video_url_input' id='apaslider_video_url_input'
style='width: 100%; margin-top: 1em; padding: 0.5em;'
placeholder='https://www.aparat.com/v/r5RS8'
value='<?php echo $value ?>'/>
<a style='width: 100%; margin-bottom: 1em; padding: 0.5em;' href="<?php echo $value ?>"><?php echo $value ?></a>
<br>
<br>
<label for='apaslider_is_students_review' style='margin-top: 1em; font-size: small;'>اگر این ویدیو از نظرات
دانشجویان است تیک بزنید:</label>
<input name='apaslider_is_students_review' id='apaslider_is_students_review'
style=' padding: 0.5em;'
type="checkbox"
<?php if ( $is_students_review == true ) { ?>checked="checked"<?php } ?>
/>
<?php if ( isset( $img ) ) { ?>
<p>عکس کاور ویدیوی آپارات (بصورت اتوماتیک دریافت میشود):</p>
<img style="width: 400px; margin: 1em; border: 2px dashed #0a4b78" src="<?php echo $img ?>">
<?php
}
}
function apaslider_save( $post_id ) {
if ( array_key_exists( 'apaslider_video_url_input', $_POST ) ) {
update_post_meta(
$post_id,
'_apaslider_video_url',
$_POST['apaslider_video_url_input']
);
}
// if (array_key_exists('apaslider_is_students_review', $_POST)) {
// update_post_meta(
// $post_id,
// '_apaslider_is_std_rev',
// $_POST['apaslider_is_students_review']
// );
// }
update_post_meta( $post_id, "_apaslider_is_std_rev", $_POST["apaslider_is_students_review"] );
if ( array_key_exists( 'apaslider_video_url_input', $_POST ) ) {
$url = $_POST['apaslider_video_url_input'];
$url = explode( "/", $url );
$url = "https://www.aparat.com/etc/api/video/videohash/" . end( $url );
$r = wp_remote_get( $url, array() );
$body = wp_remote_retrieve_body( $r );
update_post_meta( $post_id, "_apaslider_img", json_decode( $body, true )["video"]["big_poster"] );
}
return $post_id;
}
add_action( 'save_post', 'apaslider_save' );
/**
* short code
* */
function apaslider_shortcode( $atts = array(), $content = null ) {
// $content = do_shortcode( $content );
// echo plugin_dir_url( __FILE__ ) . 'public/img/play-circle.png';
// explode("/",$attrs[""])
//
// $args = array(
// 'post_type' => 'post',
// 'meta_query' => array(
// 'relation' => 'AND',
// array(
// 'key' => 'color',
// 'value' => array('red', 'orange'),
// 'compare' => 'IN',
// ),
// array(
// 'key' => 'featured',
// 'value' => '1',
// 'compare' => '=',
// ),
// ),
// );
$args = array(
'post_type' => 'apaslider',
'meta_key' => '_apaslider_is_std_rev',
'meta_value' => 'on'
);
$the_query = new WP_Query( $args );
$urls = array();
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) :
$the_query->the_post();
$url = get_post_meta( get_the_ID(), '_apaslider_video_url', false )[0];
$url = explode( "/", $url );
$urls[] = end( $url );
endwhile;
wp_reset_postdata();
else :
return "<p>هیچ ویدیوی آپاراتی وجود ندارد</p>";
endif;
$xml = "";
ob_start();
?>
<style>
.h_iframe-aparat_embed_frame {
position: relative;
background: #FFFFFF;
border: 3px solid #FAFAFA;
box-sizing: border-box;
box-shadow: 0px 4px 49px rgba(0, 0, 0, 0.1);
border-radius: 20px;
overflow: hidden;
width: 90%;
height: 100%;
}
.h_iframe-aparat_embed_frame .ratio {
display: block;
width: 100%;
height: auto
}
.h_iframe-aparat_embed_frame iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.apaslider_container {
background-color: #616060;
width: 100vw;
align-items: center;
text-align: -webkit-center;
}
.apaslider_content {
display: flex;
align-content: center;
align-items: center;
justify-content: space-evenly;
flex-direction: row-reverse;
color: white;
flex-wrap: wrap;
/*direction: ltr;*/
max-width: 1140px;
padding: 3em 0 6em 0;
}
.apaslider_slider {
width: 60%;
display: flex;
align-content: stretch;
justify-content: center;
align-items: center;
margin-left: -30px;
}
.apaslider_discription_container {
width: 40%;
}
.apaslider_discription {
overflow: hidden;
max-width: 450px;
}
.apaslider_discription > h2 {
font-weight: 700;
font-size: 24px;
line-height: 38px;
color: white;
}
.apaslider_discription > p {
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 23px;
text-align: right;
font-family: 'IRANSans';
color: #EAEAEA;
}
.apaslider_left, .apaslider_right {
cursor: pointer;
margin: 0 1em;
}
.apaslider_more_video,
.apaslider_more_video > a {
font-family: 'IRANSans';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 25px;
/* identical to box height */
text-align: right;
color: #B6CBF2;
}
</style>
<div class="apaslider_container">
<div class="apaslider_content">
<div class="apaslider_slider">
<img src='<?php echo plugin_dir_url( __FILE__ ) . "public/img/r.png" ?>' class="apaslider_left">
<div class='h_iframe-aparat_embed_frame'>
</div>
<img src='<?php echo plugin_dir_url( __FILE__ ) . "public/img/l.png" ?>' class="apaslider_right">
</div>
<div class="apaslider_discription_container">
<div class="apaslider_discription">
<h2 style="text-align: right">نظرات دانشجویان ما درباره سفیرساعی</h2>
<div style="width: 100%;height: 2px; background: #FF1D25; margin-left: 2em;"></div>
<p style="text-align: right">سالها تجربه در ارائه خدمات اعزام دانشجو سبب شده است که سفیرساعی خانواده
ای به
وسعت ایران عزیز داشته باشد.
عزیزانی که از نقاط مختلف کشور به ما اعتماد کردند و در حال حاضر در مراکز معتبر آموزشی دنیا تحصیل
می کنند
و مایه مباحات ماست نظراتی که درباره ما ثبت نموده اند.</p>
<p style="text-align: left;" class="apaslider_more_video">
<a
href="<?php echo get_post_type_archive_link( "apaslider" ) ?>"
>ویدیوهای بیشتر</a>
</p>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
var urls = <?php echo json_encode( array_map( function ( $url ) {
return 'https://www.aparat.com/video/video/embed/videohash/' . $url . '/vt/frame';
}, $urls ) ) ?> ;
function add_iframe(index) {
var iframe_container = $(".h_iframe-aparat_embed_frame");
iframe_container.empty();
// var iframe_html = "<iframe src=" + + " allowfullscreen='false' webkitallowfullscreen='false' mozallowfullscreen='false'></iframe>";
iframe_container.append("<span style='display:block;padding-top:57%'></span>");
$('<iframe />', {
name: 'frame1',
id: 'frame1',
src: urls[index]
}).appendTo(iframe_container);
}
var index = 0;
$(document).ready(function () {
var length = urls.length;
add_iframe(0);
$(".apaslider_left").click(function () {
if (index > 0)
index--;
else
index = length - 1;
add_iframe(index);
console.log("clike left", index);
});
$(".apaslider_right").click(function () {
if (index < length - 1)
index++;
else
index = 0;
add_iframe(index);
console.log("clike right", index);
});
});
</script>
<?php
$xml .= ob_get_clean();
return $xml;
}
add_shortcode( 'apaslider', 'apaslider_shortcode' );
/**
* taxonomy
* */
/*
//hook into the init action and call create_topics_nonhierarchical_taxonomy when it fires
add_action( 'init', 'create_topics_nonhierarchical_taxonomy', 0 );
function create_topics_nonhierarchical_taxonomy() {
// Labels part for the GUI
$labels = array(
'name' => _x( 'نوع', 'taxonomy general name' ),
'singular_name' => _x( 'نوع', 'taxonomy singular name' ),
'search_items' => __( 'جست و جو' ),
'popular_items' => __( 'محبوب ها' ),
'all_items' => __( 'همهی انواع ویدیو ها' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'ویرایش نوع' ),
'update_item' => __( 'بروز رسانی نوع' ),
'add_new_item' => __( 'اضافه کردن یک نوع جدید' ),
'new_item_name' => __( 'اضافه کردن نام جدید' ),
'separate_items_with_commas' => __( 'مقادیر را با ویرگول جدا کنید' ),
'add_or_remove_items' => __( 'افزودن یا حذف نوع ها' ),
'choose_from_most_used' => __( 'انتخاب از بیشترین استفاده شده ها' ),
'menu_name' => __( 'انواع ویدیوی آپارات' ),
);
// Now register the non-hierarchical taxonomy like tag
register_taxonomy('aparat-types','apaslider',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_in_rest' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
// 'rewrite' => array( 'slug' => 'topic' ),
));
}
*/
?>