Completed
Push — master ( 53fe75...4dba6c )
by Mikael
02:20
created

src/TextFilter/TTextUtilities.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Mos\TextFilter;
4
5
/**
6
 * Utilities when working with text.
7
 *
8
 */
9
trait TTextUtilities
10
{
11
    /**
12
     * Get text until <!--stop--> or all text.
13
     *
14
     * @param string $text with content
15
     *
16
     * @return string with text
17
     */
18 8
    public function getUntilStop($text)
19
    {
20 8
        $pos = stripos($text, "<!--stop-->");
21 8
        if ($pos) {
22 2
            $text = substr($text, 0, $pos);
23 2
        }
24 8
        return $text;
25
    }
26
27
28
29
    /**
30
     * Get text until <!--more--> or all text.
31
     *
32
     * @param string $text with content
33
     *
34
     * @return array with text and boolean if more was detected.
35
     */
36 8
    public function getUntilMore($text)
37
    {
38 8
        $pos = stripos($text, "<!--more-->");
39 8
        $hasMore = $pos;
40 8
        if ($pos) {
41 1
            $text = substr($text, 0, $pos);
42 1
        }
43 8
        return [$text, $hasMore];
44
    }
45
46
47
48
    /**
49
     * Wrap HTML element with with start and end.
50
     *
51
     * @param string  $text  with content
52
     * @param string  $tag   HTML tag to search for
53
     * @param string  $start wrap start part
54
     * @param string  $end   wrap end part
55
     * @param number  $count hits to search for
56
     *
57
     * @return array with text and boolean if more was detected.
58
     */
59
    public function wrapElementWithStartEnd($text, $tag, $start, $end, $count)
60
    {
61
        return preg_replace(
62
            "#(<$tag>)(.*?)(</$tag>)#",
63
            "$start$1$2$3$end</a>",
64
            $text,
65
            $count
66
        );
67
    }
68
69
70
71
    /**
72
    * Wrap content of a HTML element with start and end.
73
     *
74
     * @param string  $text  with content
75
     * @param string  $tag   HTML tag to search for
76
     * @param string  $start wrap start part
77
     * @param string  $end   wrap end part
78
     * @param number  $count hits to search for
79
     *
80
     * @return array with text and boolean if more was detected.
81
     */
82
    public function wrapElementContentWithStartEnd($text, $tag, $start, $end, $count)
83
    {
84
        return preg_replace(
85
            "#(<$tag>)(.*?)(</$tag>)#",
86
            "$1$start$2$end$3</a>",
87
            $text,
88
            $count
89
        );
90
    }
91
92
93
94
    /**
95
     * Create a TOC of HTML headings from and to a certain level.
96
     *
97
     * @param string  $text  with content
98
     * @param integer $start level of headings to use for toc.
99
     * @param integer $stop  level of headings to use for toc.
100
     *
101
     * @return array with entries to generate a TOC.
102
     */
103
    public function createToc($text, $start = 2, $stop = 4)
104
    {
105
        $level = "$start-$stop";
106
        $pattern = "#<(h[$level])([^>]*)>(.*)</h[$level]>#";
107
        preg_match_all($pattern, $text, $matches, PREG_SET_ORDER);
108
109
        $toc = [];
110
        foreach ($matches as $val) {
0 ignored issues
show
The expression $matches of type null|array<integer,array<integer,string>> is not guaranteed to be traversable. How about adding an additional type check?

There are different options of fixing this problem.

  1. If you want to be on the safe side, you can add an additional type-check:

    $collection = json_decode($data, true);
    if ( ! is_array($collection)) {
        throw new \RuntimeException('$collection must be an array.');
    }
    
    foreach ($collection as $item) { /** ... */ }
    
  2. If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:

    /** @var array $collection */
    $collection = json_decode($data, true);
    
    foreach ($collection as $item) { /** .. */ }
    
  3. Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.

Loading history...
111
            preg_match("#id=['\"]([^>\"']+)#", $val[2], $id);
112
            $id = isset($id[1]) ? $id[1] : null;
113
            $toc[] = [
114
                "level" => isset($val[1])
115
                    ? $val[1]
116
                    : null,
117
                "title" => isset($val[3])
118
                    ? ltrim(strip_tags($val[3]), "#")
119
                    : null,
120
                "id" => $id,
121
            ];
122
        }
123
124
        return $toc;
125
    }
126
127
128
129
    /**
130
     * Create a anchor for each header having an id.
131
     *
132
     * @param string  $text  with content
133
     * @param integer $start level of headings to use.
134
     * @param integer $stop  level of headings to use.
135
     *
136
     * @return string with modified text.
137
     */
138
    public function createAnchor4Header($text, $start = 1, $stop = 4)
139
    {
140
        $level = "$start-$stop";
141
        $pattern = "#(<h[$level] id=\"([\w-_]+)\">)(.+)(</h[$level]>)#";
142
143
        return preg_replace(
144
            $pattern,
145
            "$1<a class=\"header-anchor\" href=\"#$2\">#</a>$3$4",
146
            $text
147
        );
148
    }
149
150
151
152
    /**
153
     * Add baseurl to all relative links.
154
     *
155
     * @param string   $text     with content.
156
     * @param string   $baseurl  as string to prepend relative link.
157
     * @param callable $callback Use to create url from route.
158
     *
159
     * @return string with modified text.
160
     */
161
    public function addBaseurlToRelativeLinks($text, $baseurl, $callback)
162
    {
163
        $pattern = "#<a(.+?)href=\"([^\"]*)\"([.^>]*)>#";
164
165
        return preg_replace_callback(
166
            $pattern,
167
            function ($matches) use ($baseurl, $callback) {
168
                $url = $callback($matches[2], $baseurl);
169
                return "<a${matches[1]}href=\"$url\"${matches[3]}>";
170
            },
171
            $text
172
        );
173
    }
174
175
176
177
    /**
178
     * Generate revision history and add to the end of content.
179
     *
180
     * @param string $text     with content.
181
     * @param array  $revision with all revisions.
182
     * @param string $start    start wrap with this.
183
     * @param string $end      end wrap with this.
184
     * @param string $class    to add to ul element.
185
     *
186
     * @return string with text and optionally added revision history.
187
     */
188
    public function addRevisionHistory($text, $revision, $start, $end, $class)
189
    {
190
        
191
        $text  = $text . $start;
192
        $text .= "<ul class=\"$class\">\n";
193
        
194
        foreach ($revision as $date => $info) {
195
            $text .= "<li>$date: $info</li>\n";
196
        }
197
198
        $text .= "</ul>\n" . $end;
199
        return $text;
200
    }
201
202
203
204
    /**
205
     * Get content as pure text.
206
     *
207
     * @return string with the pure text.
208
     */
209
/*    public function GetPureText() {
210
      return preg_replace('/\s+/', ' ', strip_tags($this->GetFilteredData()));
211
    }
212
*/
213
214
215
216
    /**
217
     * Returns the excerpt of the text with at most the specified amount of characters.
218
     *
219
     * @param int $chars the number of characters to return.
220
     * @param boolean $hard do a hard break at exactly $chars characters or find closest space.
221
     * @return string as the excerpt.
222
     */
223
/*    public function GetExcerpt($chars=139, $hard=false) {
224
      if(!isset($this->data['data_filtered'])) {
225
        return null;
226
      }
227
      $excerpt = strip_tags($this->data['data_filtered']);
228
229
      if(strlen($excerpt) > $chars) {
230
        $excerpt   = substr($excerpt, 0, $chars-1);
231
      }
232
233
      if(!$hard) {
234
        $lastSpace = strrpos($excerpt, ' ');
235
        $excerpt   = substr($excerpt, 0, $lastSpace);
236
      }
237
238
      return $excerpt;
239
    }
240
    
241
    
242
    /**
243
     * Returns the first paragraph ot the text.
244
     * 
245
     * @return string as the first paragraph.
246
     */
247
/*    public function GetFirstParagraph() {
248
      if(!isset($this->data['data_filtered'])) {
249
        return null;
250
      }
251
      $excerpt = $this->data['data_filtered'];
252
253
      $firstPara = strpos($excerpt, '</p>');
254
      $excerpt   = substr($excerpt, 0, $firstPara + 4);
255
256
      return $excerpt;
257
    }
258
*/
259
}
260