#!/usr/bin/perl -w
#
# $Id: tinyca2,v 1.7 2007/03/22 07:52:22 sm Exp $
#
# Copyright (c) Stephan Martin <sm@sm-zone.net>
#
# This program 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 2 of the License, or
# (at your option) any later version.
# 
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.

BEGIN { unshift(@INC, '/usr/share/tinyca2'); # put here the location of the modules
}

use strict;
use Getopt::Long;

use Gtk2 '-init';

use MIME::Base64;

use POSIX;
use Locale::gettext;

use OpenSSL;
use CA;
use GUI;
use HELPERS;
use GUI::TCONFIG;
use GUI::HELPERS;
use GUI::CALLBACK;
use GUI::WORDS;
use GUI::X509_infobox;
use GUI::X509_browser;
use CERT;
use REQ;
use KEY;
use TCONFIG;

my $init = { 'version' => '0.7.5' };
sub version { print STDERR "TinyCA2 ",$init->{'version'},"\n"; }

sub usage
{
    version();
    print STDERR "Usage: tinyca2 [options]\n",
                 "\t--version\tshow program version/exit\n",
                 "\t--ManageCA\tenable CA management options\n",
                 "\n";
    exit(1);
}

print STDERR "To administer more than one CA, call \"tinyca2 --ManageCA\"\n\n";

setlocale(LC_MESSAGES, "");
bindtextdomain("tinyca2", "/usr/share/locale/");
textdomain("tinyca2");

# https://bugs.gentoo.org/show_bug.cgi?id=78576
$ENV{XLIB_SKIP_ARGB_VISUALS}= '1';

$init->{ 'options_ManageCA' } = 0;
usage() unless ( GetOptions (
                  "version" => sub { printf "TinyCA2 %s\n", $init->{'version'};
                                     exit(0);
                                   },
                  "help" => sub { usage(); },
                  "ManageCA" => \$init->{'options_ManageCA'}
                ) );

# location of openssl
$init->{'opensslbin'} = "/usr/bin/openssl";
$init->{'zipbin'} = "/usr/bin/zip";
$init->{'tarbin'} = "/bin/tar";

if(not -x $init->{'opensslbin'}) {
   printf(gettext("Can't execute %s.\n"), $init->{'opensslbin'});
   print gettext("Configure correct path to openssl in tinyca.\n");
   exit(1);
}

if(not -x $init->{'zipbin'}) {
   print gettext("zip command not found, support disabled.\n");
   print gettext("Configure correct path to zip in tinyca.\n");
}

if(not -x $init->{'tarbin'}) {
   print gettext("tar command not found, support disabled.\n");
   print gettext("Configure correct path to tar in tinyca.\n");
}

# directory with the templates
$init->{'templatedir'} = "/etc/tinyca2";

if(not -d $init->{'templatedir'}) {
   print gettext("Can't find templatedir.\n");
   print gettext("Please configure correct path with templates in tinyca.\n");
   exit(1);
}

# location for CA files
if( exists $ENV{'TINYCA_BASEDIR'}) {
    $init->{'basedir'}   = $ENV{'TINYCA_BASEDIR'}
} else {
    $init->{'basedir'}   = $ENV{HOME}."/.TinyCA";
}

if( exists $ENV{'TINYCA_EXPORTDIR'}) {
    $init->{'exportdir'} = $ENV{'TINYCA_EXPORTDIR'};
} else {
    $init->{'exportdir'} = $ENV{HOME};
}

umask(0077);

# create main object and initialize CA
my $gui = GUI->new($init);

# and now run...
$gui->{'mw'}->show_all();

# decide what to do on startup
if(@{$gui->{'CA'}->{'calist'}}) {
   $gui->{'CA'}->get_open_name($gui);
} else {
   $gui->{'CA'}->get_ca_create($gui);
}

sub _ {
   my $s = gettext(@_);
   utf8::decode($s);
   return($s);
}

Gtk2->main();

exit(0);

