App-Dochazka-CLI
view release on metacpan or search on metacpan
lib/App/Dochazka/CLI/Guide.pm view on Meta::CPAN
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# *************************************************************************
#
# "CLI Guide" module
#
package App::Dochazka::CLI::Guide;
=head1 NAME
App::Dochazka::CLI::Guide - Dochazka CLI Guide
=head1 VERSION
Version 0.240
=cut
our $VERSION = '0.240';
=head1 CLI COMMANDS
=head2 Introduction
The CLI commands can be divided into four categories:
=over
=item L<"Commands for generating HTTP requests">
=item L<"Commands for Dochazka administrators">
=item L<"Commands for Dochazka supervisors">
=item L<"Commands for Dochazka users">
=back
=head2 Commands for generating HTTP requests
The CLI enables the user to generate HTTP requests to an L<App::Dochazka::REST>
server and view the server's responses. Commands in this category -- also known
as "REST test" commands -- have a direct correlation with the REST server
resources, always starting with one of the four basic HTTP methods supported by
the REST server: C<GET>, C<PUT>, C<POST>, C<DELETE>. These commands
are useful mainly for Dochazka developers, but may also be used by
administrators and normal users -- e.g., for troubleshooting and ad hoc
testing, or for doing things that the "normal" commands do not support. A "best
effort" has been made to support all the REST resources.
Commands in this category start with the HTTP method and continue
with the resource (except it is written with spaces instead of forward
slashes) and concludes with the request entity, if any.
All CLI commands must be written on a single line of input, and
commands in this category are no exception.
Examples:
=over
=item DELETE INTERVAL IID 24
The equivalent of C<< DELETE interval/iid/24 >>
=item POST DOCU TEXT "employee/eid/:eid"
The equivalent of C<< POST docu/text >> with the request entity shown.
=item POST EMPLOYEE EID { "eid" : 15, "sec_id" : 340 }
Update the secondary ID of the employee with EID 15.
=back
A full list of REST test commands can be found in the source code of the
L<App::Dochazka::CLI::CommandMap> module.
=head2 Commands for Dochazka administrators
Dochazka administrators have access to all of Dochazka's resources and can
call them directly by generating appropriate HTTP requests. This can be a bit
tedious, however, so "real" CLI commands have been implemented for the more
commonly used administrative procedures, like changing an employee's privilege
level or schedule, removing locks, viewing attendance data entered by
employees, etc.
These commands are detailed in the L<"ADMINISTRATOR WORKFLOWS"> section.
=head2 Commands for Dochazka supervisors
Supervisors are Dochazka users who, in "real life", are in charge of a group of
employees who report to them. The idea here is that the supervisor can view and
modify the attendance data and other records of their reports (i.e. of the
employees in their team or department). The commands used for this purpose are
a subset of the administrator commands.
These commands are detailed in the L<"SUPERVISOR WORKFLOWS"> section.
=head2 Commands for Dochazka users
Finally there are the core, day-to-day commands used by Dochazka users
(employees of the organization) to enter attendance data, generate reports,
etc.
These commands are detailed in the L<"USER WORKFLOWS"> section.
=head1 ADMINISTRATOR WORKFLOWS
=head2 Activities
=head3 View all activities, including disabled
ACTIVITY ALL DISABLED
Displays a list of B<all> activities, including disabled activities.
=head3 Add a new activity
From time to time, new activities will need to be added:
PUT activity code $CODE { "long_desc" : "activity description here" }
Optionally, a "remark" property can be included as well.
=head3 Disable an activity
To accomplish this, we can use a REST test command:
PUT activity aid $AID { "disabled" : "t" }
PUT activity code $CODE { "disabled" : "t" }
=head3 Re-enable an activity
To accomplish this, we can use a REST test command:
PUT activity aid $AID { "disabled" : "f" }
PUT activity code $CODE { "disabled" : "f" }
=head3 Delete an activity
Assuming nothing points to it, an activity can be deleted:
DELETE activity aid $AID
DELETE activity code $CODE
=head2 Employees
=head3 Specify an employee
Wherever it is necessary to specify an employee, the command is shown as
EMPLOYEE_SPEC
This has a special meaning and is not meant to be typed in verbatim.
C<EMPLOYEE_SPEC> can be given in any of the following ways:
EMPLOYEE=$NICK
EMPLOYEE=$SEC_ID
EMPLOYEE=$EID
(where C<$NICK> is an employee nick, C<$SEC_ID> is an employee secondary ID,
and C<$EID> is an employee ID (EID))
If, for some reason, this does not lead to the desired result, you can
force a lookup on a particular property:
NICK=$NICK
SEC_ID=$SEC_ID
EID=$EID
Note that there must not be any whitespace before or after the equal sign.
=head3 Get list of employees
Commands to list all employees, or just those with a given
privilege level:
EMPLOYEE LIST # lists all employees
EMPLOYEE LIST admin
EMPLOYEE LIST active
EMPLOYEE LIST inactive
EMPLOYEE LIST passerby
Only nicks are shown, in alphabetical order.
=head3 Create a new employee
If you are using LDAP authentication, your employees are in the LDAP database
and you can turn on DOCHAZKA_LDAP_AUTOCREATE. Then employees will be created
automatically the first time they log in. Alternatively, employees can be
created manually:
PUT employee nick $NICK { "fullname" : "King George III" }
In addition to "fullname", the following properties can be specified inside
the curly brackets:
sec_id
email
password
remark
For example, to add an employee with nick 'nancy' the command might look like
this:
PUT employee nick nancy { "fullname" : "Nancy Bright Red", "email" : "nancy@identity.org" }
The new employee will have passerby privileges only until a privhistory record
is created (see L<"Add privilege history record">, below).
=head3 Set employee secondary ID
To manually change an employee's secondary ID, do one of the following:
EMPLOYEE_SPEC SEC_ID $SEC_ID
EMPLOYEE_SPEC SET SEC_ID $SEC_ID
Example:
EMPLOYEE=joe SET SEC_ID 4553
=head3 Set employee full name
To manually change an employee's full name, do one of the following:
EMPLOYEE_SPEC FULLNAME $WHATEVER
EMPLOYEE_SPEC SET FULLNAME $WHATEVER
Examples:
EMPLOYEE=baird FULLNAME Joseph Baird
EMPLOYEE=baird FULLNAME JUDr. Joseph Peacock Baird LLM, Esq.
Do not use any quotes in or around the full name.
=head3 Set employee password
To manually change an employee's password, do:
EMPLOYEE_SPEC PASSWORD
EMPLOYEE_SPEC SET PASSWORD
You will be asked to type in the new password twice. This updates the password
that Dochazka stores in the 'employees' table. Whether this has any effect on
the user's ability to log in depends on what authentication method is being
used and where the passwords for that method are stored.
=head2 Schedules
=head3 View all schedules (including disabled schedules)
All existing schedules can be dumped to the screen:
SCHEDULES FETCH ALL
Note that this does not include disabled schedules. To include those in the
listing, use this command:
SCHEDULES FETCH ALL DISABLED
=head3 View an individual schedule (by SID or SCODE)
lib/App/Dochazka/CLI/Guide.pm view on Meta::CPAN
=head4 Submit working schedule to REST server
Once you are satisfied with your working schedule, submit it to the REST server
like this:
SCHEDULE NEW
This is the "moment of truth" when you find out if the schedule is "kosher"
enough to make it into the database.
Example with overlapping intervals:
Dochazka(2015-04-08) root ADMIN> schedule memory
[ MON 23:00, TUE 03:30 )
[ MON 23:00, TUE 03:40 )
Dochazka(2015-04-08) root ADMIN> schedule new
*** Anomaly detected ***
Status: 500 Internal Server Error
ERR: DBI reports DBD::Pg::st execute failed: ERROR: conflicting key value violates
exclusion constraint "schedintvls_ssid_intvl_excl"DETAIL: Key (ssid, intvl)=(11,
["2015-03-23 23:00:00+01","2015-03-24 03:40:00+01")) conflicts with existing key
(ssid, intvl)=(11, ["2015-03-23 23:00:00+01","2015-03-24 03:30:00+01")). at
/usr/lib/perl5/site_perl/5.20.1/App/Dochazka/REST/Model/Schedintvls.pm line 183.
=head4 Clear the working schedule
The working schedule can be cleared:
SCHEDULE CLEAR
=head3 Add a remark to a schedule
Once you manage to get a schedule into the database, you can add a remark to
it:
SCHEDULE_SPEC REMARK $REMARK
SCHEDULE_SPEC SET REMARK $REMARK
The remark can contain whitespace, but should not contain any quotation marks.
The same command can be used to change an existing remark. To delete an existing
remark, leave out C<$REMARK>.
=head3 Set or modify scode
Once you manage to get a schedule into the database, you can set or modify its
scode:
SCHEDULE_SPEC SCODE $REMARK
SCHEDULE_SPEC SET SCODE $REMARK
The scode may contain only ASCII letters, numerals, underscores, and hyphens.
=head3 Disable a schedule
Assuming we know the SID or scode of the schedule, we can disable it:
PUT SCHEDULE SID $SID { "disabled" : "t" }
PUT SCHEDULE SCODE $SCODE { "disabled" : "t" }
=head3 Re-enable a schedule
To re-enable a disabled schedule:
PUT SCHEDULE SID $SID { "disabled" : "f" }
PUT SCHEDULE SCODE $SCODE { "disabled" : "f" }
=head2 Histories
Maintaining/updating employee history records (recording changes in privilege
level and schedule, primarily) is a typical administrator workflow.
=head3 Add privilege history record
EMPLOYEE_SPEC PRIV_SPEC _TIMESTAMP
EMPLOYEE_SPEC SET PRIV_SPEC _TIMESTAMP
EMPLOYEE_SPEC PRIV_SPEC EFFECTIVE _TIMESTAMP
EMPLOYEE_SPEC SET PRIV_SPEC EFFECTIVE _TIMESTAMP
(In other words, the SET and EFFECTIVE keywords can be omitted.)
Examples:
Employee joe becomes an active employee as of 2015-06-30 00:00:
EMPLOYEE=joe active 2015-06-30
The employee with secondary ID 634 becomes a passerby as of 1958-04-27
SEC_ID=634 passerby EFFECTIVE 1958-04-27
=head3 Add schedule history record
EMPLOYEE_SPEC SCHEDULE_SPEC _TIMESTAMP
EMPLOYEE_SPEC SET SCHEDULE_SPEC _TIMESTAMP
EMPLOYEE_SPEC SCHEDULE_SPEC EFFECTIVE _TIMESTAMP
EMPLOYEE_SPEC SET SCHEDULE_SPEC EFFECTIVE _TIMESTAMP
(In other words, the SET and EFFECTIVE keywords can be omitted.)
Examples:
Employee joe goes on schedule KOBOLD as of 2015-06-30 00:00:
EMPLOYEE=joe scode=KOBOLD 2015-06-30
The employee with secondary ID 634 goes on the schedule with SID 32 as of 1958-04-27
SEC_ID=634 SET SID=32 EFFECTIVE 1958-04-27
=head3 Add remark to history record
Privilege and schedule history records can have remarks associated with them,
which can be a handy way to remember why the privelege/schedule took place.
The first column of the history listing:
EMPL=joe PRIV HISTORY
is either PHID (Privilege History ID) or SHID (Schedule History ID). To add a
remark to PHID 352, do the following:
PHID=352 REMARK Employee fired by Big Bad Boss
( run in 0.531 second using v1.01-cache-2.11-cpan-ceb78f64989 )