/usr/share/perl5/Mojo/Pg/Migrations.pm is in libmojo-pg-perl 2.35-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Mojo::Pg::Migrations;
use Mojo::Base -base;
use Carp 'croak';
use Mojo::File 'path';
use Mojo::Loader 'data_section';
use Mojo::Util 'decode';
use constant DEBUG => $ENV{MOJO_MIGRATIONS_DEBUG} || 0;
has name => 'migrations';
has 'pg';
sub active { $_[0]->_active($_[0]->pg->db) }
sub from_data {
my ($self, $class, $name) = @_;
return $self->from_string(
data_section($class //= caller, $name // $self->name));
}
sub from_file { shift->from_string(decode 'UTF-8', path(pop)->slurp) }
sub from_string {
my ($self, $sql) = @_;
my ($version, $way);
my $migrations = $self->{migrations} = {up => {}, down => {}};
for my $line (split "\n", $sql // '') {
($version, $way) = ($1, lc $2) if $line =~ /^\s*--\s*(\d+)\s*(up|down)/i;
$migrations->{$way}{$version} .= "$line\n" if $version;
}
return $self;
}
sub latest {
(sort { $a <=> $b } keys %{shift->{migrations}{up}})[-1] || 0;
}
sub migrate {
my ($self, $target) = @_;
# Unknown version
my $latest = $self->latest;
$target //= $latest;
my ($up, $down) = @{$self->{migrations}}{qw(up down)};
croak "Version $target has no migration" if $target != 0 && !$up->{$target};
# Already the right version (make sure migrations table exists)
my $db = $self->pg->db;
return $self if $self->_active($db, 1) == $target;
# Lock migrations table and check version again
my $tx = $db->begin;
$db->query('lock table mojo_migrations in exclusive mode');
return $self if (my $active = $self->_active($db, 1)) == $target;
# Newer version
croak "Active version $active is greater than the latest version $latest"
if $active > $latest;
# Up
my $sql;
if ($active < $target) {
my @up = grep { $_ <= $target && $_ > $active } keys %$up;
$sql = join '', @$up{sort { $a <=> $b } @up};
}
# Down
else {
my @down = grep { $_ > $target && $_ <= $active } keys %$down;
$sql = join '', @$down{reverse sort { $a <=> $b } @down};
}
warn "-- Migrate ($active -> $target)\n$sql\n" if DEBUG;
$sql .= ';update mojo_migrations set version = $1 where name = $2;';
$db->query($sql, $target, $self->name) and $tx->commit;
return $self;
}
sub _active {
my ($self, $db, $create) = @_;
my $name = $self->name;
my $results;
{
local $db->dbh->{RaiseError} = 0;
my $sql = 'select version from mojo_migrations where name = $1';
$results = $db->query($sql, $name);
};
if ((my $next = $results->array) || !$create) { return $next->[0] || 0 }
$db->query(
'create table if not exists mojo_migrations (
name text unique not null,
version bigint not null check (version >= 0)
)'
) if $results->sth->err;
$db->query('insert into mojo_migrations values ($1, $2)', $name, 0);
return 0;
}
1;
=encoding utf8
=head1 NAME
Mojo::Pg::Migrations - Migrations
=head1 SYNOPSIS
use Mojo::Pg::Migrations;
my $migrations = Mojo::Pg::Migrations->new(pg => $pg);
$migrations->from_file('/home/sri/migrations.sql')->migrate;
=head1 DESCRIPTION
L<Mojo::Pg::Migrations> is used by L<Mojo::Pg> to allow database schemas to
evolve easily over time. A migration file is just a collection of sql blocks,
with one or more statements, separated by comments of the form
C<-- VERSION UP/DOWN>.
-- 1 up
create table messages (message text);
insert into messages values ('I ♥ Mojolicious!');
-- 1 down
drop table messages;
-- 2 up (...you can comment freely here...)
create table stuff (whatever int);
-- 2 down
drop table stuff;
The idea is to let you migrate from any version, to any version, up and down.
Migrations are very safe, because they are performed in transactions and only
one can be performed at a time. If a single statement fails, the whole
migration will fail and get rolled back. Every set of migrations has a
L</"name">, which is stored together with the currently active version in an
automatically created table named C<mojo_migrations>.
=head1 ATTRIBUTES
L<Mojo::Pg::Migrations> implements the following attributes.
=head2 name
my $name = $migrations->name;
$migrations = $migrations->name('foo');
Name for this set of migrations, defaults to C<migrations>.
=head2 pg
my $pg = $migrations->pg;
$migrations = $migrations->pg(Mojo::Pg->new);
L<Mojo::Pg> object these migrations belong to.
=head1 METHODS
L<Mojo::Pg::Migrations> inherits all methods from L<Mojo::Base> and implements
the following new ones.
=head2 active
my $version = $migrations->active;
Currently active version.
=head2 from_data
$migrations = $migrations->from_data;
$migrations = $migrations->from_data('main');
$migrations = $migrations->from_data('main', 'file_name');
Extract migrations from a file in the DATA section of a class with
L<Mojo::Loader/"data_section">, defaults to using the caller class and
L</"name">.
__DATA__
@@ migrations
-- 1 up
create table messages (message text);
insert into messages values ('I ♥ Mojolicious!');
-- 1 down
drop table messages;
=head2 from_file
$migrations = $migrations->from_file('/home/sri/migrations.sql');
Extract migrations from a file.
=head2 from_string
$migrations = $migrations->from_string(
'-- 1 up
create table foo (bar int);
-- 1 down
drop table foo;'
);
Extract migrations from string.
=head2 latest
my $version = $migrations->latest;
Latest version available.
=head2 migrate
$migrations = $migrations->migrate;
$migrations = $migrations->migrate(3);
Migrate from L</"active"> to a different version, up or down, defaults to using
L</"latest">. All version numbers need to be positive, with version C<0>
representing an empty database.
# Reset database
$migrations->migrate(0)->migrate;
=head1 DEBUGGING
You can set the C<MOJO_MIGRATIONS_DEBUG> environment variable to get some
advanced diagnostics information printed to C<STDERR>.
MOJO_MIGRATIONS_DEBUG=1
=head1 SEE ALSO
L<Mojo::Pg>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|