/var/lib/otrs/webservices/examples/Base.pm is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | # --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package var::webservices::examples::Base;
## nofilter(TidyAll::Plugin::OTRS::Perl::PerlCritic)
use strict;
use warnings;
use Kernel::System::VariableCheck qw(:all);
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::Language',
'Kernel::System::DynamicField',
'Kernel::System::Log',
'Kernel::System::SysConfig',
);
=head1 NAME
var::websertvices::examples::Base - base class for Ready2Adopt web services examples
=head1 DESCRIPTION
This is a base class for example web services and should not be instantiated directly.
All _pre.pm and _post.pm files can use helper methods defined in this class.
package var::webservices::examples::MyWebServiceExample;
use strict;
use warnings;
use parent qw(var::webservices::examples::Base);
# methods go here
=cut
=head1 PUBLIC INTERFACE
=head2 DynamicFieldsAdd()
Creates dynamic fields according to provided configurations.
my %Result = $WebServiceExampleObject->DynamicFieldsAdd(
DynamicFieldList => [ # (required) List of dynamic field configuration
{
Name => 'PreProcApplicationRecorded',
Label => 'Application Recorded',
FieldType => 'Dropdown',
ObjectType => 'Ticket',
FieldOrder => 10000,
Config => {
DefaultValue => '',
PossibleNone => 1,
PossibleValues => {
'no' => 'no',
'yes' => 'yes',
},
TranslatableValues => 0,
},
},
...
],
);
Result:
%Result = (
Success => 1,
Error => undef,
);
=cut
sub DynamicFieldsAdd {
my ( $Self, %Param ) = @_;
# Check needed stuff.
for my $Needed (qw(DynamicFieldList)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
my %Response = (
Success => 1,
);
if ( ref $Param{DynamicFieldList} ne 'ARRAY' ) {
%Response = (
Success => 0,
Error => "DynamicFieldList is not an array!"
);
return %Response;
}
# add Dynamic Fields
my $DynamicFieldObject = $Kernel::OM->Get('Kernel::System::DynamicField');
DYNAMIC_FIELD:
for my $DynamicField ( @{ $Param{DynamicFieldList} } ) {
# check if already exists
my $DynamicFieldData = $DynamicFieldObject->DynamicFieldGet(
Name => $DynamicField->{Name},
);
if ( IsHashRefWithData($DynamicFieldData) ) {
if (
$DynamicFieldData->{ObjectType} ne $DynamicField->{ObjectType}
|| $DynamicFieldData->{FieldType} ne $DynamicField->{FieldType}
)
{
$Response{Success} = 0;
$Response{Error} = $Kernel::OM->Get('Kernel::Language')->Translate(
"Dynamic field %s already exists, but definition is wrong.",
$DynamicField->{Name},
);
last DYNAMIC_FIELD;
}
next DYNAMIC_FIELD;
}
my $ID = $DynamicFieldObject->DynamicFieldAdd(
%{$DynamicField},
ValidID => 1,
UserID => 1,
);
if ($ID) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'info',
Message => "System created Dynamic field ($DynamicField->{Name})!"
);
}
else {
$Response{Success} = 0;
$Response{Error} = $Kernel::OM->Get('Kernel::Language')->Translate(
"Dynamic field %s couldn't be created.",
$DynamicField->{Name},
);
}
}
return %Response;
}
=head2 SystemConfigurationUpdate()
Updates system configuration according with the provided data.
my $Success = $WebServiceExampleObject->SystemConfigurationUpdate(
WebServiceName => 'Some WebService',
Data => [
{
'GenericInterface::Invoker::Settings::ResponseDynamicField' => {
1234 => 'Some Dynamic Field',
# ...
},
},
],
);
=cut
sub SystemConfigurationUpdate {
my ( $Self, %Param ) = @_;
for my $Needed (qw(WebServiceName Data)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed",
);
return;
}
}
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $SysConfigObject = $Kernel::OM->Get('Kernel::System::SysConfig');
my @UpdatedSettings;
for my $Item ( @{ $Param{Data} } ) {
my $ItemName = ( keys %{$Item} )[0];
my $CurrentValue = $ConfigObject->Get($ItemName);
for my $Key ( sort keys %{ $Item->{$ItemName} } ) {
my $Value = $Item->{$ItemName}->{$Key};
if (
!$CurrentValue->{$Key}
|| $CurrentValue->{$Key} ne $Value
)
{
$CurrentValue->{$Key} = $Value;
}
my $SettingName = $ItemName;
my $ExclusiveLockGUID = $SysConfigObject->SettingLock(
Name => $SettingName,
Force => 1,
UserID => 1,
);
my %Result = $SysConfigObject->SettingUpdate(
Name => $SettingName,
IsValid => 1,
EffectiveValue => $CurrentValue,
ExclusiveLockGUID => $ExclusiveLockGUID,
UserID => 1,
);
push @UpdatedSettings, $SettingName;
}
$ConfigObject->Set(
Key => $ItemName,
Value => $CurrentValue,
);
}
my %DeploymentResult = $SysConfigObject->ConfigurationDeploy(
Comments => "Deployed by '$Param{WebServiceName}' web service setup",
UserID => 1,
Force => 1,
DirtySettings => \@UpdatedSettings,
);
if ( !$DeploymentResult{Success} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "System was unable to deploy settings needed for '$Param{WebServiceName}' web service!"
);
}
return $DeploymentResult{Success};
}
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<http://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see L<http://www.gnu.org/licenses/agpl.txt>.
=cut
|