summaryrefslogtreecommitdiff
path: root/lib/App/Dthumb.pm
blob: 02230168f53e48c46b442239485141c0842975d5 (plain)
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
package App::Dthumb;

use strict;
use warnings;
use 5.010;

use App::Dthumb::Data;
use Cwd;
use File::Copy qw(copy);
use File::Slurp qw(read_dir write_file);
use Image::Imlib2;

our $VERSION = '0.2';

sub new {
	my ( $obj, %conf ) = @_;

	my $ref = {};

	$conf{quality}  //= 75;
	$conf{recreate} //= 0;
	$conf{size}     //= 200;
	$conf{spacing}  //= 1.1;
	$conf{title}    //= ( split( qr{/}, cwd() ) )[-1];

	$conf{file_index} //= 'index.html';
	$conf{dir_images} //= q{.};

	$conf{dir_data}   = "$conf{dir_images}/.dthumb";
	$conf{dir_thumbs} = "$conf{dir_images}/.thumbs";

	$conf{names} //= ( $conf{'no-names'} ? 0 : 1 );

	$conf{oxygen_base} //= '/usr/share/icons/oxygen/base';

	$ref->{config} = \%conf;

	$ref->{data} = App::Dthumb::Data->new();

	$ref->{data}->set_vars(
		title  => $conf{title},
		width  => $conf{size} * $conf{spacing} . 'px',
		height => $conf{size} * $conf{spacing} . 'px',
	);

	$ref->{html} = $ref->{data}->get('html_start.dthumb');

	return bless( $ref, $obj );
}

sub read_directories {
	my ($self) = @_;

	my $thumbdir = $self->{config}->{dir_thumbs};
	my $imgdir   = $self->{config}->{dir_images};
	my ( @files, @old_thumbs );

	for my $file ( read_dir($imgdir) ) {
		if ( $file =~ m{ ^ [.] }x ) {
			next;
		}
		if ( $file eq 'index.html' ) {
			next;
		}
		if ( -f "${imgdir}/${file}"
			and
			( $self->{config}{all} or $file =~ m{ [.] (png | jp e? g) $ }ix ) )
		{
			push( @files, $file );
		}
		elsif ( $self->{config}{recursive} and -d "${imgdir}/${file}" ) {
			push( @files, $file );
		}
	}

	if ( -d $thumbdir ) {
		for my $file ( read_dir($thumbdir) ) {
			if ( $file =~ m{^ [^.] }ox and not -f "${imgdir}/${file}" ) {
				push( @old_thumbs, $file );
			}
		}
	}

	@{ $self->{files} } = sort { lc($a) cmp lc($b) } @files;
	@{ $self->{old_thumbnails} } = @old_thumbs;

	return;
}

sub create_files {
	my ($self) = @_;

	my $thumbdir = $self->{config}->{dir_thumbs};
	my $datadir  = $self->{config}->{dir_data};
	my @files    = $self->{data}->list_archived;
	my @icons;

	if ( $self->{config}{all} ) {
		push( @icons, 'mimetypes/unknown.png' );
	}
	if ( $self->{config}{recursive} ) {
		push( @icons, 'places/folder-blue.png' );
	}

	for my $dir ( $thumbdir, $datadir, "${datadir}/css", "${datadir}/js" ) {
		if ( not -d $dir ) {
			mkdir($dir);
		}
	}

	for my $file (@files) {
		write_file( "${datadir}/${file}", $self->{data}->get($file) );
	}

	for my $icon (@icons) {
		my ( $dir, $file ) = split( qr{/}, $icon );
		my $base = $self->{config}{oxygen_base};
		copy( "${base}/128x128/${dir}/${file}", "${datadir}/${file}" );
	}

	return;
}

sub delete_old_thumbnails {
	my ($self) = @_;

	my $thumbdir = $self->{config}->{dir_thumbs};

	for my $file ( @{ $self->{old_thumbnails} } ) {
		unlink("${thumbdir}/${file}");
	}

	return;
}

sub get_files {
	my ($self) = @_;

	return @{ $self->{files} };
}

sub create_thumbnail_html {
	my ( $self, $file ) = @_;

	my $div_width = $self->{config}->{size} * $self->{config}->{spacing};
	my $div_height = $div_width + ( $self->{config}->{names} ? 10 : 0 );

	$self->{html} .= "<div class=\"image-container\">\n";

	if ( -d $file ) {
		$self->{html} .= sprintf(
			"\t<a href=\"%s\" title=\"%s\">\n"
			  . "\t\t<img src=\".dthumb/folder-blue.png\" alt=\"%s\" /></a>\n",
			($file) x 3,
		);
	}
	elsif ( $file =~ m{ [.] (png | jp e? g) $ }ix ) {
		$self->{html} .= sprintf(
"\t<a class=\"fancybox\" href=\"%s\" title=\"%s\" data-fancybox-group=\"gallery\">\n"
			  . "\t\t<img src=\"%s/%s\" alt=\"%s\" /></a>\n",
			($file) x 2,
			$self->{config}->{dir_thumbs},
			($file) x 2,
		);
	}
	else {
		$self->{html} .= sprintf(
			"\t<a href=\"%s\" title=\"%s\">\n"
			  . "\t\t<img src=\".dthumb/unknown.png\" alt=\"%s\" /></a>\n",
			($file) x 3,
		);
	}

	if ( $self->{config}->{names} or -d $file ) {
		$self->{html} .= sprintf(
			"\t<br />\n" . "\t<a style=\"%s;\" href=\"%s\">%s</a>\n",
			'text-decoration: none',
			($file) x 2,
		);
	}

	$self->{html} .= "</div>\n";

	return;
}

sub create_thumbnail_image {
	my ( $self, $file ) = @_;

	my $thumbdir  = $self->{config}->{dir_thumbs};
	my $thumb_dim = $self->{config}->{size};

	if (    -e "${thumbdir}/${file}"
		and not $self->{config}->{recreate}
		and ( stat($file) )[9] <= ( stat("${thumbdir}/${file}") )[9] )
	{
		return;
	}
	if ( -d $file
		or $self->{config}{all}
		and not( $file =~ m{ [.] (png | jp e? g) $ }ix ) )
	{
		return;
	}

	my $image = Image::Imlib2->load($file);
	my ( $dx, $dy ) = ( $image->width, $image->height );
	my $thumb = $image;

	if ( $dx > $thumb_dim or $dy > $thumb_dim ) {
		if ( $dx > $dy ) {
			$thumb = $image->create_scaled_image( $thumb_dim, 0 );
		}
		else {
			$thumb = $image->create_scaled_image( 0, $thumb_dim );
		}
	}

	$thumb->set_quality( $self->{config}->{quality} );
	$thumb->save("${thumbdir}/${file}");

	return;
}

sub write_out_html {
	my ($self) = @_;

	$self->{html} .= $self->{data}->get('html_end.dthumb');

	write_file( $self->{config}->{file_index}, $self->{html} );

	return;
}

1;

__END__

=head1 NAME

App::Dthumb - Generate thumbnail index for a set of images

=head1 SYNOPSIS

    use App::Dthumb;
    use Getopt::Long qw(:config no_ignore_case);
    
    my $opt = {};
    
    GetOptions(
    	$opt,
    	qw{
    		help|h
    		size|d=i
    		spacing|s=f
    		no-names|n
    		quality|q=i
    		version|v
    	},
    );
    
    my $dthumb = App::Dthumb->new($opt);
    $dthumb->run;

=head1 VERSION

This manual documents App::Dthumb version 0.2

=head1 DESCRIPTION

App::Dthumb does the backend work for dthumb(1).

=head1 METHODS

=over

=item $dthumb = App::Dthumb->new(I<%conf>)

Returns a new B<App::Dthumb> object. As you can see in the SYNOPSIS, I<%conf> is
designed so that it can be directly passed from B<Getopt::Long>.

Valid hash keys are:

=over

=item B<dir_images> => I<directory>

Set base directory for image reading, data creation etc.

Default: F<.> (current working directory)

=item B<file_index> => I<file>

Set name of the html index file

Default: F<index.html>

=item B<recreate> => I<bool>

If true, unconditionally recreate all thumbnails.

Default: false

=item B<size> => I<int>

Maximum image size in pixels, either width or height (depending on image
orientation)

Default: 200

=item B<spacing> => I<float>

Spacing between image boxes. 1.0 means each box is exactly as wide as the
maximum image width (see B<size>), 1.1 means slightly larger, et cetera

Default: 1.1

=item B<names> => I<bool>

Show image name below thumbnail

Default: true

=item B<quality> => I<0 .. 100>

Thumbnail image quality

Default: 75

=back

=item $dthumb->read_directories

Read in a list of all image files in the current directory and all files in
F<.thumbs> which do not have a corresponding full-size image.

=item $dthumb->create_files

Makes sure the F<.thumbs> directory exists.

Also, if lightbox is enabled (which is the default), creates the F<.dthumb>
directory and fills it with all required files.

=item $dthumb->delete_old_thumbnails

Unlink all no longer required thumbnails (as previously found by
B<read_directories>).

=item $dthumb->get_files

Returns an array of all image files found by B<read_directories>.

=item $dthumb->create_thumbnail_html($file)

Append the necessary lines for $file to the HTML.

=item $dthumb->create_thumbnail_image($file)

Load F<$file> and save a resized version in F<.thumbs/$file>.  Skips thumbnail
generation if the thumbnail already exists and has a more recent mtime than
the original file.

=item $dthumb->write_out_html

Write the cached HTML data to F<index.html>.

=back

=head1 DIAGNOSTICS

None yet.

=head1 DEPENDENCIES

=over

=item * App::Dthumb::Data

=item * Image::Imlib2

=back

=head1 BUGS AND LIMITATIONS

To be determined.

=head1 AUTHOR

Copyright (C) 2009-2016 by Daniel Friesel E<lt>derf@chaosdorf.deE<gt>

=head1 LICENSE

    0. You just DO WHAT THE FUCK YOU WANT TO.