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
|
# --
# Kernel/Output/HTML/PreferencesSMIME.pm
# Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id: PreferencesSMIME.pm,v 1.5 2007/08/20 16:09:46 tr Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::Output::HTML::PreferencesSMIME;
use strict;
use Kernel::System::Crypt;
use vars qw($VERSION);
$VERSION = '$Revision: 1.5 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
sub new {
my $Type = shift;
my %Param = @_;
# allocate new hash for object
my $Self = {};
bless ($Self, $Type);
# get env
foreach (keys %Param) {
$Self->{$_} = $Param{$_};
}
# get needed objects
foreach (qw(ConfigObject LogObject DBObject LayoutObject UserID ParamObject ConfigItem MainObject)) {
die "Got no $_!" if (!$Self->{$_});
}
return $Self;
}
sub Param {
my $Self = shift;
my %Param = @_;
my @Params = ();
if (!$Self->{ConfigObject}->Get('SMIME')) {
return ();
}
push (@Params, {
%Param,
Name => $Self->{ConfigItem}->{PrefKey},
Block => 'Upload',
Filename => $Param{UserData}->{"SMIMEFilename"},
},
);
return @Params;
}
sub Run {
my $Self = shift;
my %Param = @_;
my %UploadStuff = $Self->{ParamObject}->GetUploadAll(
Param => "UserSMIMEKey",
Source => 'String',
);
if (!$UploadStuff{Content}) {
return 1;
}
my $CryptObject = Kernel::System::Crypt->new(
LogObject => $Self->{LogObject},
DBObject => $Self->{DBObject},
ConfigObject => $Self->{ConfigObject},
CryptType => 'SMIME',
MainObject => $Self->{MainObject},
);
if (!$CryptObject) {
return 1;
}
my $Message = $CryptObject->CertificateAdd(Certificate => $UploadStuff{Content});
if (!$Message) {
$Self->{Error} = $Self->{LogObject}->GetLogEntry(
Type => 'Error',
What => 'Message',
);
return;
}
else {
my %Attributes = $CryptObject->CertificateAttributes(
Certificate => $UploadStuff{Content},
);
if ($Attributes{Hash}) {
$UploadStuff{Filename} = "$Attributes{Hash}.pem";
}
$Self->{UserObject}->SetPreferences(
UserID => $Param{UserData}->{UserID},
Key => "SMIMEHash",
Value => $Attributes{Hash},
);
$Self->{UserObject}->SetPreferences(
UserID => $Param{UserData}->{UserID},
Key => "SMIMEFilename",
Value => $UploadStuff{Filename},
);
# $Self->{UserObject}->SetPreferences(
# UserID => $Param{UserData}->{UserID},
# Key => 'SMIMECert',
# Value => $UploadStuff{Content},
# );
# $Self->{UserObject}->SetPreferences(
# UserID => $Param{UserData}->{UserID},
# Key => "SMIMEContentType",
# Value => $UploadStuff{ContentType},
# );
$Self->{Message} = $Message;
return 1;
}
}
sub Download {
my $Self = shift;
my %Param = @_;
my $CryptObject = Kernel::System::Crypt->new(
LogObject => $Self->{LogObject},
DBObject => $Self->{DBObject},
ConfigObject => $Self->{ConfigObject},
CryptType => 'SMIME',
MainObject => $Self->{MainObject},
);
if (!$CryptObject) {
return 1;
}
# get preferences with key parameters
my %Preferences = $Self->{UserObject}->GetPreferences(
UserID => $Param{UserData}->{UserID},
);
# check if SMIMEHash is there
if (!$Preferences{'SMIMEHash'}) {
$Self->{LogObject}->Log(
Priority => 'Error',
Message => 'Need SMIMEHash to get certificat key of '.$Param{UserData}->{UserID},
);
return ();
}
else {
$Preferences{'SMIMECert'} = $CryptObject->CertificateGet(
Hash => $Preferences{'SMIMEHash'},
);
}
# check if cert exists
if (!$Preferences{'SMIMECert'}) {
$Self->{LogObject}->Log(
Priority => 'Error',
Message => 'Couldn\'t get cert of hash '.$Preferences{'SMIMEHash'},
);
return ();
}
else {
return (
ContentType => 'text/plain',
Content => $Preferences{'SMIMECert'},
Filename => $Preferences{'SMIMEFilename'},
);
}
}
sub Error {
my $Self = shift;
my %Param = @_;
return $Self->{Error} || '';
}
sub Message {
my $Self = shift;
my %Param = @_;
return $Self->{Message} || '';
}
1;
|