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
|
# --
# Kernel/System/User/Preferences/DB.pm - some user functions
# Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id: DB.pm,v 1.11 2007/01/21 01:26:10 mh 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::System::User::Preferences::DB;
use strict;
use vars qw(@ISA $VERSION);
$VERSION = '$Revision: 1.11 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
sub new {
my $Type = shift;
my %Param = @_;
# allocate new hash for object
my $Self = {};
bless ($Self, $Type);
# check needed objects
foreach (qw(DBObject ConfigObject LogObject)) {
$Self->{$_} = $Param{$_} || die "Got no $_!";
}
# preferences table data
$Self->{PreferencesTable} = $Self->{ConfigObject}->Get('PreferencesTable')
|| 'user_preferences';
$Self->{PreferencesTableKey} = $Self->{ConfigObject}->Get('PreferencesTableKey')
|| 'preferences_key';
$Self->{PreferencesTableValue} = $Self->{ConfigObject}->Get('PreferencesTableValue')
|| 'preferences_value';
$Self->{PreferencesTableUserID} = $Self->{ConfigObject}->Get('PreferencesTableUserID')
|| 'user_id';
return $Self;
}
sub SetPreferences {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(UserID Key)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# db quote
foreach (qw(Key Value)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_});
}
foreach (qw(UserID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
# delete old data
if (!$Self->{DBObject}->Do(
SQL => "DELETE FROM $Self->{PreferencesTable} ".
" WHERE ".
" $Self->{PreferencesTableUserID} = $Param{UserID} ".
" AND ".
" $Self->{PreferencesTableKey} = '$Param{Key}'",
)) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't delete $Self->{PreferencesTable}!",
);
return;
}
# insert new data
if (!$Self->{DBObject}->Do(
SQL => "INSERT INTO $Self->{PreferencesTable} ($Self->{PreferencesTableUserID}, ".
" $Self->{PreferencesTableKey}, $Self->{PreferencesTableValue}) " .
" VALUES ($Param{UserID}, '$Param{Key}', '$Param{Value}')",
)) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't insert new $Self->{PreferencesTable}!",
);
return;
}
return 1;
}
sub GetPreferences {
my $Self = shift;
my %Param = @_;
my %Data;
# check needed stuff
foreach (qw(UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# db quote
foreach (qw(UserID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
# get preferences
my $SQL = "SELECT $Self->{PreferencesTableKey}, $Self->{PreferencesTableValue} " .
" FROM " .
" $Self->{PreferencesTable} ".
" WHERE " .
" $Self->{PreferencesTableUserID} = $Param{UserID}";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$Data{$Row[0]} = $Row[1];
}
# return data
return %Data;
}
sub SearchPreferences {
my $Self = shift;
my %Param = @_;
my %UserID = ();
my $Key = $Param{Key} || '';
my $Value = $Param{Value} || '';
# get preferences
my $SQL = "SELECT $Self->{PreferencesTableUserID}, $Self->{PreferencesTableValue} " .
" FROM " .
" $Self->{PreferencesTable} ".
" WHERE " .
" $Self->{PreferencesTableKey} = '".$Self->{DBObject}->Quote($Key)."'".
" AND ".
" LOWER($Self->{PreferencesTableValue}) LIKE LOWER('".$Self->{DBObject}->Quote($Value)."')";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$UserID{$Row[0]} = $Row[1];
}
# return data
return %UserID;
}
1;
|