Directory changes needed for G+ signin; see tla/stemmaweb@7c6c2a1a
[scpubgit/stemmatology.git] / persistence / lib / Text / Tradition / Directory.pm
CommitLineData
8d9a1cd8 1package Text::Tradition::Directory;
2
3use strict;
4use warnings;
5use Moose;
98a6cab2 6use DBI;
6f9cd3b7 7use Encode qw/ encode decode_utf8 /;
ad1291ee 8use KiokuDB::GC::Naive;
8d9a1cd8 9use KiokuDB::TypeMap;
10use KiokuDB::TypeMap::Entry::Naive;
951ddfe8 11use Safe::Isa;
861c3e27 12use Text::Tradition::Error;
8d9a1cd8 13
cf7e4e7b 14## users
15use KiokuX::User::Util qw(crypt_password);
f3f26624 16use Text::Tradition::Store;
cf7e4e7b 17use Text::Tradition::User;
f3f26624 18use Text::Tradition::TypeMap::Entry;
cf7e4e7b 19
8d9a1cd8 20extends 'KiokuX::Model';
21
8943ff68 22use vars qw/ $VERSION /;
148c2eb1 23$VERSION = "1.2";
8943ff68 24
12523041 25=head1 NAME
26
8943ff68 27Text::Tradition::Directory - a KiokuDB interface for storing and retrieving
28traditions and their owners
12523041 29
30=head1 SYNOPSIS
31
32 use Text::Tradition::Directory;
33 my $d = Text::Tradition::Directory->new(
34 'dsn' => 'dbi:SQLite:mytraditions.db',
35 'extra_args' => { 'create' => 1 },
36 );
37
38 my $tradition = Text::Tradition->new( @args );
37bf09f4 39 my $stemma = $tradition->add_stemma( dotfile => $dotfile ); # if Analysis module installed
12523041 40 $d->save_tradition( $tradition );
12523041 41
42 foreach my $id ( $d->traditions ) {
43 print $d->tradition( $id )->name;
12523041 44 }
770f7a2b 45
46 ## Users:
47 my $userstore = Text::Tradition::UserStore->new(dsn => 'dbi:SQLite:foo.db');
48 my $newuser = $userstore->add_user({ username => 'fred',
49 password => 'somepassword' });
50
51 my $fetchuser = $userstore->find_user({ username => 'fred' });
52 if($fetchuser->check_password('somepassword')) {
53 ## login user or .. whatever
54 }
55
56 my $user = $userstore->deactivate_user({ username => 'fred' });
57 if(!$user->active) {
58 ## shouldnt be able to login etc
59 }
12523041 60
61=head1 DESCRIPTION
62
8943ff68 63Text::Tradition::Directory is an interface for storing and retrieving text
64traditions and all their data, including an associated stemma hypothesis
65and a user who has ownership rights to the tradition data. It is an
66instantiation of a KiokuDB::Model, storing traditions and associated
67stemmas by UUID.
68
69The Text::Tradition::Directory package also includes the
70L<Text::Tradition::User> class for user objects, and the
71L<Text::Tradition::Ownership> role which extends the Text::Tradition class
72to handle user ownership.
12523041 73
770f7a2b 74=head1 ATTRIBUTES
75
76=head2 MIN_PASS_LEN
77
78Constant for the minimum password length when validating passwords,
79defaults to "8".
80
81=cut
82
83has MIN_PASS_LEN => ( is => 'ro', isa => 'Num', default => sub { 8 } );
84
12523041 85=head1 METHODS
86
87=head2 new
88
56cf65bd 89Returns a Directory object.
12523041 90
98a6cab2 91=head2 traditionlist
12523041 92
98a6cab2 93Returns a hashref mapping of ID => name for all traditions in the directory.
12523041 94
95=head2 tradition( $id )
96
97Returns the Text::Tradition object of the given ID.
98
56cf65bd 99=head2 save( $tradition )
12523041 100
56cf65bd 101Writes the given tradition to the database, returning its ID.
12523041 102
d7ba60b4 103=head2 delete( $tradition )
104
105Deletes the given tradition object from the database.
106WARNING!! Garbage collection does not yet work. Use this sparingly.
107
12523041 108=begin testing
109
861c3e27 110use TryCatch;
12523041 111use File::Temp;
951ddfe8 112use Safe::Isa;
12523041 113use Text::Tradition;
12523041 114use_ok 'Text::Tradition::Directory';
115
116my $fh = File::Temp->new();
117my $file = $fh->filename;
118$fh->close;
119my $dsn = "dbi:SQLite:dbname=$file";
861c3e27 120my $uuid;
4ac3ff0b 121my $user = 'user@example.org';
12523041 122my $t = Text::Tradition->new(
56cf65bd 123 'name' => 'inline',
124 'input' => 'Tabular',
125 'file' => 't/data/simple.txt',
126 );
37bf09f4 127my $stemma_enabled = $t->can( 'add_stemma' );
56cf65bd 128
861c3e27 129{
130 my $d = Text::Tradition::Directory->new( 'dsn' => $dsn,
131 'extra_args' => { 'create' => 1 } );
951ddfe8 132 ok( $d->$_isa('Text::Tradition::Directory'), "Got directory object" );
861c3e27 133
134 my $scope = $d->new_scope;
135 $uuid = $d->save( $t );
136 ok( $uuid, "Saved test tradition" );
137
4ac3ff0b 138 # Add a test user
139 my $user = $d->add_user({ username => $user, password => 'UserPass' });
140 $user->add_tradition( $t );
141 $d->store( $user );
142 is( $t->user, $user, "Assigned tradition to test user" );
143
951ddfe8 144 SKIP: {
145 skip "Analysis package not installed", 5 unless $stemma_enabled;
146 my $s = $t->add_stemma( dotfile => 't/data/simple.dot' );
147 ok( $d->save( $t ), "Updated tradition with stemma" );
148 is( $d->tradition( $uuid ), $t, "Correct tradition returned for id" );
149 is( $d->tradition( $uuid )->stemma(0), $s, "...and it has the correct stemma" );
150 try {
151 $d->save( $s );
152 } catch( Text::Tradition::Error $e ) {
153 is( $e->ident, 'database error', "Got exception trying to save stemma directly" );
154 like( $e->message, qr/Cannot directly save non-Tradition object/,
155 "Exception has correct message" );
156 }
861c3e27 157 }
158}
159my $nt = Text::Tradition->new(
160 'name' => 'CX',
161 'input' => 'CollateX',
162 'file' => 't/data/Collatex-16.xml',
163 );
951ddfe8 164ok( $nt->$_isa('Text::Tradition'), "Made new tradition" );
861c3e27 165
166{
167 my $f = Text::Tradition::Directory->new( 'dsn' => $dsn );
168 my $scope = $f->new_scope;
98a6cab2 169 is( scalar $f->traditionlist, 1, "Directory index has our tradition" );
861c3e27 170 my $nuuid = $f->save( $nt );
171 ok( $nuuid, "Stored second tradition" );
98a6cab2 172 my @tlist = $f->traditionlist;
173 is( scalar @tlist, 2, "Directory index has both traditions" );
861c3e27 174 my $tf = $f->tradition( $uuid );
98a6cab2 175 my( $tlobj ) = grep { $_->{'id'} eq $uuid } @tlist;
176 is( $tlobj->{'name'}, $tf->name, "Directory index has correct tradition name" );
861c3e27 177 is( $tf->name, $t->name, "Retrieved the tradition from a new directory" );
951ddfe8 178 my $sid;
179 SKIP: {
180 skip "Analysis package not installed", 4 unless $stemma_enabled;
181 $sid = $f->object_to_id( $tf->stemma(0) );
182 try {
183 $f->tradition( $sid );
184 } catch( Text::Tradition::Error $e ) {
185 is( $e->ident, 'database error', "Got exception trying to fetch stemma directly" );
186 like( $e->message, qr/not a Text::Tradition/, "Exception has correct message" );
187 }
148c2eb1 188 if( $ENV{TEST_DELETION} ) {
189 try {
190 $f->delete( $sid );
191 } catch( Text::Tradition::Error $e ) {
192 is( $e->ident, 'database error', "Got exception trying to delete stemma directly" );
193 like( $e->message, qr/Cannot directly delete non-Tradition object/,
194 "Exception has correct message" );
195 }
951ddfe8 196 }
861c3e27 197 }
ad39942e 198
148c2eb1 199 SKIP: {
200 skip "Set TEST_DELETION in env to test DB deletion functionality", 3
201 unless $ENV{TEST_DELETION};
202 $f->delete( $uuid );
203 ok( !$f->exists( $uuid ), "Object is deleted from DB" );
204 ok( !$f->exists( $sid ), "Object stemma also deleted from DB" ) if $stemma_enabled;
205 is( scalar $f->traditionlist, 1, "Object is deleted from index" );
206 }
861c3e27 207}
208
4ac3ff0b 209{
861c3e27 210 my $g = Text::Tradition::Directory->new( 'dsn' => $dsn );
211 my $scope = $g->new_scope;
148c2eb1 212 SKIP: {
213 skip "Set TEST_DELETION in env to test DB deletion functionality", 1
214 unless $ENV{TEST_DELETION};
215 is( scalar $g->traditionlist, 1, "Now one object in new directory index" );
216 }
ad39942e 217 my $ntobj = $g->tradition( 'CX' );
09909f9d 218 my @w1 = sort { $a->sigil cmp $b->sigil } $ntobj->witnesses;
219 my @w2 = sort{ $a->sigil cmp $b->sigil } $nt->witnesses;
ad39942e 220 is_deeply( \@w1, \@w2, "Looked up remaining tradition by name" );
861c3e27 221}
12523041 222
223=end testing
224
225=cut
fc7b6388 226use Text::Tradition::TypeMap::Entry;
12523041 227
12523041 228has +typemap => (
fc7b6388 229 is => 'rw',
230 isa => 'KiokuDB::TypeMap',
231 default => sub {
232 KiokuDB::TypeMap->new(
233 isa_entries => {
f3f26624 234 # now that we fall back to YAML deflation, all attributes of
235 # Text::Tradition will be serialized to YAML as individual objects
236 # Except if we declare a specific entry type here
fc7b6388 237 "Text::Tradition" =>
f3f26624 238 KiokuDB::TypeMap::Entry::MOP->new(),
239 # We need users to be naive entries so that they hold
240 # references to the original tradition objects, not clones
241 "Text::Tradition::User" =>
242 KiokuDB::TypeMap::Entry::MOP->new(),
243 "Text::Tradition::Collation" =>
244 KiokuDB::TypeMap::Entry::MOP->new(),
245 "Text::Tradition::Witness" =>
246 KiokuDB::TypeMap::Entry::MOP->new(),
fb4caab6 247 "Graph" => Text::Tradition::TypeMap::Entry->new(),
7e17346f 248 "Set::Scalar" => Text::Tradition::TypeMap::Entry->new(),
fc7b6388 249 }
250 );
251 },
8d9a1cd8 252);
253
6f9cd3b7 254has '_mysql_utf8_hack' => (
255 is => 'ro',
256 isa => 'Bool',
257 default => undef,
258);
259
98a6cab2 260# Push some columns into the extra_args
261around BUILDARGS => sub {
262 my $orig = shift;
263 my $class = shift;
264 my $args;
265 if( @_ == 1 ) {
266 $args = $_[0];
267 } else {
268 $args = { @_ };
269 }
f3f26624 270 my @column_args;
6f9cd3b7 271 if( $args->{'dsn'} =~ /^dbi:(\w+):/ ) { # We're using Backend::DBI
272 my $dbtype = $1;
f3f26624 273 @column_args = ( 'columns',
52dcc672 274 [ 'name' => { 'data_type' => 'varchar', 'is_nullable' => 1 },
275 'public' => { 'data_type' => 'bool', 'is_nullable' => 1 } ] );
6f9cd3b7 276 if( $dbtype eq 'mysql' &&
277 exists $args->{extra_args}->{dbi_attrs} &&
278 $args->{extra_args}->{dbi_attrs}->{mysql_enable_utf8} ) {
279 # There is a bad interaction with MySQL in utf-8 mode.
280 # Work around it here.
281 # TODO fix the underlying storage problem
282 $args->{extra_args}->{dbi_attrs}->{mysql_enable_utf8} = undef;
283 $args->{_mysql_utf8_hack} = 1;
284 }
98a6cab2 285 }
f3f26624 286 my $ea = $args->{'extra_args'};
287 if( ref( $ea ) eq 'ARRAY' ) {
288 push( @$ea, @column_args );
289 } elsif( ref( $ea ) eq 'HASH' ) {
290 $ea = { %$ea, @column_args };
291 } else {
292 $ea = { @column_args };
293 }
294 $args->{'extra_args'} = $ea;
295
98a6cab2 296 return $class->$orig( $args );
297};
298
f3f26624 299override _build_directory => sub {
300 my($self) = @_;
301 Text::Tradition::Store->connect(@{ $self->_connect_args },
302 resolver_constructor => sub {
303 my($class) = @_;
304 $class->new({ typemap => $self->directory->merged_typemap,
305 fallback_entry => Text::Tradition::TypeMap::Entry->new() });
306 });
307};
308
7cb56251 309## These checks don't cover store($id, $obj)
fc7b6388 310# before [ qw/ store update insert delete / ] => sub {
311before [ qw/ delete / ] => sub {
8d9a1cd8 312 my $self = shift;
861c3e27 313 my @nontrad;
314 foreach my $obj ( @_ ) {
951ddfe8 315 if( ref( $obj ) && !$obj->$_isa( 'Text::Tradition' )
316 && !$obj->$_isa('Text::Tradition::User') ) {
861c3e27 317 # Is it an id => Tradition hash?
318 if( ref( $obj ) eq 'HASH' && keys( %$obj ) == 1 ) {
319 my( $k ) = keys %$obj;
951ddfe8 320 next if $obj->{$k}->$_isa('Text::Tradition');
8d9a1cd8 321 }
861c3e27 322 push( @nontrad, $obj );
8d9a1cd8 323 }
12523041 324 }
861c3e27 325 if( @nontrad ) {
326 throw( "Cannot directly save non-Tradition object of type "
327 . ref( $nontrad[0] ) );
328 }
329};
12523041 330
d7ba60b4 331# TODO Garbage collection doesn't work. Suck it up and live with the
332# inflated DB.
d94224d9 333after delete => sub {
334 my $self = shift;
335 my $gc = KiokuDB::GC::Naive->new( backend => $self->directory->backend );
336 $self->directory->backend->delete( $gc->garbage->members );
337};
56cf65bd 338
339sub save {
861c3e27 340 my $self = shift;
341 return $self->store( @_ );
12523041 342}
343
56cf65bd 344sub tradition {
345 my( $self, $id ) = @_;
346 my $obj = $self->lookup( $id );
ad39942e 347 unless( $obj ) {
348 # Try looking up by name.
349 foreach my $item ( $self->traditionlist ) {
350 if( $item->{'name'} eq $id ) {
351 $obj = $self->lookup( $item->{'id'} );
352 last;
353 }
354 }
355 }
951ddfe8 356 if( $obj && !$obj->$_isa('Text::Tradition') ) {
861c3e27 357 throw( "Retrieved object is a " . ref( $obj ) . ", not a Text::Tradition" );
12523041 358 }
56cf65bd 359 return $obj;
12523041 360}
8d9a1cd8 361
98a6cab2 362sub traditionlist {
861c3e27 363 my $self = shift;
fefeeeda 364 my ($user) = @_;
365
366 return $self->user_traditionlist($user) if($user);
02d9cb95 367 return $self->_get_object_idlist( 'Text::Tradition' );
368}
fefeeeda 369
02d9cb95 370sub _get_object_idlist {
371 my( $self, $objclass ) = @_;
fefeeeda 372 my @tlist;
98a6cab2 373 # If we are using DBI, we can do it the easy way; if not, the hard way.
374 # Easy way still involves making a separate DBI connection. Ew.
0a900793 375 if( $self->dsn =~ /^dbi:(\w+):/ ) {
376 my $dbtype = $1;
98a6cab2 377 my @connection = @{$self->directory->backend->connect_info};
378 # Get rid of KiokuDB-specific arg
379 pop @connection if scalar @connection > 4;
0a900793 380 $connection[3]->{'sqlite_unicode'} = 1 if $dbtype eq 'SQLite';
381 $connection[3]->{'pg_enable_utf8'} = 1 if $dbtype eq 'Pg';
98a6cab2 382 my $dbh = DBI->connect( @connection );
02d9cb95 383 my $q = $dbh->prepare( 'SELECT id, name, public from entries WHERE class = "'
384 . $objclass . '"' );
98a6cab2 385 $q->execute();
386 while( my @row = $q->fetchrow_array ) {
6f9cd3b7 387 # Horrible horrible hack. Re-convert the name to UTF-8.
388 if( $self->_mysql_utf8_hack ) {
389 # Convert the chars into a raw bytestring.
390 my $octets = encode( 'ISO-8859-1', $row[1] );
391 $row[1] = decode_utf8( $octets );
392 }
52dcc672 393 push( @tlist, { 'id' => $row[0], 'name' => $row[1], 'public' => $row[2] } );
98a6cab2 394 }
395 } else {
396 $self->scan( sub { my $o = shift;
397 push( @tlist, { 'id' => $self->object_to_id( $o ),
52dcc672 398 'name' => $o->name,
02d9cb95 399 'public' => $o->public } )
400 if( ref $o eq $objclass ) } );
98a6cab2 401 }
402 return @tlist;
861c3e27 403}
404
405sub throw {
406 Text::Tradition::Error->throw(
407 'ident' => 'database error',
408 'message' => $_[0],
409 );
410}
411
cf7e4e7b 412
413# has 'directory' => (
414# is => 'rw',
415# isa => 'KiokuX::Model',
416# handles => []
417# );
418
419## TODO: Some of these methods should probably optionally take $user objects
420## instead of hashrefs.
421
422## It also occurs to me that all these methods don't need to be named
423## XX_user, but leaving that way for now incase we merge this code
424## into ::Directory for one-store.
425
a445ce40 426=head1 USER DIRECTORY METHODS
cf7e4e7b 427
a445ce40 428=head2 add_user( $userinfo )
cf7e4e7b 429
430Takes a hashref of C<username>, C<password>.
431
432Create a new user object, store in the KiokuDB backend, and return it.
433
434=cut
435
436sub add_user {
437 my ($self, $userinfo) = @_;
10ef7653 438
439 my $username = $userinfo->{username};
cf7e4e7b 440 my $password = $userinfo->{password};
7cb56251 441 my $role = $userinfo->{role} || 'user';
cf7e4e7b 442
11a9ecda 443 if ($userinfo->{sub}) {
444 $username = $userinfo->{sub};
445 }
446
b77f6c1b 447 throw( "No username given" ) unless $username;
448 throw( "Invalid password - must be at least " . $self->MIN_PASS_LEN
449 . " characters long" )
11a9ecda 450 unless ( $self->validate_password($password) || $username =~ /^https?:/ || exists ($userinfo->{openid_id}) || exists ($userinfo->{sub}));
cf7e4e7b 451
452 my $user = Text::Tradition::User->new(
453 id => $username,
454 password => ($password ? crypt_password($password) : ''),
a528f0f6 455 email => ($userinfo->{email} ? $userinfo->{email} : $username),
7cb56251 456 role => $role,
cf7e4e7b 457 );
458
cf7e4e7b 459 $self->store($user->kiokudb_object_id, $user);
460
461 return $user;
462}
463
a445ce40 464=head2 create_user( $userinfo )
465
466Takes a hashref that can either be suitable for add_user (see above) or be
467a hash of OpenID user information from Credential::OpenID.
468
469=cut
470
cf7e4e7b 471sub create_user {
10ef7653 472 my ($self, $userinfo) = @_;
473
474 ## No username means probably an OpenID based user
475 if(!exists $userinfo->{username}) {
a445ce40 476 _extract_openid_data($userinfo);
10ef7653 477 }
478
479 return $self->add_user($userinfo);
480}
481
482## Not quite sure where this method should be.. Auth /
483## Credential::OpenID just pass us back the chunk of extension data
a445ce40 484sub _extract_openid_data {
10ef7653 485 my ($userinfo) = @_;
486
487 ## Spec says SHOULD use url as identifier
488 $userinfo->{username} = $userinfo->{url};
489
490 ## Use email addy as display if available
491 if(exists $userinfo->{extensions} &&
492 exists $userinfo->{extensions}{'http://openid.net/srv/ax/1.0'} &&
493 defined $userinfo->{extensions}{'http://openid.net/srv/ax/1.0'}{'value.email'}) {
494 ## Somewhat ugly attribute extension reponse, contains
495 ## google-email string which we can use as the id
496
a528f0f6 497 $userinfo->{email} = $userinfo->{extensions}{'http://openid.net/srv/ax/1.0'}{'value.email'};
10ef7653 498 }
499
500 return;
cf7e4e7b 501}
502
a445ce40 503=head2 find_user( $userinfo )
cf7e4e7b 504
a4c19656 505Takes a hashref of C<username> or C<email>, and possibly openIDish results from
10ef7653 506L<Net::OpenID::Consumer>.
cf7e4e7b 507
508Fetches the user object for the given username and returns it.
509
510=cut
511
512sub find_user {
513 my ($self, $userinfo) = @_;
10ef7653 514
a4c19656 515 ## A URL field means probably an OpenID based user
516 if( exists $userinfo->{url} ) {
a445ce40 517 _extract_openid_data($userinfo);
10ef7653 518 }
519
11a9ecda 520 if (exists $userinfo->{sub} && exists $userinfo->{openid_id}) {
521 return $self->_find_gplus($userinfo);
522 }
523
a4c19656 524 my $user;
525 if( exists $userinfo->{username} ) {
526 my $username = $userinfo->{username};
527 ## No logins if user is deactivated (use lookup to fetch to re-activate)
528 $user = $self->lookup(Text::Tradition::User->id_for_user($username));
529 ## If there is an inactive user, skip it
530 return if( $user && !$user->active );
531 } elsif( exists $userinfo->{email} ) {
532 ## Scan the users looking for a matching email
533 my @matches;
534 $self->scan( sub { push( @matches, @_ )
535 if $_[0]->isa('Text::Tradition::User')
536 && $_[0]->email eq $userinfo->{email} } );
537 $user = shift @matches;
538 }
c80a73ea 539# print STDERR "Found user, $username, email is :", $user->email, ":\n";
df8c12f0 540 return $user;
cf7e4e7b 541}
542
11a9ecda 543sub _find_gplus {
544 my ($self, $userinfo) = @_;
545
546 my $sub = $userinfo->{sub};
547 my $openid = $userinfo->{openid_id};
548
549 # Do we have a user with the google id already?
550
551 my $user = $self->find_user({
552 username => $sub
553 });
554
555 if ($user) {
556 return $user;
557 }
558
559 # Do we have a user with the openid?
560
561 $user = $self->find_user({
562 url => $openid
563 });
564
565 if (!$user) {
566 return undef;
567 }
568
569 my $new_user = $self->add_user({
570 username => $sub,
571 password => $user->password,
572 role => $user->role,
573 active => $user->active,
574 sub => $sub,
575 openid_id => $openid,
576 });
577
578 foreach my $t (@{ $user->traditions }) {
579 $new_user->add_tradition($t);
580 }
581
582 #$self->delete_user({ username => $user->id });
583 return $new_user;
584}
585
a445ce40 586=head2 modify_user( $userinfo )
cf7e4e7b 587
588Takes a hashref of C<username> and C<password> (same as add_user).
589
590Retrieves the user, and updates it with the new information. Username
591changing is not currently supported.
592
593Returns the updated user object, or undef if not found.
594
595=cut
596
597sub modify_user {
598 my ($self, $userinfo) = @_;
599 my $username = $userinfo->{username};
600 my $password = $userinfo->{password};
4d4c5789 601 my $role = $userinfo->{role};
cf7e4e7b 602
52dcc672 603 throw( "Missing username" ) unless $username;
cf7e4e7b 604
cf7e4e7b 605 my $user = $self->find_user({ username => $username });
b77f6c1b 606 throw( "Could not find user $username" ) unless $user;
cf7e4e7b 607
4d4c5789 608 if($password) {
52dcc672 609 throw( "Bad password" ) unless $self->validate_password($password);
4d4c5789 610 $user->password(crypt_password($password));
611 }
612 if($role) {
613 $user->role($role);
614 }
cf7e4e7b 615
616 $self->update($user);
617
618 return $user;
619}
620
a445ce40 621=head2 deactivate_user( $userinfo )
cf7e4e7b 622
623Takes a hashref of C<username>.
624
625Sets the users C<active> flag to false (0), and sets all traditions
626assigned to them to non-public, updates the storage and returns the
627deactivated user.
628
629Returns undef if user not found.
630
631=cut
632
633sub deactivate_user {
634 my ($self, $userinfo) = @_;
635 my $username = $userinfo->{username};
636
b77f6c1b 637 throw( "Need to specify a username for deactivation" ) unless $username;
cf7e4e7b 638
639 my $user = $self->find_user({ username => $username });
b77f6c1b 640 throw( "User $username not found" ) unless $user;
cf7e4e7b 641
642 $user->active(0);
643 foreach my $tradition (@{ $user->traditions }) {
644 ## Not implemented yet
645 # $tradition->public(0);
646 }
cf7e4e7b 647
648 ## Should we be using Text::Tradition::Directory also?
649 $self->update(@{ $user->traditions });
650
651 $self->update($user);
652
653 return $user;
654}
655
a445ce40 656=head2 reactivate_user( $userinfo )
cf7e4e7b 657
658Takes a hashref of C<username>.
659
660Returns the user object if already activated. Activates (sets the
661active flag to true (1)), updates the storage and returns the user.
662
663Returns undef if the user is not found.
664
665=cut
666
667sub reactivate_user {
668 my ($self, $userinfo) = @_;
669 my $username = $userinfo->{username};
670
b77f6c1b 671 throw( "Need to specify a username for reactivation" ) unless $username;
cf7e4e7b 672
df8c12f0 673 my $user = $self->lookup(Text::Tradition::User->id_for_user($username));
b77f6c1b 674 throw( "User $username not found" ) unless $user;
cf7e4e7b 675
676 return $user if $user->active;
677
678 $user->active(1);
679 $self->update($user);
680
681 return $user;
682}
683
a445ce40 684=head2 delete_user( $userinfo )
cf7e4e7b 685
770f7a2b 686CAUTION: Deletes actual data!
cf7e4e7b 687
688Takes a hashref of C<username>.
689
690Returns undef if the user doesn't exist.
691
692Removes the user from the store and returns 1.
693
694=cut
695
696sub delete_user {
697 my ($self, $userinfo) = @_;
698 my $username = $userinfo->{username};
699
b77f6c1b 700 throw( "Need to specify a username for deletion" ) unless $username;
cf7e4e7b 701
cf7e4e7b 702 my $user = $self->find_user({ username => $username });
b77f6c1b 703 throw( "User $username not found" ) unless $user;
cf7e4e7b 704
705 ## Should we be using Text::Tradition::Directory for this bit?
706 $self->delete( @{ $user->traditions });
707
708 ## Poof, gone.
709 $self->delete($user);
710
711 return 1;
712}
713
a445ce40 714=head2 validate_password( $password )
cf7e4e7b 715
716Takes a password string. Returns true if it is longer than
717L</MIN_PASS_LEN>, false otherwise.
718
719Used internally by L</add_user>.
720
721=cut
722
723sub validate_password {
724 my ($self, $password) = @_;
725
726 return if !$password;
727 return if length($password) < $self->MIN_PASS_LEN;
728
729 return 1;
730}
731
a445ce40 732=head2 user_traditionlist( $user )
733
734Returns a tradition list (see specification above) but containing only
735those traditions visible to the specified user. If $user is the string
736'public', returns only publicly-viewable traditions.
737
738=cut
739
740sub user_traditionlist {
741 my ($self, $user) = @_;
742
743 my @tlist;
744 if(ref $user && $user->is_admin) {
745 ## Admin sees all
746 return $self->traditionlist();
747 } elsif(ref $user) {
748 ## We have a user object already, so just fetch its traditions and use tose
749 foreach my $t (@{ $user->traditions }) {
750 push( @tlist, { 'id' => $self->object_to_id( $t ),
751 'name' => $t->name } );
752 }
753 return @tlist;
754 } elsif($user ne 'public') {
755 die "Passed neither a user object nor 'public' to user_traditionlist";
756 }
757
758 ## Search for all traditions which allow public viewing
759 my @list = grep { $_->{public} } $self->traditionlist();
760 return @list;
761}
762
8d9a1cd8 7631;
12523041 764
027d819c 765=head1 LICENSE
766
767This package is free software and is provided "as is" without express
768or implied warranty. You can redistribute it and/or modify it under
769the same terms as Perl itself.
770
8943ff68 771=head1 AUTHORS
772
773Tara L Andrews E<lt>aurum@cpan.orgE<gt> (initial release)
774
775Shadowcat Systems L<http://www.scsys.co.uk/> (user functionality; making it all work)
027d819c 776