Subversion Repository Public Repository

wpbsav

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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
<?php

class Gallery
{

    private $posts = array();

    public function __construct()
    {
        wp_register_script( 'ajax_gallery', get_template_directory_uri().'/js/gallery.min.js' );
        wp_register_script( 'blockui', get_template_directory_uri().'/js/blockui.js' );
        wp_enqueue_script('ajax_gallery');
        wp_enqueue_script('blockui');
        wp_localize_script(
            'ajax_gallery',
            'galleryAjax',
            array(
                'url'   => admin_url( 'admin-ajax.php' ),
                'sagrera' => 'actuaciones-sagrera',
                'sandreu' => 'actuaciones-sandreu',
                'videos' => 'videos'
            )
        );
        add_action('init', array(&$this, 'init_gallery'));
    }

    public function init_gallery()
    {
        add_action( 'wp_ajax_actuacions', array( &$this, 'search_actuacions' ) );
        add_action( 'wp_ajax_nopriv_actuacions', array( &$this, 'search_actuacions' ) );
        add_action( 'wp_ajax_load_gallery', array( &$this, 'reload_gallery' ) );
        add_action( 'wp_ajax_nopriv_load_gallery', array( &$this, 'reload_gallery' ) );
        add_action( 'wp_ajax_load_childrens_gallery', array( &$this, 'load_childrens_gallery' ) );
        add_action( 'wp_ajax_nopriv_load_childrens_gallery', array( &$this, 'load_childrens_gallery' ) );
    }

    public function search_actuacions()
    {
        if( isset( $_GET["type"] ) && !empty( $_GET["type"] ) )
        {
            $type = explode("-",$_GET["type"]);
            $type = sanitize_text_field($type[0]);
            $title = $_GET["title"];
            $lang = sanitize_text_field($_GET["language"]);
            new GalleryActuacionsFactory( $lang, $title, $type );
            die();
        }
    }

    public function reload_gallery()
    {
        $type = sanitize_text_field($_GET["type"]);
        $lang = sanitize_text_field($_GET["language"]) === "CA" ? "cat" : "es";

        if( $type == "videos" )
        {
            new GalleryVideoFactory( $type, $lang, null );
        }
        else
        {
            new GalleryFactory( $type, $lang, '_loadGallery', null );
        }
    }

    public function load_childrens_gallery()
    {
        $type = sanitize_text_field($_GET["type"]);
        $id = sanitize_text_field($_GET["id"]);
        $lang = sanitize_text_field($_GET["language"]) === "CA" ? "cat" : "es";

        if( $type === "videos" )
        {
            new GalleryVideoFactory( $type, $lang, $id );
        }
        else
        {
            new GalleryFactory( $type, $lang, '_loadChildrensGallery', $id );
        }

    }
}

class GalleryActuacionsFactory
{
    public function __construct( $lang, $title, $type )
    {
        global $wpdb;

        $querystr = "
            SELECT wposts.ID, wposts.post_title, wposts.post_type
            FROM $wpdb->posts wposts
            WHERE wposts.post_type = 'actuaciones-{$type}'
            AND wposts.post_title = '{$title}'
            AND wposts.post_status = 'publish'
         ";

         $post = $wpdb->get_results($querystr, OBJECT);

         $qry = "
             SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type, p.post_title, p.post_content
             FROM $wpdb->posts p
             JOIN $wpdb->postmeta pm on p.ID = pm.post_id
             WHERE p.post_status = 'publish'
             AND p.post_parent = {$post[0]->ID}
             AND (
                meta_key = 'wpcf-img-gallery'
                OR meta_key = 'wpcf-title-{$lang}-gallery'
                OR meta_key = 'wpcf-desc-{$lang}-gallery'
                OR meta_key = 'wpcf-videos-gallery'
                OR meta_key = 'wpcf-date-gallery'
             )
             ORDER BY p.post_date ASC
         ";

         $childrens = $wpdb->get_results($qry, OBJECT);

         if( $post != NULL && $childrens != NULL )
         {
             $metaChildrens = array();
             foreach( $childrens as $children )
             {
                 $key = str_replace(
                    array( "wpcf-title-{$lang}-gallery", "wpcf-desc-{$lang}-gallery", "wpcf-img-gallery", "wpcf-videos-gallery", "wpcf-date-gallery"),
                    array( "title", "desc", "img", "video", "date"),
                    $children->meta_key
                 );

                 if( count(explode("<!--:-->", $children->post_title)) > 1)
                 {
                     $title = explode("<!--:-->", $children->post_title);
                     if ( $lang === "CA" )
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[0]
                         );
                     }
                     else
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[1]
                         );
                     }
                 }

                 if( count(explode("<!--:-->", $children->post_content)) > 1)
                 {
                     $content = explode("<!--:-->", $children->post_content);
                     if ( $lang === "CA" )
                     {
                         $content = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $content[0]
                         );
                     }
                     else
                     {
                         $content = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $content[1]
                         );
                     }
                 }

                 $metaChildrens[$children->ID][$key] = array( "value" => $children->meta_value );
                 $metaChildrens[$children->ID]["post_type"] = $children->post_type;
                 $metaChildrens[$children->ID]["title"] = array( "value" => $title);
                 $metaChildrens[$children->ID]["desc"] = array( "value" => $content);
             }
             wp_send_json_success( array( "parent" => $post, "childrens" => $metaChildrens ) );
         }
         else
         {
             wp_send_json_error();
         }
         die();
    }
}

class GalleryVideoFactory
{
    public function __construct( $type, $lang, $id )
    {

        if( $id !== null )
        {
            $this->_loadChildrensVideoGallery( $type, $lang, $id );
            die();
        }

        global $wpdb;

        $querystr = "
            SELECT wposts.ID, wposts.post_title, wposts.post_type
            FROM $wpdb->posts wposts
            WHERE wposts.post_type = '{$type}'
            AND wposts.post_status = 'publish'
         ";

         //obtenemos todos los resultados del sidebar que pertenecen a este custom-post-type
         $parents = $wpdb->get_results($querystr, OBJECT);

         $first = $parents[0]->ID; //obtenemos el primer id padre

         $qry = "
             SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
             FROM $wpdb->posts p
             JOIN $wpdb->postmeta pm on p.ID = pm.post_id
             WHERE p.post_status = 'publish'
             AND p.ID = {$first}
             AND (
                  meta_key = 'wpcf-video-{$lang}'
             )
             ORDER BY p.ID DESC
         ";

         $childrens = $wpdb->get_results($qry, OBJECT);

         if( $parents != NULL && $childrens != NULL )
         {
             $metaChildrens = array();
             foreach( $childrens as $children )
             {
                 if( count(explode("<!--:-->", $parents[0]->post_title)) > 1)
                 {
                     $title = explode("<!--:-->", $parents[0]->post_title);
                     if ( $lang === "CA" )
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[0]
                         );
                     }
                     else
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[1]
                         );
                     }
                 }
                 $metaChildrens[] = array( "video" => $children->meta_value, "id" => $children->ID, "title" => $title );
             }
             wp_send_json_success( array( "parents" => $parents, "childrens" => $metaChildrens ) );
         }
         else
         {
             wp_send_json_error();
         }
         die();
    }

    private function _loadChildrensVideoGallery( $type, $lang, $id )
    {
        global $wpdb;


        $querystr = "
            SELECT wposts.ID, wposts.post_title, wposts.post_type
            FROM $wpdb->posts wposts
            WHERE wposts.post_type = '{$type}'
            AND wposts.ID = {$id}
            AND wposts.post_status = 'publish'
         ";

         //obtenemos todos los resultados del sidebar que pertenecen a este custom-post-type
         $parent = $wpdb->get_results($querystr, OBJECT);

         $qry = "
             SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
             FROM $wpdb->posts p
             JOIN $wpdb->postmeta pm on p.ID = pm.post_id
             WHERE p.post_status = 'publish'
             AND p.ID = {$id}
             AND (
                  meta_key = 'wpcf-video-{$lang}'
             )
             ORDER BY p.ID DESC
         ";

         $childrens = $wpdb->get_results($qry, OBJECT);

         if( $parent != NULL && $childrens != NULL )
         {
             $metaChildrens = array();
             foreach( $childrens as $children )
             {
                 if( count(explode("<!--:-->", $parent[0]->post_title)) > 1)
                 {
                     $title = explode("<!--:-->", $parent[0]->post_title);
                     if ( $lang === "cat" )
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[0]
                         );
                     }
                     else
                     {
                         $title = str_replace(
                            array( "<!--:CA-->", "<!--:es-->"),
                            array( "", ""),
                            $title[1]
                         );
                     }
                 }
                 $metaChildrens[] = array( "video" => $children->meta_value, "id" => $children->ID, "title" => $title );
             }
             wp_send_json_success( array( "parent" => $parent, "childrens" => $metaChildrens ) );
         }
         else
         {
             wp_send_json_error();
         }
         die();
    }
}

class GalleryFactory
{

    private $posts;

    public function __construct( $type, $lang, $method, $id )
    {

        $this->$method( $type, $lang, $id );

        // foreach( $parents as $parent)
        // {
        //     $qry = "
        //        SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
        //        FROM $wpdb->posts p
        //        JOIN $wpdb->postmeta pm on p.ID = pm.post_id
        //        WHERE p.post_parent = {$parent->ID}
        //        AND p.post_status = 'publish'
        //        AND (
        //             meta_key = 'wpcf-img-gallery' OR meta_key = 'wpcf-title-{$lang}-gallery' OR meta_key = 'wpcf-desc-{$lang}-gallery' OR meta_key = 'wpcf-videos-gallery'
        //        )
        //        ORDER BY p.ID DESC
        //     ";
        //
        //     $childrens = $wpdb->get_results($qry, OBJECT);
        //
        //     $metaChildrens = array();
        //     $date = "";
        //     foreach( $childrens as $children )
        //     {
        //         $key = str_replace(
        //            array( "wpcf-title-{$lang}-gallery", "wpcf-desc-{$lang}-gallery", "wpcf-img-gallery", "wpcf-videos-gallery"),
        //            array( "title", "desc", "img", "video"),
        //            $children->meta_key
        //         );
        //
        //         if( $key == "img" || $key == "video")
        //         {
        //             $id = explode(".", end(explode('/',$children->meta_value)))[0];
        //             $date = $wpdb->get_row( "SELECT date FROM multimedia WHERE ID = $id", OBJECT );
        //             add_post_meta( $children->ID, 'wpcf-date-gallery', $date->date, false );
        //         }
        //
        //         //$metaChildrens[$children->ID][$key] = array( "value" => $children->meta_value, "date" => $date );
        //     }
        // }
    }

    private function _loadGallery( $type, $lang, $id )
    {
        global $wpdb;

        $querystr = "
            SELECT wposts.ID, wposts.post_title, wposts.post_type
            FROM $wpdb->posts wposts
            WHERE wposts.post_type = '{$type}'
            AND wposts.post_status = 'publish'
         ";

         //obtenemos todos los resultados del sidebar que pertenecen a este custom-post-type
         $parents = $wpdb->get_results($querystr, OBJECT);

         $first = $parents[0]->ID; //obtenemos el primer id padre

         $qry = "
            SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
            FROM $wpdb->posts p
            JOIN $wpdb->postmeta pm on p.ID = pm.post_id
            WHERE p.post_parent = {$first}
            AND p.post_status = 'publish'
            AND (
                 meta_key = 'wpcf-img-gallery'
                 OR meta_key = 'wpcf-title-{$lang}-gallery'
                 OR meta_key = 'wpcf-desc-{$lang}-gallery'
                 OR meta_key = 'wpcf-videos-gallery'
                 OR meta_key = 'wpcf-date-gallery'
            )
            ORDER BY p.ID DESC
         ";

         $childrens = $wpdb->get_results($qry, OBJECT);

         if( $parents != NULL && $childrens != NULL )
         {
             $metaChildrens = array();
             foreach( $childrens as $children )
             {
                 $key = str_replace(
                    array( "wpcf-title-{$lang}-gallery", "wpcf-desc-{$lang}-gallery", "wpcf-img-gallery", "wpcf-videos-gallery", "wpcf-date-gallery"),
                    array( "title", "desc", "img", "video", "date"),
                    $children->meta_key
                 );
                 $metaChildrens[$children->ID][$key] = array( "value" => $children->meta_value );
             }
             wp_send_json_success( array( "parents" => $parents, "childrens" => $metaChildrens ) );
         }
         else
         {
             wp_send_json_error();
         }
         die();
    }

    private function _loadChildrensGallery( $type, $lang, $id )
    {
        global $wpdb;

        $querystr = "
            SELECT wposts.ID, wposts.post_title, wposts.post_type
            FROM $wpdb->posts wposts
            WHERE wposts.ID = {$id}
            AND wposts.post_status = 'publish'
         ";

         //obtenemos todos los resultados del sidebar que pertenecen a este custom-post-type
         $parent = $wpdb->get_results($querystr, OBJECT);

         $qry = "
            SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
            FROM $wpdb->posts p
            JOIN $wpdb->postmeta pm on p.ID = pm.post_id
            WHERE p.post_parent = {$id}
            AND p.post_status = 'publish'
            AND (
                 meta_key = 'wpcf-img-gallery'
                 OR meta_key = 'wpcf-title-{$lang}-gallery'
                 OR meta_key = 'wpcf-desc-{$lang}-gallery'
                 OR meta_key = 'wpcf-videos-gallery'
                 OR meta_key = 'wpcf-date-gallery'
            )
            ORDER BY p.ID DESC
         ";

         $childrens = $wpdb->get_results($qry, OBJECT);

         if( $parent != NULL && $childrens != NULL )
         {
             $metaChildrens = array();
             foreach( $childrens as $children )
             {
                 $key = str_replace(
                    array( "wpcf-title-{$lang}-gallery", "wpcf-desc-{$lang}-gallery", "wpcf-img-gallery", "wpcf-videos-gallery", "wpcf-date-gallery"),
                    array( "title", "desc", "img", "video", "date"),
                    $children->meta_key
                 );
                 $metaChildrens[$children->ID][$key] = array( "value" => $children->meta_value );
             }
             wp_send_json_success( array( "parent" => $parent, "childrens" => $metaChildrens ) );
         }
         else
         {
             wp_send_json_error();
         }
         die();
    }
}

class GalleryDecorator
{
    // foreach( $parents as $parent)
    // {
    //     $qry = "
    //        SELECT p.ID, pm.meta_key, pm.meta_value, p.post_date, p.post_type
    //        FROM $wpdb->posts p
    //        JOIN $wpdb->postmeta pm on p.ID = pm.post_id
    //        WHERE p.post_parent = {$parent->ID}
    //        AND p.post_status = 'publish'
    //        AND (
    //             meta_key = 'wpcf-img-gallery' OR meta_key = 'wpcf-title-{$lang}-gallery' OR meta_key = 'wpcf-desc-{$lang}-gallery' OR meta_key = 'wpcf-videos-gallery'
    //        )
    //        ORDER BY p.ID DESC
    //     ";
    //
    //     $childrens = $wpdb->get_results($qry, OBJECT);
    //
    //     $metaChildrens = array();
    //     $date = "";
    //     foreach( $childrens as $children )
    //     {
    //         $key = str_replace(
    //            array( "wpcf-title-{$lang}-gallery", "wpcf-desc-{$lang}-gallery", "wpcf-img-gallery", "wpcf-videos-gallery"),
    //            array( "title", "desc", "img", "video"),
    //            $children->meta_key
    //         );
    //
    //         if( $key == "img" || $key == "video")
    //         {
    //             $id = explode(".", end(explode('/',$children->meta_value)))[0];
    //             $date = $wpdb->get_row( "SELECT date FROM multimedia WHERE ID = $id", OBJECT );
    //             add_post_meta( $parent->ID, 'wpcf-date-gallery', $date->date, false );
    //         }
    //
    //         //$metaChildrens[$children->ID][$key] = array( "value" => $children->meta_value, "date" => $date );
    //     }
    // }
}

new Gallery;

// function load_coords()
// {
//     $location = $_GET["location"];
//     if( $location === 1 ) //sagrera
//     {
//         echo json_encode(array(
//             array("x" =>  215, "y" => 170),
//             array("x" =>  559, "y" => 242),
//             array("x" =>  180, "y" => 141),
//             array("x" =>  435, "y" => 182),
//             array("x" =>  377, "y" => 234),
//             array("x" =>  652, "y" => 249)
//         ));
//     }
//     else if( $location === 2 ) //sant andreu
//     {
//         echo json_encode(array(
//             array("x" =>  326, "y" => 105),
//             array("x" =>  188, "y" => 147),
//             array("x" =>  440, "y" => 120),
//             array("x" =>  379, "y" => 141)
//         ));
//     }
//     die();
// }
//
// add_action( 'wp_ajax_coords', 'load_coords' );
// add_action( 'wp_ajax_nopriv_coords', 'load_coords' );

Commits for wpbsav/SagreraWP/wp-content/themes/bsav/includes/Gallery.php

Diff revisions: vs.
Revision Author Commited Message
59 Diff Diff iparra picture iparra Mon 04 May, 2015 09:16:10 +0000

Modificado archivo gallery.js por gallery.min.js

48 Diff Diff iparra picture iparra Thu 30 Apr, 2015 14:53:10 +0000

Actualizado Gallery.php

42 Diff Diff iparra picture iparra Thu 30 Apr, 2015 09:35:43 +0000

Actualizados métodos de la galería

19 iparra picture iparra Thu 23 Apr, 2015 09:21:29 +0000

Añadida Gallery.php