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
|
<?php
// Classes and libraries for module system
//
// webtrees: Web based Family History software
// Copyright (C) 2012 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2010 John Finlay
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
class random_media_WT_Module extends WT_Module implements WT_Module_Block {
// Extend class WT_Module
public function getTitle() {
return /* I18N: Name of a module */WT_I18N::translate('Slide show');
}
// Extend class WT_Module
public function getDescription() {
return /* I18N: Description of the "Slide show" module */ WT_I18N::translate('Random images from the current family tree.');
}
// Implement class WT_Module_Block
public function getBlock($block_id, $template=true, $cfg=null) {
global $ctype, $foundlist, $TEXT_DIRECTION, $WT_IMAGES;
$filter =get_block_setting($block_id, 'filter', 'all');
$controls=get_block_setting($block_id, 'controls', true);
$start =get_block_setting($block_id, 'start', false) || safe_GET_bool('start');
$block =get_block_setting($block_id, 'block', true);
$filters=array(
'avi' =>get_block_setting($block_id, 'filter_avi', false),
'bmp' =>get_block_setting($block_id, 'filter_bmp', true),
'gif' =>get_block_setting($block_id, 'filter_gif', true),
'jpg' =>get_block_setting($block_id, 'filter_jpeg', true),
'jpeg' =>get_block_setting($block_id, 'filter_jpeg', true),
'mp3' =>get_block_setting($block_id, 'filter_mp3', false),
'ole' =>get_block_setting($block_id, 'filter_ole', true),
'pcx' =>get_block_setting($block_id, 'filter_pcx', true),
'pdf' =>get_block_setting($block_id, 'filter_pdf', false),
'png' =>get_block_setting($block_id, 'filter_png', true),
'tiff' =>get_block_setting($block_id, 'filter_tiff', true),
'wav' =>get_block_setting($block_id, 'filter_wav', false),
'audio' =>get_block_setting($block_id, 'filter_audio', false),
'book' =>get_block_setting($block_id, 'filter_book', true),
'card' =>get_block_setting($block_id, 'filter_card', true),
'certificate'=>get_block_setting($block_id, 'filter_certificate', true),
'coat' =>get_block_setting($block_id, 'filter_coat', true),
'document' =>get_block_setting($block_id, 'filter_document', true),
'electronic' =>get_block_setting($block_id, 'filter_electronic', true),
'fiche' =>get_block_setting($block_id, 'filter_fiche', true),
'film' =>get_block_setting($block_id, 'filter_film', true),
'magazine' =>get_block_setting($block_id, 'filter_magazine', true),
'manuscript' =>get_block_setting($block_id, 'filter_manuscript', true),
'map' =>get_block_setting($block_id, 'filter_map', true),
'newspaper' =>get_block_setting($block_id, 'filter_newspaper', true),
'other' =>get_block_setting($block_id, 'filter_other', true),
'painting' =>get_block_setting($block_id, 'filter_painting', true),
'photo' =>get_block_setting($block_id, 'filter_photo', true),
'tombstone' =>get_block_setting($block_id, 'filter_tombstone', true),
'video' =>get_block_setting($block_id, 'filter_video', false),
);
if (WT_DEBUG) {
echo "<br>";print_r($filters);echo "<br>\n";
}
if ($cfg) {
foreach (array('filter', 'controls', 'start', 'filter_avi', 'filter_bmp', 'filter_gif', 'filter_jpeg', 'filter_mp3', 'filter_ole', 'filter_pcx', 'filter_pdf', 'filter_png', 'filter_tiff', 'filter_wav', 'filter_audio', 'filter_book', 'filter_card', 'filter_certificate', 'filter_coat', 'filter_document', 'filter_electronic', 'filter_fiche', 'filter_film', 'filter_magazine', 'filter_manuscript', 'filter_map', 'filter_newspaper', 'filter_other', 'filter_painting', 'filter_photo', 'filter_tombstone', 'filter_video', 'block') as $name) {
if (array_key_exists($name, $cfg)) {
$$name=$cfg[$name];
}
}
}
$medialist = array();
$foundlist = array();
$medialist = get_medialist(false, '', true, true);
$ct = count($medialist);
if ($ct>0) {
$i=0;
$disp = false;
//-- try up to 40 times to get a media to display
while ($i<40) {
$error = false;
$value = array_rand($medialist);
$mediaobject = WT_Media::getInstance($medialist[$value]["XREF"]);
if (WT_DEBUG) {
echo "<br>";print_r($medialist[$value]);echo "<br>\n";
$mediaobject->fileExists('main');
$mediaobject->fileExists('thumb');
echo "<br>";print_r($mediaobject);echo "<br>\n";
echo "Trying ".$mediaobject->getXref()."<br>\n";
}
$links = $medialist[$value]["LINKS"];
$disp = ($mediaobject->fileExists('main') || $mediaobject->isExternal())&& $medialist[$value]["LINKED"] && $medialist[$value]["CHANGE"]!="delete" ;
if (WT_DEBUG && !$disp && !$error) {
$error = true;
echo "<span class=\"error\">".$mediaobject->getXref()." File does not exist, or is not linked to anyone, or is marked for deletion.</span><br>";
}
$disp = $disp && $mediaobject->canDisplayDetails();
if (WT_DEBUG && !$disp && !$error) {
$error = true;
echo "<span class=\"error\">".$mediaobject->getXref()." Failed to pass privacy</span><br>";
}
if ($block && !$mediaobject->isExternal()) {
$disp = $disp && $mediaobject->fileExists('thumb'); // external files are ok w/o thumb
}
if (WT_DEBUG && !$disp && !$error) {$error = true; echo "<span class=\"error\">".$mediaobject->getXref()." thumbnail file could not be found</span><br>";}
$mediaformat=strtolower($mediaobject->getMediaFormat());
if ($mediaformat) {
if (!array_key_exists($mediaformat, $filters) || !$filters[$mediaformat]) {
$disp=false;
}
}
$mediatype=strtolower($mediaobject->getMediaType());
if ($mediatype) {
if (!array_key_exists($mediatype, $filters) || !$filters[$mediatype]) {
$disp=false;
}
}
if (WT_DEBUG && !$disp && !$error) {$error = true; echo "<span class=\"error\">".$mediaobject->getXref()." failed Format or Type filters</span><br>";}
if ($disp && count($links) != 0) {
if ($disp && $filter!="all") {
// Apply filter criteria
$ct = preg_match("/0 (@.*@) OBJE/", $mediaobject->getGedcomRecord(), $match);
$objectID = $match[1];
//-- we could probably use the database for this filter
foreach ($links as $key=>$type) {
$gedrec = find_gedcom_record($key, WT_GED_ID);
$ct2 = preg_match("/(\d) OBJE {$objectID}/", $gedrec, $match2);
if ($ct2>0) {
$objectRefLevel = $match2[1];
if ($filter=="indi" && $objectRefLevel!="1") $disp = false;
if ($filter=="event" && $objectRefLevel=="1") $disp = false;
if (WT_DEBUG && !$disp && !$error) {$error = true; echo "<span class=\"error\">".$mediaobject->getXref()." failed to pass config filter</span><br>";}
}
else $disp = false;
}
}
}
//-- leave the loop if we find an image that works
if ($disp) {
break;
}
//-- otherwise remove the private media item from the list
else {
if (WT_DEBUG) echo "<span class=\"error\">".$mediaobject->getXref()." Will not be shown</span><br>";
unset($medialist[$value]);
}
//-- if there are no more media items, then try to get some more
if (count($medialist)==0) $medialist = get_medialist(false, '', true, true);
$i++;
}
if (!$disp) {
return false;
}
$id=$this->getName().$block_id;
$class=$this->getName().'_block';
if ($ctype=='gedcom' && WT_USER_GEDCOM_ADMIN || $ctype=='user' && WT_USER_ID) {
$title='<i class="icon-admin" title="'.WT_I18N::translate('Configure').'" onclick="modalDialog(\'block_edit.php?block_id='.$block_id.'\', \''.$this->getTitle().'\');"></i>';
} else {
$title='';
}
$title.=$this->getTitle();
$content = "<div id=\"random_picture_container$block_id\">";
if ($controls) {
if ($start) {
$image = "stop";
} else {
$image = "rarrow";
}
$linkNextImage = "<a href=\"#\" onclick=\"jQuery('#block_{$block_id}').load('index.php?ctype={$ctype}&action=ajax&block_id={$block_id}');return false;\"><img src=\"{$WT_IMAGES['rdarrow']}\" alt=\"".WT_I18N::translate('Next image')."\" title=\"".WT_I18N::translate('Next image')."\"></a>";
$content .= "<div class=\"center\" id=\"random_picture_controls$block_id\"><br>";
if ($TEXT_DIRECTION=="rtl") $content .= $linkNextImage;
$content .= "<a href=\"#\" onclick=\"togglePlay(); return false;\">";
if (isset($WT_IMAGES[$image])) $content .= "<img id=\"play_stop\" src=\"{$WT_IMAGES[$image]}\" alt=\"".WT_I18N::translate('Play')."/".WT_I18N::translate('Stop')."\" title=\"".WT_I18N::translate('Play')."/".WT_I18N::translate('Stop')."\">";
else $content .= WT_I18N::translate('Play')."/".WT_I18N::translate('Stop');
$content .= "</a>";
if ($TEXT_DIRECTION=="ltr") $content .= $linkNextImage;
$content .= '</div>'.WT_JS_START.'
var play = false;
function togglePlay() {
if (play) {
play = false;
imgid = document.getElementById("play_stop");
imgid.src = \''.$WT_IMAGES["rarrow"].'\';
}
else {
play = true;
playSlideShow();
imgid = document.getElementById("play_stop");
imgid.src = \''.$WT_IMAGES["stop"].'\';
}
}
function playSlideShow() {
if (play) {
window.setTimeout(\'reload_image()\', 6000);
}
}
function reload_image() {
if (play) {
jQuery(\'#block_'.$block_id.'\').load(\'index.php?ctype='.$ctype.'&action=ajax&block_id='.$block_id.'&start=1\');
}
}
'.WT_JS_END;
}
if ($start) {
$content .= WT_JS_START.'togglePlay();'.WT_JS_END;
}
$content .= "<div class=\"center\" id=\"random_picture_content$block_id\">";
$content .= "<table id=\"random_picture_box\" width=\"100%\"><tr><td valign=\"top\"";
if ($block) $content .= " align=\"center\" class=\"details1\"";
else $content .= " class=\"details2\"";
$content .= " >";
$content .= $mediaobject->displayMedia(array('align'=>'none', 'uselightbox'=>false, 'uselightbox_fallback'=>false));
if ($block) $content .= '<br>';
else $content .= '</td><td class="details2">';
$content .= '<a href="'.$mediaobject->getHtmlUrl().'"><b>'. $mediaobject->getFullName() .'</b></a><br>';
ob_start();
$content .= $mediaobject->printLinkedRecords('normal');
$content .= ob_get_clean();
$content .= "<br><div class=\"indent" . ($TEXT_DIRECTION=="rtl"?"_rtl":"") . "\">";
$content .= print_fact_notes($mediaobject->getGedcomRecord(), "1", false, true);
$content .= "</div>";
$content .= "</td></tr></table>";
$content .= "</div>"; // random_picture_content
$content .= "</div>"; // random_picture_container
if ($template) {
require WT_THEME_DIR.'templates/block_main_temp.php';
} else {
return $content;
}
}
}
// Implement class WT_Module_Block
public function loadAjax() {
return true;
}
// Implement class WT_Module_Block
public function isUserBlock() {
return true;
}
// Implement class WT_Module_Block
public function isGedcomBlock() {
return true;
}
// Implement class WT_Module_Block
public function configureBlock($block_id) {
if (safe_POST_bool('save')) {
set_block_setting($block_id, 'filter', safe_POST('filter', array('indi', 'event', 'all'), 'all'));
set_block_setting($block_id, 'controls', safe_POST_bool('controls'));
set_block_setting($block_id, 'start', safe_POST_bool('start'));
set_block_setting($block_id, 'filter_avi', safe_POST_bool('filter_avi'));
set_block_setting($block_id, 'filter_bmp', safe_POST_bool('filter_bmp'));
set_block_setting($block_id, 'filter_gif', safe_POST_bool('filter_gif'));
set_block_setting($block_id, 'filter_jpeg', safe_POST_bool('filter_jpeg'));
set_block_setting($block_id, 'filter_mp3', safe_POST_bool('filter_mp3'));
set_block_setting($block_id, 'filter_ole', safe_POST_bool('filter_ole'));
set_block_setting($block_id, 'filter_pcx', safe_POST_bool('filter_pcx'));
set_block_setting($block_id, 'filter_pdf', safe_POST_bool('filter_pdf'));
set_block_setting($block_id, 'filter_png', safe_POST_bool('filter_png'));
set_block_setting($block_id, 'filter_tiff', safe_POST_bool('filter_tiff'));
set_block_setting($block_id, 'filter_wav', safe_POST_bool('filter_wav'));
set_block_setting($block_id, 'filter_audio', safe_POST_bool('filter_audio'));
set_block_setting($block_id, 'filter_book', safe_POST_bool('filter_book'));
set_block_setting($block_id, 'filter_card', safe_POST_bool('filter_card'));
set_block_setting($block_id, 'filter_certificate', safe_POST_bool('filter_certificate'));
set_block_setting($block_id, 'filter_coat', safe_POST_bool('filter_coat'));
set_block_setting($block_id, 'filter_document', safe_POST_bool('filter_document'));
set_block_setting($block_id, 'filter_electronic', safe_POST_bool('filter_electronic'));
set_block_setting($block_id, 'filter_fiche', safe_POST_bool('filter_fiche'));
set_block_setting($block_id, 'filter_film', safe_POST_bool('filter_film'));
set_block_setting($block_id, 'filter_magazine', safe_POST_bool('filter_magazine'));
set_block_setting($block_id, 'filter_manuscript', safe_POST_bool('filter_manuscript'));
set_block_setting($block_id, 'filter_map', safe_POST_bool('filter_map'));
set_block_setting($block_id, 'filter_newspaper', safe_POST_bool('filter_newspaper'));
set_block_setting($block_id, 'filter_other', safe_POST_bool('filter_other'));
set_block_setting($block_id, 'filter_painting', safe_POST_bool('filter_painting'));
set_block_setting($block_id, 'filter_photo', safe_POST_bool('filter_photo'));
set_block_setting($block_id, 'filter_tombstone', safe_POST_bool('filter_tombstone'));
set_block_setting($block_id, 'filter_video', safe_POST_bool('filter_video'));
echo WT_JS_START, 'window.opener.location.href=window.opener.location.href;window.close();', WT_JS_END;
exit;
}
require_once WT_ROOT.'includes/functions/functions_edit.php';
$filter=get_block_setting($block_id, 'filter', 'all');
echo '<tr><td class="descriptionbox wrap width33">';
echo WT_I18N::translate('Show only persons, events, or all?'), help_link('random_media_persons_or_all', $this->getName());
echo '</td><td class="optionbox">';
echo select_edit_control('filter', array('indi'=>WT_I18N::translate('Persons'), 'event'=>WT_I18N::translate('Events'), 'all'=>WT_I18N::translate('All')), null, $filter, '');
echo '</td></tr>';
$filters=array(
'avi' =>get_block_setting($block_id, 'filter_avi', false),
'bmp' =>get_block_setting($block_id, 'filter_bmp', true),
'gif' =>get_block_setting($block_id, 'filter_gif', true),
'jpeg' =>get_block_setting($block_id, 'filter_jpeg', true),
'mp3' =>get_block_setting($block_id, 'filter_mp3', false),
'ole' =>get_block_setting($block_id, 'filter_ole', true),
'pcx' =>get_block_setting($block_id, 'filter_pcx', true),
'pdf' =>get_block_setting($block_id, 'filter_pdf', false),
'png' =>get_block_setting($block_id, 'filter_png', true),
'tiff' =>get_block_setting($block_id, 'filter_tiff', true),
'wav' =>get_block_setting($block_id, 'filter_wav', false),
'audio' =>get_block_setting($block_id, 'filter_audio', false),
'book' =>get_block_setting($block_id, 'filter_book', true),
'card' =>get_block_setting($block_id, 'filter_card', true),
'certificate'=>get_block_setting($block_id, 'filter_certificate', true),
'coat' =>get_block_setting($block_id, 'filter_coat', true),
'document' =>get_block_setting($block_id, 'filter_document', true),
'electronic' =>get_block_setting($block_id, 'filter_electronic', true),
'fiche' =>get_block_setting($block_id, 'filter_fiche', true),
'film' =>get_block_setting($block_id, 'filter_film', true),
'magazine' =>get_block_setting($block_id, 'filter_magazine', true),
'manuscript' =>get_block_setting($block_id, 'filter_manuscript', true),
'map' =>get_block_setting($block_id, 'filter_map', true),
'newspaper' =>get_block_setting($block_id, 'filter_newspaper', true),
'other' =>get_block_setting($block_id, 'filter_other', true),
'painting' =>get_block_setting($block_id, 'filter_painting', true),
'photo' =>get_block_setting($block_id, 'filter_photo', true),
'tombstone' =>get_block_setting($block_id, 'filter_tombstone', true),
'video' =>get_block_setting($block_id, 'filter_video', false),
);
echo '<tr><td class="descriptionbox wrap width33">';
echo WT_I18N::translate('Filter'), help_link('random_media_filter', $this->getName());
?>
</td>
<td class="optionbox">
<center><b><?php echo WT_Gedcom_Tag::getLabel('FORM'); ?></b></center>
<table class="width100">
<tr>
<td class="width33"><input type="checkbox" value="yes"
name="filter_avi"
<?php if ($filters['avi']) echo " checked=\"checked\""; ?>> avi </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_bmp"
<?php if ($filters['bmp']) echo " checked=\"checked\""; ?>> bmp </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_gif"
<?php if ($filters['gif']) echo " checked=\"checked\""; ?>> gif </td>
</tr>
<tr>
<td class="width33"><input type="checkbox" value="yes"
name="filter_jpeg"
<?php if ($filters['jpeg']) echo " checked=\"checked\""; ?>> jpeg </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_mp3"
<?php if ($filters['mp3']) echo " checked=\"checked\""; ?>> mp3 </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_ole"
<?php if ($filters['ole']) echo " checked=\"checked\""; ?>> ole </td>
</tr>
<tr>
<td class="width33"><input type="checkbox" value="yes"
name="filter_pcx"
<?php if ($filters['pcx']) echo " checked=\"checked\""; ?>> pcx </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_pdf"
<?php if ($filters['pdf']) echo " checked=\"checked\""; ?>> pdf </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_png"
<?php if ($filters['png']) echo " checked=\"checked\""; ?>> png </td>
</tr>
<tr>
<td class="width33"><input type="checkbox" value="yes"
name="filter_tiff"
<?php if ($filters['tiff']) echo " checked=\"checked\""; ?>> tiff </td>
<td class="width33"><input type="checkbox" value="yes"
name="filter_wav"
<?php if ($filters['wav']) echo " checked=\"checked\""; ?>> wav </td>
<td class="width33"> </td>
<td class="width33"> </td>
</tr>
</table>
<br>
<center><b><?php echo WT_Gedcom_Tag::getLabel('TYPE'); ?></b></center>
<table class="width100">
<tr>
<?php
//-- Build the list of checkboxes
$i = 0;
foreach (WT_Gedcom_Tag::getFileFormTypes() as $typeName => $typeValue) {
$i++;
if ($i > 3) {
$i = 1;
echo "</tr><tr>";
}
echo "<td class=\"width33\"><input type=\"checkbox\" value=\"yes\" name=\"filter_".$typeName."\"";
if ($filters[$typeName]) echo " checked=\"checked\"";
echo "> ".$typeValue." </td>";
}
?>
</tr>
</table>
</td>
</tr>
<?php
$controls=get_block_setting($block_id, 'controls', false);
echo '<tr><td class="descriptionbox wrap width33">';
echo WT_I18N::translate('Show slide show controls?'), help_link('random_media_ajax_controls', $this->getName());
echo '</td><td class="optionbox">';
echo edit_field_yes_no('controls', $controls);
echo '</td></tr>';
$start=get_block_setting($block_id, 'start', false);
echo '<tr><td class="descriptionbox wrap width33">';
echo WT_I18N::translate('Start slide show on page load?'), help_link('random_media_start_slide', $this->getName());
echo '</td><td class="optionbox">';
echo edit_field_yes_no('start', $start);
echo '</td></tr>';
}
}
|