Bug 17459: Add a script to create a superlibrarian user
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 17 Oct 2016 17:01:07 +0000 (18:01 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 28 Oct 2016 16:55:44 +0000 (16:55 +0000)
This is for developers: it's quite long (many clics) to create a new
superlibrarian user.
This new script creates a new user with superlibrarian permissions with
the easy to remember credential koha/koha

Test plan:
  perl misc/devel/create_superlibrarian.pl
Log in to Koha using koha/koha

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
misc/devel/create_superlibrarian.pl [new file with mode: 0644]

diff --git a/misc/devel/create_superlibrarian.pl b/misc/devel/create_superlibrarian.pl
new file mode 100644 (file)
index 0000000..3c8dc5d
--- /dev/null
@@ -0,0 +1,49 @@
+#!/usr/bin/perl
+
+# This file is part of Koha.
+#
+# Copyright 2016 Koha Development Team
+#
+# Koha 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 3 of the License, or
+# (at your option) any later version.
+#
+# Koha 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 Koha; if not, see <http://www.gnu.org/licenses>.
+
+
+use Modern::Perl;
+
+use C4::Installer;
+use C4::Context;
+use C4::Members;
+
+use Koha::DateUtils;
+use Koha::Libraries;
+use Koha::Patrons;
+use Koha::Patron::Categories;
+
+my $library         = Koha::Libraries->search->next;
+my $patron_category = Koha::Patron::Categories->search->next;
+
+die "Not enough data in the database, library and/or patron category does not exist"
+  unless $library and $patron_category;
+
+die "A patron with userid 'koha' already exists"   if Koha::Patrons->find( { userid     => 'koha' } );
+die "A patron with cardnumber '42' already exists" if Koha::Patrons->find( { cardnumber => 'koha' } );
+
+AddMember(
+    surname      => 'koha',
+    userid       => 'koha',
+    cardnumber   => 42,
+    branchcode   => $library->branchcode,
+    categorycode => $patron_category->categorycode,
+    password     => 'koha',
+    flags        => 1,
+);