Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 22
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
local_url_bbcode
0.00% covered (danger)
0.00%
0 / 22
0.00% covered (danger)
0.00%
0 / 3
42
0.00% covered (danger)
0.00%
0 / 1
 depends_on
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 update_data
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 update_local_url_bbcode
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2/**
3*
4* This file is part of the phpBB Forum Software package.
5*
6* @copyright (c) phpBB Limited <https://www.phpbb.com>
7* @license GNU General Public License, version 2 (GPL-2.0)
8*
9* For full copyright and license information, please see
10* the docs/CREDITS.txt file.
11*
12*/
13
14namespace phpbb\db\migration\data\v30x;
15
16class local_url_bbcode extends \phpbb\db\migration\migration
17{
18    public static function depends_on()
19    {
20        return array('\phpbb\db\migration\data\v30x\release_3_0_12_rc1');
21    }
22
23    public function update_data()
24    {
25        return array(
26            array('custom', array(array($this, 'update_local_url_bbcode'))),
27        );
28    }
29
30    /**
31    * Update BBCodes that currently use the LOCAL_URL tag
32    *
33    * To fix http://tracker.phpbb.com/browse/PHPBB3-8319 we changed
34    * the second_pass_replace value, so that needs updating for existing ones
35    */
36    public function update_local_url_bbcode()
37    {
38        $sql = 'SELECT *
39            FROM ' . BBCODES_TABLE . '
40            WHERE bbcode_match ' . $this->db->sql_like_expression($this->db->get_any_char() . 'LOCAL_URL' . $this->db->get_any_char());
41        $result = $this->db->sql_query($sql);
42
43        while ($row = $this->db->sql_fetchrow($result))
44        {
45            if (!class_exists('acp_bbcodes'))
46            {
47                if (function_exists('phpbb_require_updated'))
48                {
49                    phpbb_require_updated('includes/acp/acp_bbcodes.' . $this->php_ext, $this->phpbb_root_path);
50                }
51                else
52                {
53                    require($this->phpbb_root_path . 'includes/acp/acp_bbcodes.' . $this->php_ext);
54                }
55            }
56
57            $bbcode_match = $row['bbcode_match'];
58            $bbcode_tpl = $row['bbcode_tpl'];
59
60            $acp_bbcodes = new \acp_bbcodes();
61            $sql_ary = $acp_bbcodes->build_regexp($bbcode_match, $bbcode_tpl);
62
63            $sql = 'UPDATE ' . BBCODES_TABLE . '
64                SET ' . $this->db->sql_build_array('UPDATE', $sql_ary) . '
65                WHERE bbcode_id = ' . (int) $row['bbcode_id'];
66            $this->sql_query($sql);
67        }
68        $this->db->sql_freeresult($result);
69    }
70}