File: html2text.php

package info (click to toggle)
moodle 1.6.3-2%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 37,172 kB
  • ctags: 51,688
  • sloc: php: 231,916; sql: 5,631; xml: 2,688; sh: 1,185; perl: 638; makefile: 48; pascal: 36
file content (169 lines) | stat: -rw-r--r-- 6,999 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php

/***************************************************************
 * Library to convert HTML into an approximate text equivalent *
 ***************************************************************

  Version: 1.0.3  (with modifications)
  Copyright 2003 Mark Wilton-Jones
  License: HowToCreate script license with written permission
  URL: http://www.howtocreate.co.uk/php/

  For full details about the script and to get the latest version,
  please see the HowToCreate web site above.

  This version contains modifications for Moodle.  In each case the
  lines are marked with "Moodle", so you can  see what has changed.

  ********************************************************************/

function html2text( $badStr ) {

    $is_open_tb = false;
    $is_open_dq = false;
    $is_open_sq = false;

    //remove comments

    while (substr_count($badStr, '<!--') && 
           substr_count($badStr, '-->') && 
           strpos($badStr, '-->', strpos($badStr, '<!--' ) ) > strpos( $badStr, '<!--' ) ) {
           $badStr = substr( $badStr, 0, strpos( $badStr, '<!--' ) ) . 
                     substr( $badStr, strpos( $badStr, '-->', 
                     strpos( $badStr, '<!--' ) ) + 3 );
    }

    //now make sure all HTML tags are correctly written (> not in between quotes)

    $len = strlen($badStr); // Moodle
    $chr = $badStr{0}; // Moodle
    $goodStr = ''; // Moodle

    if ($len > 0) { // Moodle
        for ($x=0; $x < $len; $x++ ) { // Moodle
            $chr = $badStr{$x}; //take each letter in turn and check if that character is permitted there
            switch ( $chr ) {
                case '<':
                    if ( !$is_open_tb && strtolower( substr( $badStr, $x + 1, 5 ) ) == 'style' ) {
                        $badStr = substr( $badStr, 0, $x ) . 
                                  substr( $badStr, strpos( strtolower( $badStr ), '</style>', $x ) + 7 ); 
                        $chr = '';
                    } else if ( !$is_open_tb && strtolower( substr( $badStr, $x + 1, 6 ) ) == 'script' ) {
                        $badStr = substr( $badStr, 0, $x ) . 
                                  substr( $badStr, strpos( strtolower( $badStr ), '</script>', $x ) + 8 ); 
                        $chr = '';
                    } else if (!$is_open_tb) { 
                        $is_open_tb = true; 
                    } else { 
                        $chr = '&lt;'; 
                    }
                    break;

                case '>':
                    if ( !$is_open_tb || $is_open_dq || $is_open_sq ) { 
                        $chr = '&gt;'; 
                    } else { 
                        $is_open_tb = false; 
                    }
                    break;

                case '"':
                    if ( $is_open_tb && !$is_open_dq && !$is_open_sq ) { 
                        $is_open_dq = true; 
                    } else if ( $is_open_tb && $is_open_dq && !$is_open_sq ) { 
                        $is_open_dq = false; 
                    } else { 
                        $chr = '&quot;'; 
                    }
                    break;

                case "'":
                    if ( $is_open_tb && !$is_open_dq && !$is_open_sq ) { 
                        $is_open_sq = true; 
                    } else if ( $is_open_tb && !$is_open_dq && $is_open_sq ) { 
                        $is_open_sq = false; 
                    }
                    break;
            }
            $goodStr .= $chr;
        }
    } // Moodle

    //now that the page is valid (I hope) for strip_tags, strip all unwanted tags

    $goodStr = strip_tags( $goodStr, '<title><hr><h1><h2><h3><h4><h5><h6><div><p><pre><sup><ul><ol><br><dl><dt><table><caption><tr><li><dd><th><td><a><area><img><form><input><textarea><button><select><option>' );

    //strip extra whitespace except between <pre> and <textarea> tags

    $badStr = preg_split( "/<\/?pre[^>]*>/i", $goodStr );

    for ( $x = 0; isset($badStr[$x]) && is_string( $badStr[$x] ); $x++ ) { // Moodle: added isset() test
        if ( $x % 2 ) { $badStr[$x] = '<pre>'.$badStr[$x].'</pre>'; } else {
            $goodStr = preg_split( "/<\/?textarea[^>]*>/i", $badStr[$x] );
            for ( $z = 0; isset($goodStr[$z]) && is_string( $goodStr[$z] ); $z++ ) { // Moodle: added isset() test
                if ( $z % 2 ) { $goodStr[$z] = '<textarea>'.$goodStr[$z].'</textarea>'; } else {
                    $goodStr[$z] = str_replace('  ', ' ', $goodStr[$z] );
                }
            }
            $badStr[$x] = implode('',$goodStr);
        }
    }

    $goodStr = implode('',$badStr);

    //remove all options from select inputs

    $goodStr = preg_replace( "/<option[^>]*>[^<]*/i", '', $goodStr );

    //replace all tags with their text equivalents

    $goodStr = preg_replace( "/<(\/title|hr)[^>]*>/i", "\n          --------------------\n", $goodStr );

    $goodStr = preg_replace( "/<(h|div|p)[^>]*>/i", "\n\n", $goodStr );

    $goodStr = preg_replace( "/<sup[^>]*>/i", '^', $goodStr );

    $goodStr = preg_replace( "/<(ul|ol|br|dl|dt|table|caption|\/textarea|tr[^>]*>\s*<(td|th))[^>]*>/i", "\n", $goodStr );

    $goodStr = preg_replace( "/<li[^>]*>/i", "\n ", $goodStr );

    $goodStr = preg_replace( "/<dd[^>]*>/i", "\n\t", $goodStr );

    $goodStr = preg_replace( "/<(th|td)[^>]*>/i", "\t", $goodStr );

 // $goodStr = preg_replace( "/<a[^>]* href=(\"((?!\"|#|javascript:)[^\"#]*)(\"|#)|'((?!'|#|javascript:)[^'#]*)('|#)|((?!'|\"|>|#|javascript:)[^#\"'> ]*))[^>]*>/i", "[LINK: $2$4$6] ", $goodStr );   // Moodle
    $goodStr = preg_replace( "/<a[^>]* href=(\"((?!\"|#|javascript:)[^\"#]*)(\"|#)|'((?!'|#|javascript:)[^'#]*)('|#)|((?!'|\"|>|#|javascript:)[^#\"'> ]*))[^>]*>([^<]*)<\/a>/i", "$7 [$2$4$6]", $goodStr );

    // $goodStr = preg_replace( "/<img[^>]* alt=(\"([^\"]+)\"|'([^']+)'|([^\"'> ]+))[^>]*>/i", "[IMAGE: $2$3$4] ", $goodStr );   // Moodle
    $goodStr = preg_replace( "/<img[^>]* alt=(\"([^\"]+)\"|'([^']+)'|([^\"'> ]+))[^>]*>/i", "[$2$3$4] ", $goodStr );

    $goodStr = preg_replace( "/<form[^>]* action=(\"([^\"]+)\"|'([^']+)'|([^\"'> ]+))[^>]*>/i", "\n[FORM: $2$3$4] ", $goodStr );

    $goodStr = preg_replace( "/<(input|textarea|button|select)[^>]*>/i", "[INPUT] ", $goodStr );

    //strip all remaining tags (mostly closing tags)

    $goodStr = strip_tags( $goodStr );

    //convert HTML entities

    $goodStr = strtr( $goodStr, array_flip( get_html_translation_table( HTML_ENTITIES ) ) );

    preg_replace( "/&#(\d+);/me", "chr('$1')", $goodStr );

    //wordwrap

    // $goodStr = wordwrap( $goodStr );   // Moodle
    $goodStr = wordwrap( $goodStr, 78 );

    //make sure there are no more than 3 linebreaks in a row and trim whitespace
    $goodStr = preg_replace("/\r\n?|\f/", "\n", $goodStr);
    $goodStr = preg_replace("/\n(\s*\n){2}/", "\n\n\n", $goodStr);
    $goodStr = preg_replace("/[ \t]+(\n|$)/", "$1", $goodStr);
    $goodStr = preg_replace("/^\n*|\n*$/", '', $goodStr);

    return $goodStr;

}

?>