@@ -325,14 +325,23 @@ function cache_search_json()
325
325
* @rest api接口路径:https://sakura.2heng.xin/wp-json/sakura/v1/image/cover
326
326
*/
327
327
function cover_gallery () {
328
- global $ wpdb ,$ sakura_image_array ;
329
- $ img_array = json_decode ($ sakura_image_array , true );
330
- $ img = array_rand ($ img_array );
331
- $ img_domain = akina_option ('cover_cdn ' ) ? akina_option ('cover_cdn ' ) : get_template_directory_uri ();
332
- if (strpos ($ _SERVER ['HTTP_ACCEPT ' ], 'image/webp ' )) {
333
- $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["webp " ][0 ];
334
- } else {
335
- $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["jpeg " ][0 ];
328
+ if (akina_option ('cover_cdn_options ' )=="type_2 " ){
329
+ $ img_array = glob (get_template_directory () . "/manifest/gallary/*.{gif,jpg,png} " ,GLOB_BRACE );
330
+ $ img = array_rand ($ img_array );
331
+ $ imgurl = trim ($ img_array [$ img ]);
332
+ $ imgurl = str_replace (get_template_directory (), get_template_directory_uri (), $ imgurl );
333
+ }elseif (akina_option ('cover_cdn_options ' )=="type_3 " ){
334
+ $ imgurl = akina_option ('cover_cdn ' );
335
+ }else {
336
+ global $ sakura_image_array ;
337
+ $ img_array = json_decode ($ sakura_image_array , true );
338
+ $ img = array_rand ($ img_array );
339
+ $ img_domain = akina_option ('cover_cdn ' ) ? akina_option ('cover_cdn ' ) : get_template_directory_uri ();
340
+ if (strpos ($ _SERVER ['HTTP_ACCEPT ' ], 'image/webp ' )) {
341
+ $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["webp " ][0 ];
342
+ } else {
343
+ $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["jpeg " ][0 ];
344
+ }
336
345
}
337
346
$ data = array ('cover image ' );
338
347
$ response = new WP_REST_Response ($ data );
@@ -346,51 +355,42 @@ function cover_gallery() {
346
355
* @rest api接口路径:https://sakura.2heng.xin/wp-json/sakura/v1/image/feature
347
356
*/
348
357
function feature_gallery () {
349
- global $ wpdb ,$ sakura_image_array ;
350
- $ img_array = json_decode ($ sakura_image_array , true );
351
- $ img = array_rand ($ img_array );
352
- $ img_domain = akina_option ('cover_cdn ' ) ? akina_option ('cover_cdn ' ) : get_template_directory_uri ();
353
- if (strpos ($ _SERVER ['HTTP_ACCEPT ' ], 'image/webp ' )) {
354
- $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["webp " ][0 ];
355
- } else {
356
- $ imgurl = $ img_domain . "/manifest/ " . $ img_array [$ img ]["jpeg " ][0 ];
357
- }
358
- $ data = array ('cover image ' );
359
- $ response = new WP_REST_Response ($ data );
360
- $ response ->set_status (302 );
361
- $ response ->header ('Location ' , $ imgurl );
362
- return $ response ;
358
+ return cover_gallery ();
363
359
}
364
360
365
361
/*
366
362
* update database rest api
367
363
* @rest api接口路径:https://sakura.2heng.xin/wp-json/sakura/v1/database/update
368
364
*/
369
365
function update_database () {
370
- global $ wpdb ;
371
- $ sakura_table_name = $ wpdb ->base_prefix .'sakura ' ;
372
- $ img_domain = akina_option ('cover_cdn ' ) ? akina_option ('cover_cdn ' ) : get_template_directory_uri ();
373
- $ manifest = file_get_contents ($ img_domain . "/manifest/manifest.json " );
374
- if ($ manifest ) {
375
- $ manifest = array (
376
- "mate_key " => "manifest_json " ,
377
- "mate_value " => $ manifest
378
- );
379
- $ time = array (
380
- "mate_key " => "json_time " ,
381
- "mate_value " => date ("Y-m-d H:i:s " ,time ())
382
- );
383
-
384
- $ wpdb ->query ("DELETE FROM `wp_sakura` WHERE `mate_key` ='manifest_json' " );
385
- $ wpdb ->query ("DELETE FROM `wp_sakura` WHERE `mate_key` ='json_time' " );
386
- $ wpdb ->insert ($ sakura_table_name ,$ manifest );
387
- $ wpdb ->insert ($ sakura_table_name ,$ time );
388
- $ output = "manifest.json has been stored into database. " ;
366
+ if (akina_option ('cover_cdn_options ' )=="type_1 " ){
367
+ global $ wpdb ;
368
+ $ sakura_table_name = $ wpdb ->base_prefix .'sakura ' ;
369
+ $ img_domain = akina_option ('cover_cdn ' ) ? akina_option ('cover_cdn ' ) : get_template_directory ();
370
+ $ manifest = file_get_contents ($ img_domain . "/manifest/manifest.json " );
371
+ if ($ manifest ) {
372
+ $ manifest = array (
373
+ "mate_key " => "manifest_json " ,
374
+ "mate_value " => $ manifest
375
+ );
376
+ $ time = array (
377
+ "mate_key " => "json_time " ,
378
+ "mate_value " => date ("Y-m-d H:i:s " ,time ())
379
+ );
380
+
381
+ $ wpdb ->query ("DELETE FROM $ sakura_table_name WHERE `mate_key` ='manifest_json' " );
382
+ $ wpdb ->query ("DELETE FROM $ sakura_table_name WHERE `mate_key` ='json_time' " );
383
+ $ wpdb ->insert ($ sakura_table_name ,$ manifest );
384
+ $ wpdb ->insert ($ sakura_table_name ,$ time );
385
+ $ output = "manifest.json has been stored into database. " ;
386
+ }else {
387
+ $ output = "manifest.json not found, please ensure your url ( $ img_domain) is corrent. " ;
388
+ }
389
+ $ result = new WP_REST_Response ($ output , 200 );
390
+ return $ result ;
389
391
}else {
390
- $ output = " manifest.json not found, please ensure your url is corrent. " ;
392
+ return new WP_REST_Response ( " Invalid access " , 200 ) ;
391
393
}
392
- $ result = new WP_REST_Response ($ output , 200 );
393
- return $ result ;
394
394
}
395
395
396
396
/**
0 commit comments