package Daizu::Util; use warnings; use strict; use base 'Exporter'; our @EXPORT_OK = qw( trim trim_with_empty_null like_escape pgregex_escape url_encode url_decode validate_number validate_uri validate_mime_type validate_date w3c_datetime db_datetime rfc2822_datetime parse_db_datetime display_byte_size db_row_exists db_row_id db_select db_select_col db_insert db_update db_replace db_delete transactionally wc_file_data guess_mime_type wc_set_file_data mint_guid guid_first_last_times get_subversion_properties load_class instantiate_generator update_all_file_urls aggregate_map_changes add_xml_elem xml_attr xml_croak expand_xinclude branch_id daizu_data_dir ); use URI; use DateTime; use DateTime::Format::Pg; use DBD::Pg; use File::MMagic; use Path::Class qw( file ); use Digest::SHA1 qw( sha1_base64 ); use Image::Size qw( imgsize ); use Math::Round qw( nearest ); use XML::LibXML; use Encode qw( encode decode ); use Carp qw( croak ); use Carp::Assert qw( assert DEBUG ); =head1 NAME Daizu::Util - various utility functions =head1 FUNCTIONS The following functions are available for export from this module. None of them are exported by default. =over =item trim($s) Returns C<$s> with leading and trailing whitespace stripped off, or C if C<$s> is undefined. =cut sub trim { my ($s) = @_; return unless defined $s; $s =~ s/^\s+//; $s =~ s/\s+\z//; return $s; } =item trim_with_empty_null($s) Returns C<$s> with leading and trailing whitespace stripped off, or C if C<$s> is undefined, or if C<$s> contains nothing but whitespace. Useful for tidying values which are to be stored in the database, where sometimes it is preferable to store C in place of a value with no real content. =cut sub trim_with_empty_null { my ($s) = @_; return unless defined $s; $s =~ s/^\s+//; return if $s eq ''; $s =~ s/\s+\z//; return $s; } =item like_escape($s) Returns an escaped version of C<$s> suitable for including in patterns given to the SQL C operator. Does NOT escape quotes, so you still need to quote the result for the database before including it in any SQL. Returns C if the input is undefined. Escapes backslashes, underscores, and percent signs. =cut sub like_escape { my ($s) = @_; return unless defined $s; $s =~ s/([\\_%])/\\$1/g; return $s; } =item pgregex_escape($s) Returns an escaped version of C<$s> suitable for including in patterns given to PostgreSQL's SQL S operator>. Does NOT escape quotes, so you still need to quote the result for the database before including it in any SQL. Returns C if the input is undefined. Escapes the following characters: C<. ^ $ + * ? ( ) [ ] { \> =cut sub pgregex_escape { my ($s) = @_; return unless defined $s; $s =~ s/([.^\$+*?()\[\]{\\])/\\$1/g; return $s; } =item url_encode($s) Returns a URL encoded version of C<$s>, with characters which would be unsuitable for use in a URL escaped as C<%> followed by two uppercase hexadecimal digits. The opposite of L. =cut sub url_encode { my ($s) = @_; $s = encode('UTF-8', $s, Encode::FB_CROAK); $s =~ s{([^-.,/_a-zA-Z0-9 ])}{sprintf('%%%02X', ord $1)}ge; $s =~ tr/ /+/; return decode('UTF-8', $s, Encode::FB_CROAK); } =item url_decode($s) If C<$s> is URL encoded, return a decoded version. The opposite of L. =cut sub url_decode { my ($s) = @_; $s = encode('UTF-8', $s, Encode::FB_CROAK); $s =~ tr/+/ /; $s =~ s/%([\da-fA-F]{2})/chr hex $1/eg; return decode('UTF-8', $s, Encode::FB_CROAK); } =item validate_number($num) If C<$num> consists only of a sequence of digits, return it as an untainted number, otherwise return nothing. =cut sub validate_number { my ($num) = @_; return unless $num =~ /\A(\d+)\z/; return $1; } =item validate_uri($uri) Return a L object representing the absolute URI in C<$uri>, or undef if it isn't defined, is invalid, or isn't absolute. This is based on code from the L module, but it has been changed to only allow absolute URIs, and it doesn't try to reconstruct the URI from it individual parts (something which the URI module can do instead). =cut sub validate_uri { my ($uri) = @_; $uri = trim($uri); return undef unless defined $uri; # Check for illegal characters. return undef if $uri =~ /[^-a-zA-Z0-9:\/?#[\]@!\$&'()*+,;=._~]/; my ($scheme, $authority, $path, $query) = $uri =~ m{ \A (?: ([a-zA-Z][-+.a-zA-Z0-9]*) :) # scheme (required) (?: // ([^/?#]*) )? # authority (optional) ([^?#]*) # path (including domain, etc.) (?: \? ([^#]*) )? # query string (optional) (?: \# .* )? # fragment (optional) \z }x; return undef unless defined $scheme; # If authority is present, the path must be empty or begin with a '/'. if (defined $authority && length $authority) { return undef unless $path eq '' || $path =~ m!^/!; } else { # If authority is not present, the path must not start with '//'. return undef if $path =~ m!^//!; } return URI->new($uri); } =item validate_mime_type($mime_type) Given something that might be a MIME type name, return either a valid MIME type, folded to lowercase, or C. Based on the definition from S (see L). =cut sub validate_mime_type { my ($s) = @_; return unless defined $s; return unless $s =~ m{ \A ( [-!#$%&'*+.0-9A-Z^_`a-z{|}~]+ \/ [-!#$%&'*+.0-9A-Z^_`a-z{|}~]+ )\z }x; return lc $1; } =item validate_date($date) Given something that might be a valid date/time in Subversion format, return a L object containing the same timestamp. Otherwise returns C. The date format recognized is one possible format for W3CDTF (L) dates. Only the exact format used by Subversion is supported, except that: the 'T' and 'Z' letters are case-insensitive, whitespace at the start of end of the string is ignored, and the fractional seconds part is optional. Note: it would have been nice to use L for this, but as of S it has a bug which prevents parsing of Subversion dates (CPAN bug #14179, L). =cut sub validate_date { my ($s) = @_; return unless defined $s; return unless $s =~ m{ ^\s* (\d\d\d\d)-(\d\d)-(\d\d) T (\d\d):(\d\d):(\d\d)(\.\d+)? Z \s*$ }ix; return DateTime->new( year => $1, month => $2, day => $3, hour => $4, minute => $5, second => $6, (defined $7 ? (nanosecond => $7 * 1_000_000_000) : ()), time_zone => 'UTC', ); } =item w3c_datetime($datetime, $include_micro) Return a string version of the L object, formatted as a W3CDTF (L) date and time. If C<$datetime> is just a string, it is automatically validated and parsed by L first. If the value is invalid or undefined, then C is returned. C<$include_micro> indicates whether microseconds should be included in the returned string. If true, a decimal point and six digits of fractional seconds is included, unless they would all be zero, otherwise the value will be accurate only to within a second. =cut sub w3c_datetime { my ($dt, $include_micro) = @_; $dt = validate_date($dt) unless ref $dt; return undef unless defined $dt; $include_micro = 0 if $include_micro && $dt->nanosecond == 0; return $dt->strftime('%FT%T' . ($include_micro ? '.%6NZ' : 'Z')); } =item db_datetime($datetime) C<$datetime> must either be a L object or a string which can be parsed by L. If not, C is returned. If valid, the date and time are returned formatted for use in PostgreSQL, using L. =cut sub db_datetime { my ($dt) = @_; $dt = validate_date($dt) unless ref $dt; return undef unless defined $dt; return DateTime::Format::Pg->format_datetime($dt); } =item rfc2822_datetime($datetime) C<$datetime> must either be a L object or a string which can be parsed by L. If not, C is returned. If valid, the date and time are returned formatted for according to S (L), and is suitable for use in (for example) S feeds. =cut sub rfc2822_datetime { my ($dt) = @_; $dt = validate_date($dt) unless ref $dt; return undef unless defined $dt; return $dt->strftime('%a, %d %b %Y %H:%M:%S %z'); } =item parse_db_datetime($datetime) Given a string containing a date and time formatted in PostgreSQL's format, return a corresponding L object. Returns C if C<$datetime> isn't defined. =cut sub parse_db_datetime { my ($dt) = @_; return undef unless defined $dt; return DateTime::Format::Pg->parse_datetime($dt); } =item display_byte_size($bytes) Given a number of bytes, format it for display to a user with a suffix indicating the units (either C, C, C, or C, depending how big the value is). =cut { use constant K => 1024; use constant M => K * K; use constant G => M * K; sub display_byte_size { my ($bytes) = @_; return "${bytes}b" if $bytes < K; return nearest(1, $bytes / K) . 'Kb' if $bytes < M; return nearest(0.1, $bytes / M) . 'Mb' if $bytes < G; return nearest(0.01, $bytes / G) . 'Gb'; } } # Used by some of the database utility functions to generate SQL 'where' # clauses. # Warning: don't use this when values might contain arbitrary binary data. sub _where { my $db = shift; return '' unless @_; return 'where id = ' . $db->quote(@_) if @_ == 1; my %condition = @_; return 'where ' . join ' and ', map { my $value = $condition{$_}; defined $value ? "$_ = " . $db->quote($value) : "$_ is null"; } keys %condition; } =item db_row_exists($db, $table, ...) Return true if a row exists in database table C<$table> on database connection C<$db>, otherwise false. The extra arguments can be omitted (in which case the table merely has to be non-empty), can be a single value (which will be matched against the C column), or can be a hash of column-name to value mappings which must be met by a record. For example, to find out whether there is a current path for a GUID ID, where C is C: =for syntax-highlight perl my $guid_already_present = db_row_exists($db, file_path => guid_id => $guid_id, branch_id => $branch_id, last_revnum => undef, ); =cut sub db_row_exists { my ($db, $table, @where) = @_; my $where = _where($db, @where); return $db->selectrow_array(qq{ select 1 from $table $where limit 1 }); } =item db_row_id($db, $table, %where) Return the ID number (the value from the C column) from C<$table> on the database connection C<$db>, where the values in C<%where> match the values in a record. If there are more than one such value, an arbitrarily chosen one is returned. Nothing is returned if there are no matches. =for syntax-highlight perl my $file_id = db_row_id($db, 'wc_file', wc_id => $wc_id, path => $path, ); =cut sub db_row_id { my ($db, $table, @where) = @_; my $where = _where($db, @where); return $db->selectrow_array(qq{ select id from $table $where limit 1 }); } =item db_select($db, $table, $where, @columns) Gets the named columns in C<@columns> from a record in table C<$table> using database connection C<$db> and returns them as a list. Only one record is selected. If there are multiple matches then an arbitrary one is returned. C<$where> can be either an ID number (to match the C column) or a reference to a hash of column names and values to match. Values can be C to match C. C<$where> can also be a reference to an empty hash if you don't care which record is selected. =for syntax-highlight perl my $branch_path = db_select($db, branch => $branch_id, 'path'); The column names are not quoted, so they can be SQL expressions: =for syntax-highlight perl my $last_known_rev = db_select($db, revision => {}, 'max(revnum)'); =cut sub db_select { my ($db, $table, $where, @columns) = @_; croak 'usage: db_select($db, $table, $where, @columns)' unless @columns; my $columns = join ', ', @columns; $where = _where($db, (ref $where ? (%$where) : ($where))); return $db->selectrow_array(qq{ select $columns from $table $where limit 1 }); } =item db_select_col($db, $table, $where, $column) Return a list of values from the column named by C<$column> in C<$table> using database connection C<$db>. C<$where> can be either an ID number (to match the C column) or a reference to a hash of column names and values to match. Values can be C to match C. C<$where> can also be a reference to an empty hash if you want to select all records. =for syntax-highlight perl my @podcast_urls = db_select_col($db, url => { method => 'article', content_type => 'audio/mpeg' }, 'url', ); The column name is not quoted, so it can be an SQL expression. =cut sub db_select_col { my ($db, $table, $where, $column) = @_; croak 'usage: db_select_col($db, $table, $where, $column)' unless @_ == 4 && defined $column; $where = _where($db, (ref $where ? (%$where) : ($where))); my $records = $db->selectcol_arrayref(qq{ select $column from $table $where }); return @$records; } =item db_insert($db, $table, %value) Insert a new record into C<$table> on database connection C<$db>. C<%value> should be a hash of column names and values to use for them. The values are SQL quoted, but this should not be used for inserting arbitrary binary data into C columns. Values can be C, in which case C will be inserted. Returns the C number of the new record, but only attempts to do this (it might not work on tables without C columns) if a return value is expected. =for syntax-highlight perl my $branch_id = db_insert($db, 'branch', path => $path); =cut sub db_insert { my ($db, $table, %value) = @_; croak 'usage: db_insert($db, $table, %value)' unless keys %value; my $columns = join ', ', keys %value; my $placeholders = join ', ', ('?') x scalar keys %value; $db->do("insert into $table ($columns) values ($placeholders)", undef, values %value); # Return the ID of the new value, unless we're in void context. return unless defined wantarray; return $db->last_insert_id(undef, undef, $table, undef); } =item db_update($db, $table, $where, %value) Updates one or more records in C<$table> using database connection C<$db>. Only records matching C<$where> are updated. It can be either a single number (matched against the C column) or a reference to a hash of column names and values to match. =for syntax-highlight perl db_update($db, wc_file => $file_id, modified_at => db_datetime($time), ); If C<$where> is a reference to an empty hash then this function will die. If you really want to update every record unconditionally, use a normal C<$db-Edo> method call. Returns the number of rows updated, or C on error, or -1 if the number of rows changed can't be determined. =cut sub db_update { my ($db, $table, $where, %value) = @_; return unless keys %value; if (ref $where) { croak 'db_update() without any conditions is too dangerous' unless keys %$where; $where = _where($db, %$where); } else { $where = 'where id = ' . $db->quote($where); } assert($where) if DEBUG; my $sets = join ', ', map { "$_ = " . $db->quote($value{$_}) } keys %value; return $db->do("update $table set $sets $where"); } =item db_replace($db, $table, $where, %value) Either inserts a new record, if there is none matching C<$where>, or updates one or more existing records if there is. C<$where> must be a reference to a hash of column names and values to match. If there is already at least one record which matches C<$where>, then this behaves the same as L. Otherwise a new record is inserted using both the values in C<%value> and the ones in C<%$where> combined. If a column's value is given in both hashes, the one in C<%value> is used. If a new record is inserted and a return value is expected, then the C value of the new record will be returned. For updates C is always returned. =cut sub db_replace { my ($db, $table, $where, %value) = @_; croak 'usage: db_replace($db, $table, $where, %value)' unless ref $where && keys %value; croak 'db_replace() without any conditions is too dangerous' unless keys %$where; if (db_row_exists($db, $table, %$where)) { db_update($db, $table, $where, %value); return undef; } else { while (my ($column, $value) = each %$where) { $value{$column} = $value unless exists $value{$column}; } return db_insert($db, $table, %value); } } =item db_delete($db, $table, ...) Delete records from C<$table> using database connection C<$db>. If a single additional value is specified then it is matched against the C column, otherwise a hash of column names and values is expected. This function will die if you don't give it some conditions to check for. If you really want to delete every record unconditionally, use a normal C<$db-Edo> method call. =cut sub db_delete { my ($db, $table, @where) = @_; croak 'db_delete() without any conditions is too dangerous' unless @where; my $where = _where($db, @where); assert($where) if DEBUG; return $db->do("delete from $table $where"); } =item transactionally($db, $code, @args) Executes C (a reference to a sub) within a database transaction on C<$db>. The optional C<@args> will be passed to the function. Its return value will be returned from C. If the code being executed dies, then the transaction is rolled back and the exception passed on. Otherwise, the transaction is committed. A database transaction is not started or finished when this function is called recursively. This means that if you use it consistently if effectively gives you nested transactions. C<$code> is called with the same context as this function was called in. When C returns, it returns a single value if it was called in scalar context, or a list of values if called in list context. =cut { # This is required to keep track of whether we're in a transaction already. # The keys are the stringifications of database handles, just in case # you're using this with more than one handle. my %level; sub transactionally { my ($db, $code, @args) = @_; my $in_transaction = $level{$db}; ++$level{$db}; $db->begin_work unless $in_transaction; # Call the code, using the same context as we were called in. my @ret; if (wantarray) { @ret = eval { $code->(@args) }; } elsif (defined wantarray) { $ret[0] = eval { $code->(@args) }; } else { eval { $code->(@args) }; } if ($in_transaction) { --$level{$db}; } else { delete $level{$db}; } if ($@) { $db->rollback unless $in_transaction; die $@; } $db->commit unless $in_transaction; return wantarray ? @ret : $ret[0]; } } =item wc_file_data($db, $file_id) Returns a reference to the data (content) of the C record identified by C<$file_id>. Fails if the file is actually a directory or doesn't exist. This takes care of getting data from the live working copy if the file just has a reference to a file with the same content. =cut sub wc_file_data { my ($db, $file_id) = @_; assert(defined $file_id) if DEBUG; my ($is_dir, $data, $data_ref_id) = db_select($db, wc_file => $file_id, qw( is_dir data data_from_file_id ), ); assert(!$is_dir) if DEBUG; if (!defined $data) { croak "no data for file $file_id" unless defined $data_ref_id; $data = db_select($db, wc_file => $data_ref_id, 'data'); } return \$data; } =item guess_mime_type($data, $filename) Return the likely MIME type of the data referenced by C<$data> (a scalar reference), or nothing if it is of an unknown type. C<$filename> is optional, but can be used for some additional guesswork if supplied. Currently it is only used to recognize C files, which might otherwise get identified as C. =cut sub guess_mime_type { my ($data, $filename) = @_; my $mime_magic = File::MMagic->new; my $mime_type = $mime_magic->checktype_contents($$data); return unless defined $mime_type; $mime_type =~ /^[-a-z0-9]+\/[-a-z0-9]+$/i or croak "got invalid mime type for '$filename' ($mime_type)"; $mime_type = 'text/css' if $mime_type eq 'text/plain' && defined $filename && $filename =~ /\.css$/i; return $mime_type; } =item guid_first_last_times($db, $guid_id) Returns a list of two timestamps, as L values, which can be used for the publication time and the time of the last update, in the case that the user hasn't overridden them with Subversion properties (C and C respectively). =cut sub guid_first_last_times { my ($db, $guid_id) = @_; my ($first, $last) = db_select($db, file_guid => $guid_id, qw( first_revnum last_changed_revnum )); my ($issued) = db_select($db, revision => { revnum => $first }, 'committed_at'); my ($modified) = db_select($db, revision => { revnum => $last }, 'committed_at'); return (parse_db_datetime($issued), parse_db_datetime($modified)); } =item get_subversion_properties($ra, $path, $revnum) Returns a reference to a hash of properties for the file at C<$path> (a full path within the Subversion repository, including branch path) in revision C<$revnum>. C<$ra> should be a L object. Returns undef if the file doesn't exist. =cut sub get_subversion_properties { my ($ra, $path, $revnum) = @_; my $stat = $ra->stat($path, $revnum); return undef unless defined $stat; # When accessing a remote repository the 'get_file' method doesn't # work on directories, although for some reason it does with a local # 'file:' repository. my $props; if ($stat->kind == $SVN::Node::dir) { (undef, undef, $props) = $ra->get_dir($path, $revnum); } else { (undef, $props) = $ra->get_file($path, $revnum, undef); } return $props; } =item wc_set_file_data($cms, $wc_id, $file_id, $content_type, $data, $allow_data_ref) Warning: this should currently only be used for proper updates from the repository, not making live uncommitted changes in a working copy. Doing so will currently break everything. Updates the data stored for file C<$file_id> (which must not be a directory) in working copy C<$wc_id>. It takes care of things like calculating the digest and the pixel size of image files. C<$data> should be a reference to a scalar containing the actual data. If C<$allow_data_ref> is true, and the working copy isn't the live working copy, then this function will try to find an existing copy of the same data in the live working copy and store a reference to that instead of an additional copy of the data. =cut # TODO - if this changes the mime type, it should update the wc_property table sub wc_set_file_data { my ($cms, $wc_id, $file_id, $content_type, $data, $allow_data_ref) = @_; my $db = $cms->{db}; my ($img_wd, $img_ht); ($img_wd, $img_ht) = imgsize($data) if defined $content_type && $content_type =~ m!^image/!i; my $sha1 = sha1_base64($$data); my $live_wc_id = $cms->{live_wc_id}; # Working copies other than the live one can reference a file in the # live working copy which has the same data, rather than storing a # separate copy of it. my $saved; if (length($$data) > 0 && $wc_id != $live_wc_id && $allow_data_ref) { my ($src_file_id) = $db->selectrow_array(q{ select id from wc_file where wc_id = ? and data is not null and data_sha1 = ? and data_len = ? }, undef, $live_wc_id, $sha1, length($$data)); if (defined $src_file_id) { db_update($db, wc_file => $file_id, data => undef, data_from_file_id => $src_file_id, data_sha1 => $sha1, data_len => length($$data), image_width => $img_wd, image_height => $img_ht, ); $saved = 1; } } elsif ($wc_id == $live_wc_id) { # When the live working copy's data is updated, make sure there # aren't any other files which reference the old version of the # data. If there are, give them a full copy. $db->do(q{ update wc_file set data = (select data from wc_file where id = ?), data_from_file_id = null where data_from_file_id = ? }, undef, $file_id, $file_id); } # Store the new content. if (!$saved) { my $sth = $db->prepare(q{ update wc_file set data = ?, data_len = ?, data_sha1 = ?, data_from_file_id = null, image_width = ?, image_height = ? where id = ? }); $sth->bind_param(1, $$data, { pg_type => DBD::Pg::PG_BYTEA }); $sth->bind_param(2, length $$data); $sth->bind_param(3, $sha1); $sth->bind_param(4, $img_wd); $sth->bind_param(5, $img_ht); $sth->bind_param(6, $file_id); $sth->execute; } } =item mint_guid($cms, $is_dir, $path) Add a new entry to the C table for a file which initially (in the first revision for which it exists) resides at C<$path>. A new 'tag' URI will be created for the GUID, using the appropriate entity as defined in the configuration file (see the documentation for the C element in the Daizu configuration file (see L). A list of two values is returned: the ID number of the new record, and the tag URI created for it. =cut sub mint_guid { my ($cms, $is_dir, $path, $revnum) = @_; my $db = $cms->{db}; return transactionally($db, sub { my $guid_id = db_insert($db, file_guid => is_dir => ($is_dir ? 1 : 0), uri => 'x-temp:', first_revnum => $revnum, last_changed_revnum => $revnum, ); my $entity = $cms->guid_entity($path); my $guid_uri = "tag:$entity:$guid_id"; db_update($db, file_guid => $guid_id, uri => $guid_uri, ); return ($guid_id, $guid_uri); }); } =item load_class($class) Load a Perl module called C<$class> which contains a class. So this doesn't do any C calling, since that shouldn't be necessary. It keeps track of which classes have already been loaded, and won't do any extra work if you try to load the same class twice. This method is used to load generator classes and plugins. =cut { my %class_loaded; sub load_class { my ($class) = @_; unless (exists $class_loaded{$class}) { eval "require $class"; die "$@" if $@; undef $class_loaded{$class}; } } } =item instantiate_generator($cms, $class, $root_file) Create a generator object from the Perl class C<$class>, passing in the information generator classes expect for their constructors. C<$root_file>, which should be a L object, is passed to the generator and as also used to find the configuration information, if any, for this generator instance. Typically C<$root_file> will be the on which the C property was set to enable this generator class. If C<$class> is undef then the default generator is used (L). =cut sub instantiate_generator { my ($cms, $class, $root_file) = @_; $class = 'Daizu::Gen' unless defined $class; load_class($class); my $path = $root_file->{path}; my $config = $cms->{generator_config}{$class}{$path}; $config = $cms->{generator_config}{$class}{''} unless defined $config; return $class->new( cms => $cms, root_file => $root_file, config_elem => $config, ); } =item update_all_file_urls($cms, $wc_id) Updates the C table in the same way as the L method Lupdate_urls_in_db([$dup_urls])>, except that it does so for all files in working copy C<$wc_id>, and the return values are each true if I of the changes include new or updated redirects or 'gone' files. Any active URLs for files which no longer exist in the working copy are marked as 'gone'. This function also takes care of handling temporary duplicate URLs which occur during the update, when one file adds a new URL which is already active for another file, but will be inactive by the end of the transaction. All of this is done in a single database transaction. TODO - update docs about new return value =cut sub update_all_file_urls { my ($cms, $wc_id) = @_; my $db = $cms->{db}; return transactionally($db, sub { my $sth = $db->prepare(q{ select id from wc_file where wc_id = ? }); $sth->execute($wc_id); # These are aggregate versions of the same variables as in the # update_urls_in_db() function in Daizu::File. Look there for # details of what they mean. my (%redirects_changed, %gone_changed); my %dup_urls; while (my ($file_id) = $sth->fetchrow_array) { my $file = Daizu::File->new($cms, $file_id); my $changes = $file->update_urls_in_db(\%dup_urls); aggregate_map_changes($changes, \%redirects_changed, \%gone_changed); } resolve_url_update_duplicates($db, $wc_id, \%dup_urls); # Any other active URLs which belong to files that no longer exist # should be deactivated. $db->do(q{ update url set status = 'G' where wc_id = ? and guid_id in ( select u.guid_id from url u left outer join wc_file f on f.wc_id = u.wc_id and f.guid_id = u.guid_id where u.wc_id = ? and u.status = 'A' and f.id is null ) }, undef, $wc_id, $wc_id); return { update_redirect_maps => \%redirects_changed, update_gone_maps => \%gone_changed, }; }); } =item resolve_url_update_duplicates($db, $wc_id, $dup_urls) TODO =cut sub resolve_url_update_duplicates { my ($db, $wc_id, $dup_urls) = @_; # If there are any new active URLs which still clash with old # active ones, the old ones may belong to files which no longer # exist in the working copy. Either way, resolve the duplicates. while (my ($url, $dup) = each %$dup_urls) { my $orig_guid_id = db_select($db, url => $dup->{id}, 'guid_id'); my $file_still_exists = db_row_exists($db, 'wc_file', wc_id => $wc_id, guid_id => $orig_guid_id, ); if ($file_still_exists) { croak "new URL '$url' would conflict with existing URL"; } else { db_update($db, url => $dup->{id}, guid_id => $dup->{guid_id}, generator => $dup->{generator}, method => $dup->{method}, argument => $dup->{argument}, content_type => $dup->{type}, ); } } } =item aggregate_map_changes($changes, $redirects_changed, $gone_changed) TODO =cut sub aggregate_map_changes { my ($changes, $redirects_changed, $gone_changed) = @_; while (my ($file, $conf) = each %{$changes->{update_redirect_maps}}) { next if exists $redirects_changed->{$file}; $redirects_changed->{$file} = $conf; } while (my ($file, $conf) = each %{$changes->{update_gone_maps}}) { next if exists $gone_changed->{$file}; $gone_changed->{$file} = $conf; } } =item add_xml_elem($parent, $name, $content, %attr) Create a new XML DOM element (an L object) and add it to the parent element C<$parent>. C<$name> is the name of the new element. If C<$content> is defined, then it can either be a libxml object to add as a child of the element, or a piece of text to use as its content. The keys and values in C<%attr> are added to the new element as attributes. =cut sub add_xml_elem { my ($parent, $name, $content, %attr) = @_; my $elem = XML::LibXML::Element->new($name); $parent->appendChild($elem); if (defined $content) { $content = XML::LibXML::Text->new($content) unless ref $content; $elem->appendChild($content); } while (my ($attr_name, $value) = each %attr) { $elem->setAttribute($attr_name => $value); } return $elem; } =item xml_attr($filename, $elem, $attr, $default) Returns the value of the attribute of the XML element C<$elem>, which must be a L object. If no such element exists, return C<$default> if that is defined, otherwise die with an appropriate error message. =cut sub xml_attr { my ($filename, $elem, $attr, $default) = @_; return $elem->getAttribute($attr) if $elem->hasAttribute($attr); return $default if defined $default; my $elem_name = $elem->localname; xml_croak($filename, $elem, "missing attribute '$attr' on element <$elem_name>"); } =item xml_croak($filename, $node, $message) Croaks with an error message which includes C<$message>, but also gives the filename and the line number at which C<$node> occurs. C<$node> should be some kind of L object. =cut sub xml_croak { my ($filename, $node, $msg) = @_; my $line_number = $node->line_number; croak "$filename:$line_number: $msg"; } =item expand_xinclude($db, $doc, $wc_id, $path) Expand XInclude elements in C<$doc> (a L object). This is used for the content of articles, after it has been returned from an article loader plugin but before it is passed to article filter plugins. The XML DOM is updated in place. A list of the IDs of any included files is returned. When loading articles this list is stored in the C table, so that whenever one of the file's content is changed, the article can be reloaded to include the new version. Any XInclude elements present must use include from a C URI. Other URIs, like C, are not allowed, since that would be a security hole if the content was supplied by a user who wouldn't normally have access to the filesystem. The C URI scheme is specific to this function, and causes data to be loaded from the database working copy C<$wc_id> (which should be the same as the file from which the article content came). C<$path> should be the path of the file from which the content comes. This is used to resolve relative paths when including. Actually, you can use any base URI by including an C attribute in the content, but this function adds one (based on C<$path>) to the root element if it doesn't already exist. This not only allows you to use paths relative to C<$path>, but also means you don't have to specify the C URI prefix in your content. =cut sub expand_xinclude { my ($db, $doc, $wc_id, $path) = @_; my $parser = XML::LibXML->new; $parser->expand_xinclude(1); my @included_file; my $input_callbacks = XML::LibXML::InputCallback->new; $input_callbacks->register_callbacks([ \&_match_uri, sub { _open_uri($db, $wc_id, \@included_file, @_) }, \&_read_uri, \&_close_uri, ]); $parser->input_callbacks($input_callbacks); my $root = $doc->documentElement; $root->setAttribute('xml:base' => 'daizu:///' . url_encode($path)) unless $root->hasAttribute('xml:base'); $parser->process_xincludes($doc); return @included_file; } # This set of callback functions are used to handle the special non-standard # 'daizu:' URI scheme for loading file content from the working copy the # article file comes from. # Other URI schemes are disallowed for security reasons. sub _match_uri { my ($uri) = @_; croak "articles may only use XInclude for 'daizu:' URIs, not '$uri'" unless $uri =~ /^daizu:/i; return 1; } sub _open_uri { my ($db, $wc_id, $included_file, $uri) = @_; my $path = $uri; $path =~ s!^daizu:/*!!i; my ($file_id, $is_dir) = db_select($db, 'wc_file', { wc_id => $wc_id, path => $path }, qw( id is_dir ), ); croak "can't read '$uri' included with XInclude, it's a directory" if $is_dir; my $data = wc_file_data($db, $file_id); open my $fh, '<', $data or die "error opening in-memory file to read '$uri': $!"; push @$included_file, $file_id; return $fh; } sub _read_uri { my ($fh, $length) = @_; my $buffer; my $ret = read $fh, $buffer, $length; die "error reading from file: $!" unless defined $ret; return $buffer; } sub _close_uri { my ($fh) = @_; close $fh; } =item branch_id($db, $branch) If C<$branch> is an number then return it unchanged, and just assume that it is a valid branch ID. Otherwise, try to find a branch with C<$branch> as its path, and return the ID number of that. Dies if no such branch exists. =cut sub branch_id { my ($db, $branch) = @_; return $1 if $branch =~ /^(\d+)$/; my $branch_id = db_row_id($db, 'branch', path => $branch); croak "branch '$branch' does not exist" unless defined $branch_id; return $branch_id; } =item daizu_data_dir($dir) Return the absolute path (on the native filesystem) of the directory called C<$dir> under the directory C where the Perl modules are installed. This is used to locate data files which can be installed along with the Daizu Perl modules, such as some XML DTD files in the C directory. Look for directories whose names are all lowercase in C in the source tarball for these. The return value is actually a L object. Note that it is assumed these directories will be alongside the location of the file for this module (Daizu::Util). This should ensure that the right data files are used depending on whether you're using an installed version of Daizu CMS or testing from the source directory. This function will die if the directory doesn't exist where it is expected to be. =cut sub daizu_data_dir { my ($dir) = @_; my $path = file(__FILE__)->dir->subdir($dir)->absolute; die "data directory '$dir' not found at '$path' where it should be" unless -d $path; return $path; } =back =head1 COPYRIGHT This software is copyright 2006 Geoff Richards Egeoff@laxan.comE. For licensing information see this page: L =cut 1; # vi:ts=4 sw=4 expandtab