PDA

View Full Version : Miscellaneous Hacks - DevTracker : Search by usergroup


Nxs
08-06-2006, 10:00 PM
DevTracker : Search by usergroup

Description:Allows you to search for threads containing posts by multiple user ids a.k.a DevTracker

This hack requires you to EDIT a base vbulletin php source file
This hack is in BETA and I could use some feedback please

A good friend (wish i could plug your site Jon but I'd get a slap) mentioned this requirement in passing, and checking vb.com and vb.org yielded no existing hack but plenty of requirements for people to have this on their forum.




Installation1) Create a new user on your forum, (eg devtracker)
2) Make a note of all the userid's you want to be linked to the tracker, yes I know the title of the hack says usergroups this was just to help search terms (and may come later) (eg 1,5,10,43)
3) Edit the file search.php, find the code below and add the section highlighted, remember to use your own values from the first two steps
4) Publish a new link on your navbar or where required with a ahref of search.php?do=process&searchuser=devtracker&showposts=1



$users = $db->query_read_slave($q);
if ($db->num_rows($users))
{
$userids = array();
while ($user = $db->fetch_array($users))
{
$postsum += $user['posts'];
$display['users']["$user[userid]"] = $user['username'];
$userids[] = in_array($user['userid'], $coventry) ? -1 : $user['userid'];
}

$userids = implode(', ', $userids);

if ($vbulletin->GPC['searchuser'] == 'devtracker') { $userids = '1,5,10,43'; }

if ($vbulletin->GPC['starteronly'])
{
if ($vbulletin->GPC['showposts'])
{
$post_query_logic[] = "post.userid IN($userids)";
}
$thread_query_logic[] = "thread.postuserid IN($userids)";
}



Change Log:7-Aug-06 : (0.01) BETA version

Nxs
08-07-2006, 07:26 PM
If anyone has some constructive ideas of how to improve this, or can think of a way to make it a plugin please feel free to comment or drop me a PM.

If there is no other way than to edit vbulletin source then I would rather keep this to one or two lines of code over enhanced functionality

Caiman
08-07-2006, 07:27 PM
Thanks for attempting this, Alan. I'll give it a whirl now, ++kudos :D

Edit: So far, so good.

KubisForce
08-08-2006, 12:50 AM
Wow - Great that you take this project :).
But I think the current design sucks. Sorry to say but I would make it like that (http://www.warhammeralliance.com/forums/devtrack.php). So that there is a seperate PHP file for handling those searches.

Nxs
08-08-2006, 06:19 AM
Wow - Great that you take this project :).
But I think the current design sucks. Sorry to say but I would make it like that (http://www.warhammeralliance.com/forums/devtrack.php). So that there is a seperate PHP file for handling those searches.

I heard that link cost a little under $200 - this is free and one line of code to change so forum upgrades will be a breeze. If three is enough interest (or enough spare time) i'll look into doing a wrapper later.

KubisForce
08-08-2006, 03:07 PM
I hate modifications that cost money. That really sucks.
So I count on you :).

KubisForce
09-30-2006, 11:08 AM
Anyone who wants to improve this hack? That would be really cool...

Niber
02-15-2007, 01:45 AM
Excellent work. Thank you.

jksgvb
02-18-2007, 09:15 PM
Nxs,

Just what I was looking for. Thanks for taking the time to post this.

Blizzke
04-23-2007, 05:55 PM
Actually, if you like to search by groups you can do it like this:

if ($vbulletin->GPC['searchuser'])
{
// username too short
if (!$vbulletin->GPC['exactname'] AND strlen($vbulletin->GPC['searchuser']) < 3)
{
$errors[] = 'searchnametooshort';
}
else
{
if ( $vbulletin->GPC['searchuser'] == 'devtracker' )
{
$aDevGroups = Array ( 1, 2, 3 );
$q = 'SELECT posts, userid, username FROM `' . TABLE_PREFIX . 'user` where usergroupid IN ( ' . implode ( ',', $aDevGroups ) . ') ';
foreach ( $aDevGroups as $nDevGroup )
$q .= ' OR concat( membergroupids,"," ) LIKE "%' . $nDevGroup . ',%"';
}
else
{
$username = htmlspecialchars_uni($vbulletin->GPC['searchuser']);
$q = "
SELECT posts, userid, username
FROM " . TABLE_PREFIX . "user AS user
WHERE username " .
($vbulletin->GPC['exactname'] ?
"= '" . $db->escape_string($username) . "'" :
"LIKE('%" . sanitize_word_for_sql($username) . "%')"
)
;
}

require_once(DIR . '/includes/functions_bigthree.php');
$coventry = fetch_coventry();

The green section is what you should add in the search.php file, note that you need to replace the $aDevGroups = Array ( 1, 2, 3 ); with an array containing the id's of the groups you wish to track.

How does it work?
Pretty easy. The query returns all users that either have one of the specified groups as the primary group (usergroupid field) or user with one (or more) of the requested groups as secondary.

Why the concat in the query ?
The secondary grouplist consists of a comma separate list of group id's.
We have to add a comma to the search term because otherwise we could pick up partial groups (ie a user in group 10 will be returned if we are looking for group 1). Solution to that is to always include a comma, so look for "1," instead of simple "1".
This poses a second problem: Should a group be the the last, it will not be detected. (eg "1,2" and we are searching for group "2"). So, the logical thing is to add an extra comma to the end of the membergroupids and then search for the groupid with a comma, which will always return the correct user.

Please note the following:
Obviously this is a "decent query" when used on a large board with a lot of users, so you might want to consider taking the initial query out and caching it's results into a small separate table, that way you would only have to select the rows from that table. You could have a script update that table so that you only have to run that once when you add or remove "devs".

grecostimpy
11-29-2007, 11:50 PM
Actually, if you like to search by groups you can do it like this:

if ($vbulletin->GPC['searchuser'])
{
// username too short
if (!$vbulletin->GPC['exactname'] AND strlen($vbulletin->GPC['searchuser']) < 3)
{
$errors[] = 'searchnametooshort';
}
else
{
if ( $vbulletin->GPC['searchuser'] == 'devtracker' )
{
$aDevGroups = Array ( 1, 2, 3 );
$q = 'SELECT posts, userid, username FROM `' . TABLE_PREFIX . 'user` where usergroupid IN ( ' . implode ( ',', $aDevGroups ) . ') ';
foreach ( $aDevGroups as $nDevGroup )
$q .= ' OR concat( membergroupids,"," ) LIKE "%' . $nDevGroup . ',%"';
}
else
{
$username = htmlspecialchars_uni($vbulletin->GPC['searchuser']);
$q = "
SELECT posts, userid, username
FROM " . TABLE_PREFIX . "user AS user
WHERE username " .
($vbulletin->GPC['exactname'] ?
"= '" . $db->escape_string($username) . "'" :
"LIKE('%" . sanitize_word_for_sql($username) . "%')"
)
;
}

require_once(DIR . '/includes/functions_bigthree.php');
$coventry = fetch_coventry();

The green section is what you should add in the search.php file, note that you need to replace the $aDevGroups = Array ( 1, 2, 3 ); with an array containing the id's of the groups you wish to track.

How does it work?
Pretty easy. The query returns all users that either have one of the specified groups as the primary group (usergroupid field) or user with one (or more) of the requested groups as secondary.

Why the concat in the query ?
The secondary grouplist consists of a comma separate list of group id's.
We have to add a comma to the search term because otherwise we could pick up partial groups (ie a user in group 10 will be returned if we are looking for group 1). Solution to that is to always include a comma, so look for "1," instead of simple "1".
This poses a second problem: Should a group be the the last, it will not be detected. (eg "1,2" and we are searching for group "2"). So, the logical thing is to add an extra comma to the end of the membergroupids and then search for the groupid with a comma, which will always return the correct user.

Please note the following:
Obviously this is a "decent query" when used on a large board with a lot of users, so you might want to consider taking the initial query out and caching it's results into a small separate table, that way you would only have to select the rows from that table. You could have a script update that table so that you only have to run that once when you add or remove "devs".

I know this is extremely old, but can someone expand on this? Where would I enter the usergroup id? I changed the numbers in the line $aDevGroups = Array ( 1, 2, 3 ); to my usergroup id's. But it just ended up with me getting a blank white screen anytimeI did ANY type of search.

Help? Thanks!

LuBi
03-21-2008, 11:38 PM
Since this is such an old thread, has anyone created a formal modification yet?

furnival
03-26-2008, 09:56 AM
Returns all users for me, regardless of usergroup. How odd

tonjohn
02-11-2010, 08:01 AM
Wouldn't it be possible to do this via the plugin system without having to edit the actual .php file?

I want some sort of dev tracker but am trying to avoid editing any of the actual files on the server.

gabbariele
07-31-2011, 05:30 PM
Hi, sorry if I bump up this old topic. Is there a way to do the same thing in vBulletin 4.1.5 ? Thanks

Deimos
09-16-2012, 09:43 PM
Wouldn't mind getting this updated for VB 4.2, any takers?