[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-292-ga1ccec1
Thomas Sibley
trs at bestpractical.com
Wed Aug 11 21:00:24 EDT 2010
The branch, 3.9-trunk has been updated
via a1ccec15441862eb2f525bb4f6d0287ab9752dd2 (commit)
from 1461ec5edbd55814a990f4b9b5785cd85ee884b3 (commit)
Summary of changes:
.../Autocomplete/{CustomFieldValues => Users} | 72 ++++++++++++--------
1 files changed, 43 insertions(+), 29 deletions(-)
copy share/html/Helpers/Autocomplete/{CustomFieldValues => Users} (64%)
- Log -----------------------------------------------------------------
commit a1ccec15441862eb2f525bb4f6d0287ab9752dd2
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Aug 11 21:01:35 2010 -0400
Start of an autocomplete helper for various user fields
diff --git a/share/html/Helpers/Autocomplete/Users b/share/html/Helpers/Autocomplete/Users
new file mode 100644
index 0000000..e0ff189
--- /dev/null
+++ b/share/html/Helpers/Autocomplete/Users
@@ -0,0 +1,103 @@
+%# BEGIN BPS TAGGED BLOCK {{{
+%#
+%# COPYRIGHT:
+%#
+%# This software is Copyright (c) 1996-2010 Best Practical Solutions, LLC
+%# <jesse at bestpractical.com>
+%#
+%# (Except where explicitly superseded by other copyright notices)
+%#
+%#
+%# LICENSE:
+%#
+%# This work is made available to you under the terms of Version 2 of
+%# the GNU General Public License. A copy of that license should have
+%# been provided with this software, but in any event can be snarfed
+%# from www.gnu.org.
+%#
+%# This work 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., 51 Franklin Street, Fifth Floor, Boston, MA
+%# 02110-1301 or visit their web page on the internet at
+%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
+%#
+%#
+%# CONTRIBUTION SUBMISSION POLICY:
+%#
+%# (The following paragraph is not intended to limit the rights granted
+%# to you to modify and distribute this software under the terms of
+%# the GNU General Public License and is only of importance to you if
+%# you choose to contribute your changes and enhancements to the
+%# community by submitting them to Best Practical Solutions, LLC.)
+%#
+%# By intentionally submitting any modifications, corrections or
+%# derivatives to this work, or any other work intended for use with
+%# Request Tracker, to Best Practical Solutions, LLC, you confirm that
+%# you are the copyright holder for those contributions and you grant
+%# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
+%# royalty-free, perpetual, license to use, copy, create derivative
+%# works based on those contributions, and sublicense and distribute
+%# those contributions and any derivatives thereof.
+%#
+%# END BPS TAGGED BLOCK }}}
+
+<% JSON::to_json( $result ) |n %>
+% $m->abort;
+<%ARGS>
+$return => ''
+$query => undef
+</%ARGS>
+<%INIT>
+require JSON;
+
+# Only allow certain return fields
+$return = 'EmailAddress'
+ unless $return =~ /^(?:EmailAddress|Name|RealName)$/;
+
+$m->abort unless defined $return
+ and defined $query
+ and length $query;
+
+my $CurrentUser = $session{'CurrentUser'};
+
+# Require privileged users or overriding config
+$m->abort unless $CurrentUser->Privileged
+ or RT->Config->Get('AllowUnprivilegedUserAutocomplete');
+
+my @fields = @{ RT->Config->Get('UserAutocompleteFields')
+ || [qw(EmailAddress Name RealName)] };
+
+my $users = RT::Users->new( $CurrentUser );
+
+for (@fields) {
+ $users->Limit(
+ FIELD => $_,
+ OPERATOR => 'LIKE',
+ VALUE => $query,
+ ENTRYAGGREGATOR => 'OR',
+ SUBCLAUSE => 'autocomplete',
+ );
+}
+
+my (@suggestions, @values);
+
+while ( my $user = $users->Next ) {
+ next if $user->id == $RT::SystemUser->id
+ or $user->id == $RT::Nobody->id;
+
+ my $formatted = $m->scomp('/Elements/ShowUser', User => $user);
+ $formatted =~ s/\n//g;
+ push @suggestions, $formatted;
+ push @values, $user->$return;
+}
+my $result = {
+ query => $query,
+ suggestions => \@suggestions,
+ data => \@values,
+};
+</%INIT>
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list