Electronics Engineer working as Software Developer. Knowledge of: C / C++ / C# / ASP.NET / PHP / TCL / VHDL.
Active Staff & Coder position @ vBHackers.com
Anyone who ever written a modification that was based on some custom access permissions (logic driven) should be aware about the "search" & "advanced search" pitfalls.
Let me explain the "problems" of these issues:
Say for example you wrote a mod that hide/deny certain thread/forum from user. Coder worked hard with mod coding, and made sure that user wouldnt see the link to that thread (either on forumhome, forumdisplay, thread listing, etc.). However, one need to remember the "search option & the fact that specific thread could be returned as part of search results shown to user.
The problem consisted of 2 pitfalls:
Post listing in the search results.
Forum listing in the advanced search.
Now that we recognize the problems, lets talk solutions
Solution to problem 1: hook location: search_results_prebits Code Approach Explained:
This hook will allow us to manipulate the results before sent to screen.
the search results are located into array var $itemids.
Common way to handle this, is by looping the array vars, and should we find any result line we wish to hide, we can simply unset it. Code Example:
Lets assume we want to match for "forum id" & hide certain forum posts based on some logic behind it, thae hook plugin will look as follows:
PHP Code:
foreach ($itemids as $key => $post)
{
// here will be some mod logic
// i'll show some "dummy" mod logic that will match post forum id with some hidden forum id
// Once logic decided on hide, it will set var flag named $hide_post to 1
// else flag will be set to 0
$hide_post = 0;
if ( $post['forumid'] == $my_hidden_forum_id )
{
$hide_post = 1;
}
if ( $hide_post )
{
unset($itemids[$key]);
}
}
Solution to problem 2: hook location: search_intro Walkthrough: understanding what's going on in the background :
This hook will allow us to manipulate the data before showing the "advanced search" screen.
looking at the "search_forums" template, you will see this code secton:
So we have a listbox (HTML select control), that it's items are placed by code into $searchforumbits. Taking a closer look into "search.php" will show you the following line:
Code Approach Explained:
Hence, what we understand from all the above, inside the $forumbits var i'll find block of text, consisting of <option> lines, one for each of the forums we have.
Note since this is built inside the search.php (lines 2069-2100) we have no hook inside, allowing us to act during build of this list. Therefore our only option is to "retro" process this text block
Code Example:
My suggested code approach method is as follows:
PHP Code:
$option_bits = explode("\r\n",$searchforumbits);
foreach ( $option_bits as $forum_line )
{
// match for forumid
if ( eregi('value="([0-9]+)"', $forum_line, $dump) )
{
// again here we need mod logic decide if we should hide forum from list or not
// as before lets assume this was set here into flag called $hide_forum
...
if ( $hide_forum )
{
// user not allowed to see this forum - this forum line should be removed
$searchforumbits = str_replace($forum_line,"",$searchforumbits);
}
}
}
Code Explained:
PHP function eregi() allows to perform regular expression match (the i means "case insensitive"). you can read about function eregi() here: http://www.php.net/eregi
Regular expression written match for the number inside the value="x".
The $dump holds the results. results is inside $dump[1] ($dump[0] holds the entire string matched);
Once we've confirmed we want this line removed, we use php function str_replace() to replace forum option line with empty string. You can read about function str_replace here: http://www.php.net/manual/en/function.str-replace.php
That's it
Hope this small guide helped anyone that wanted to do some modification integration into search option on forum & didnt know where to place code or how.