* * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @category Web * @package DRI\HTML * @author Christoph Brill * @copyright 2012-2017 Christoph Brill * @license MIT https://opensource.org/licenses/MIT * @link https://people.freedesktop.org/~cbrill/ */ $filename = 'dri-devel-'.$date.'.log'; $pattern = '#(^|[^\"=]{1})(http://|ftp://|https://|mailto:|news:)([^\s<>]+)([\s\n<>]|$)#sm'; $timehashes = array(); $lines = file(LOG_DIR.$filename); $anything_displayed = false; foreach ($lines as $line_num => $line) { if (isFromChannel($line, $channel)) { if (!filterJoin($line)) { $user = getUser($line); $user_clean = substr($user, 2, -1); if (in_array($user_clean, $ignore)) { continue; } $anything_displayed = true; $user = htmlentities($user, ENT_QUOTES); $time = getTime($line); echo ''; $line = htmlentities($line, ENT_QUOTES); if ($show_html == 'true') { $line = preg_replace($pattern, "\\1\\2\\3\\4", $line); } $user_link = ':'; $line = preg_replace('/([0-9:]{5}) #'.$channel.':/', '\\1', $line); if (!in_array($time, $timehashes)) { $time_link = ''.$time.''; $line = str_replace($time, $time_link, $line); array_push($timehashes, $time); } else { $time_link = ''.$time.''; $line = str_replace($time, $time_link, $line); } echo str_replace($user, $user_link, $line),'
'; echo '
'; } } } if (!$anything_displayed) { echo 'No logs found'; }