cookutils annotate lighttpd/index.cgi @ rev 909

cook: fix check_integrity()
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 30 05:33:45 2017 +0300 (2017-05-30)
parents f439bf689ac8
children b6b815ca6bb9
rev   line source
al@898 1 #!/bin/sh
al@898 2 #
al@898 3 # SliTaz Cooker CGI + Lighttpd web interface.
al@898 4 #
al@898 5
al@898 6 # Make request URI relative to the script name
al@898 7 base="$(dirname "$SCRIPT_NAME")"; [ "$base" == '/' ] && base=''
al@898 8 REQUEST_URI=$(echo "$REQUEST_URI" | sed "s|^$base/*|/|; s|\?.*||")
al@898 9
al@898 10 # Split the URI request to /pkg/cmd/arg
al@898 11 export pkg=$(echo "$REQUEST_URI" | cut -d/ -f2)
al@898 12 export cmd=$(echo "$REQUEST_URI" | cut -d/ -f3)
al@898 13 export arg=$(echo "$REQUEST_URI" | sed 's|^/[^/]*/[^/]*/||')
al@898 14
al@898 15
al@898 16 . /usr/lib/slitaz/httphelper.sh
al@898 17
al@898 18 [ -f "/etc/slitaz/cook.conf" ] && . /etc/slitaz/cook.conf
al@898 19 [ -f "./cook.conf" ] && . ./cook.conf
al@898 20 wok="$WOK"
al@898 21 title=${title:-SliTaz Cooker}
al@898 22 # Cooker DB files.
al@898 23 activity="$CACHE/activity"
al@898 24 commits="$CACHE/commits"
al@898 25 cooklist="$CACHE/cooklist"
al@898 26 cookorder="$CACHE/cookorder"
al@898 27 command="$CACHE/command"; touch $command
al@898 28 blocked="$CACHE/blocked"
al@898 29 broken="$CACHE/broken"
al@898 30 cooknotes="$CACHE/cooknotes"
al@898 31 cooktime="$CACHE/cooktime"
al@898 32 wokrev="$CACHE/wokrev"
al@898 33
al@898 34 # Path to markdown to html convertor
al@898 35 cmark_opts='--smart -e table -e strikethrough -e autolink -e tagfilter'
al@898 36 if [ -n "$(which cmark 2>/dev/null)" ]; then
al@898 37 md2html="$(which cmark) $cmark_opts"
al@898 38 elif [ -x "./cmark" ]; then
al@898 39 md2html="./cmark $cmark_opts"
al@898 40 elif [ -n "$(which sundown 2>/dev/null)" ]; then
al@898 41 md2html=$(which sundown)
al@898 42 elif [ -x "./sundown" ]; then
al@898 43 md2html="./sundown"
al@898 44 fi
al@898 45
al@898 46
al@898 47
al@898 48
al@898 49 # Search form redirection
al@898 50 if [ -n "$(GET search)" ]; then
al@898 51 echo -e "HTTP/1.1 301 Moved Permanently\nLocation: $base/$(GET q)\n\n"
al@898 52 exit 0
al@898 53 fi
al@898 54
al@898 55
al@898 56 # Show the running command and it's progression
al@898 57
al@898 58 running_command() {
al@898 59 state="$(cat $command)"
al@898 60 local pct
al@898 61 if [ -n "$state" ];then
al@898 62 echo -n "$state</td></tr><tr><td>Completion</td>"
al@898 63 set -- $(grep "^$state" $cooktime)
al@898 64 [ -n "$1" -a $2 -ne 0 ] && pct=$((($(date +%s)-$3)*100/$2))
al@898 65 [ -n "$pct" ] && max="max='100'"
al@898 66 echo -n "<td><progress id='gauge' $max value='$pct' title='Click to stop updating' onclick='stopUpdating()'>"
al@898 67 echo -n "</progress> <span id='pct'>${pct:-?}%</span>"
al@898 68 [ "$2" -gt 60 ] &&
al@898 69 echo -n "</td></tr><tr><td>Estimated end time</td><td>$(date +%H:%M -ud @$(($2+$3)))"
al@898 70 else
al@898 71 echo 'not running'
al@898 72 fi
al@898 73 }
al@898 74
al@898 75
al@898 76 # HTML page header
al@898 77
al@898 78 page_header() {
al@898 79 local theme t='' css
al@898 80 theme=$(COOKIE theme)
al@898 81 [ "$theme" == 'default' ] && theme=''
al@898 82 [ -n "$theme" ] && theme="-$theme"
al@898 83 css="cooker$theme.css"
al@898 84
al@898 85 echo -e 'Content-Type: text/html; charset=UTF-8\n'
al@898 86
al@898 87 cat <<EOT
al@898 88 <!DOCTYPE html>
al@898 89 <html lang="en">
al@898 90 <head>
al@898 91 <title>$([ -n "$pkg" ] && echo "$pkg - ")$title</title>
al@898 92 <link rel="stylesheet" href="/$css">
al@898 93 <link rel="icon" type="image/png" href="/slitaz-cooker.png">
al@903 94 <link rel="search" href="$base/os.xml" title="$title" type="application/opensearchdescription+xml">
al@898 95 <!-- mobile -->
al@898 96 <meta name="viewport" content="width=device-width, initial-scale=1.0">
al@898 97 <meta name="theme-color" content="#222">
al@898 98 <!-- rss -->
al@898 99 <link rel="alternate" type="application/rss+xml" title="$title Feed" href="?rss">
al@898 100 </head>
al@898 101 <body>
al@898 102 <div id="container">
al@898 103 <header>
al@898 104 <h1><a href="$base/">$title</a></h1>
al@898 105 <div class="network">
al@898 106 <a href="http://www.slitaz.org/">Home</a>
al@898 107 <a href="http://bugs.slitaz.org/">Bugs</a>
al@898 108 <a href="http://hg.slitaz.org/wok-next/">Hg</a>
al@898 109 <a href="http://roadmap.slitaz.org/">Roadmap</a>
al@898 110 <a href="http://pizza.slitaz.me/">Pizza</a>
al@898 111 <a href="http://tank.slitaz.org/">Tank</a>
al@898 112 |
al@898 113 <a href="$base/cross/">Cross</a>
al@898 114 <a href="$base/i486.cgi">i486</a>
al@898 115 <a href="$base/cookiso.cgi">ISO</a>
al@898 116 <select onChange="window.location.href=this.value" style="display: none">
al@898 117 <option value=".">Go to…</option>
al@898 118 <option value="http://www.slitaz.org/">Home</option>
al@898 119 <option value="http://bugs.slitaz.org/">Bug tracker</option>
al@898 120 <option value="http://hg.slitaz.org/wok/">Hg wok</option>
al@898 121 <option value="http://roadmap.slitaz.org/">Roadmap</option>
al@898 122 <option value="http://pizza.slitaz.me/">Pizza</option>
al@898 123 <option value="http://tank.slitaz.org/">Tank</option>
al@898 124 <option disabled>---------</option>
al@898 125 <option value="cross/">Cross</option>
al@898 126 <option value="i486.cgi">i486</option>
al@898 127 <option value="cookiso.cgi">ISO</option>
al@898 128 </select>
al@898 129 </div>
al@898 130 </header>
al@898 131
al@898 132 <main>
al@898 133 EOT
al@898 134
al@898 135 [ -n "$(GET debug)" ] && echo "<pre><code class='language-ini'>$(env | sort)</code></pre>"
al@898 136 }
al@898 137
al@898 138
al@898 139 # HTML page footer
al@898 140
al@898 141 page_footer() {
al@898 142 date_now=$(date +%s)
al@898 143 sec_now=$(date +%S); sec_now=${sec_now#0} # remove one leading zero
al@898 144 wait_sec=$(( 60 - $sec_now ))
al@898 145 cat <<EOT
al@898 146 </main>
al@898 147
al@898 148 <footer>
al@898 149 <a href="http://www.slitaz.org/">SliTaz Website</a>
al@898 150 <a href="$base/">Cooker</a>
al@898 151 <a href="$base/doc/cookutils/cookutils.html">Documentation</a>
al@898 152 <a href="$base/?theme">Theme</a>
al@898 153 </footer>
al@898 154 </div>
al@898 155 <script src="/cooker.js"></script>
al@898 156 <script>refreshDate(${wait_sec}000, ${date_now}000)</script>
al@898 157 </body>
al@898 158 </html>
al@898 159 EOT
al@898 160 }
al@898 161
al@898 162
al@898 163 show_note() {
al@898 164 echo "<div class='bigicon-$1'>$2</div>"
al@898 165 }
al@898 166
al@898 167
al@898 168 not_found() {
al@898 169 local file="${1#$PKGS/}"; file="${file#$LOGS/}"; file="${file#$WOK/}"
al@898 170 echo "HTTP/1.1 404 Not Found"
al@898 171 page_header
al@898 172 echo "<h2>Not Found</h2>"
al@898 173 case $2 in
al@898 174 pkg)
al@898 175 show_note e "The requested package “$(basename "$(dirname "$file")")” was not found." ;;
al@898 176 *)
al@898 177 show_note e "The requested file “$file” was not found." ;;
al@898 178 esac
al@898 179 page_footer
al@898 180 }
al@898 181
al@898 182
al@898 183 manage_modified() {
al@898 184 local file="$1" option="$2" nul day mon year time hh mm ss date_s
al@898 185 if [ ! -f "$file" ]; then
al@898 186 if [ "$option" == 'silently-absent' ]; then
al@898 187 echo "HTTP/1.1 404 Not Found"
al@898 188 return
al@898 189 else
al@898 190 not_found "$file" "$2"
al@898 191 exit
al@898 192 fi
al@898 193 fi
al@898 194 [ "$option" == 'no-last-modified' ] && return
al@898 195 if [ -n "$HTTP_IF_MODIFIED_SINCE" ]; then
al@898 196 echo "$HTTP_IF_MODIFIED_SINCE" | \
al@898 197 while read nul day mon year time nul; do
al@898 198 case $mon in
al@898 199 Jan) mon='01';; Feb) mon='02';; Mar) mon='03';; Apr) mon='04';;
al@898 200 May) mon='05';; Jun) mon='06';; Jul) mon='07';; Aug) mon='08';;
al@898 201 Sep) mon='09';; Oct) mon='10';; Nov) mon='11';; Dec) mon='12';;
al@898 202 esac
al@898 203 hh=$(echo $time | cut -d: -f1)
al@898 204 mm=$(echo $time | cut -d: -f2)
al@898 205 ss=$(echo $time | cut -d: -f3)
al@898 206 date_s=$(date -ud "$year$mon$day$hh$mm.$ss" +%s)
al@898 207 # if [ "$date_s" -ge "$(date -ur "$file" +%s)" ]; then
al@898 208 # echo -e 'HTTP/1.1 304 Not Modified\n'
al@898 209 # exit
al@898 210 # fi
al@898 211 # TODO: improve caching control
al@898 212 done
al@898 213 fi
al@898 214 echo "Last-Modified: $(date -Rur "$file" | sed 's|UTC|GMT|')"
al@898 215 echo "Cache-Control: public, max-age=3600"
al@898 216 }
al@898 217
al@898 218
al@898 219 # Query '?pct=<package>': update percentage
al@898 220
al@898 221 if [ -n "$(GET pct)" ]; then
al@898 222 pkg="$(GET pct)"
al@898 223 state="$(cat $command)"
al@898 224 if [ "$state" == "cook:$pkg" ]; then
al@898 225 set -- $(grep "^$state" $cooktime)
al@898 226 [ -n "$1" ] && pct=$(( ($(date +%s) - $3) * 100 / $2 ))
al@898 227 echo "${pct:-?}"
al@898 228 else
al@898 229 echo 'reload'
al@898 230 fi
al@898 231 exit 0
al@898 232 fi
al@898 233
al@898 234
al@898 235 # Query '?poke': poke cooker
al@898 236
al@898 237 if [ -n "$(GET poke)" ]; then
al@898 238 touch $CACHE/cooker-request
al@898 239 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
al@898 240 exit
al@898 241 fi
al@898 242
al@898 243
al@898 244 # Query '?recook=<package>': query to recook package
al@898 245
al@898 246 if [ -n "$(GET recook)" ]; then
al@898 247 pkg="$(GET recook)"
al@898 248 case "$HTTP_USER_AGENT" in
al@898 249 *SliTaz*)
al@898 250 grep -qs "^$pkg$" $CACHE/recook-packages ||
al@898 251 echo "$pkg" >> $CACHE/recook-packages
al@898 252 esac
al@898 253 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
al@898 254 exit
al@898 255 fi
al@898 256
al@898 257
al@898 258 # Query '/i/<log>/<pkg>': show indicator icon
al@898 259 # Can't use ?query - not able to change '+' to '%2B' in the sed rules (see log handler)
al@898 260
al@898 261 if [ "$pkg" == 'i' ]; then
al@898 262 echo -en "Content-Type: image/svg+xml\n\n<svg xmlns='http://www.w3.org/2000/svg' height='12' width='8'><path d='"
al@898 263 if [ $LOGS/$cmd -nt $PKGS/$arg.tazpkg ]; then
al@898 264 echo "m1 2-1 1v8l1 1h6l1-1v-8l-1-1z' fill='#090'/></svg>"
al@898 265 else
al@898 266 echo "m0 3v8l1 1h6l1-1v-8l-1-1h-6zm3 0h2v5h-2zm0 6h2v2h-2z' fill='#d00'/></svg>"
al@898 267 fi
al@898 268 exit
al@898 269 fi
al@898 270
al@898 271
al@898 272 # Query '?theme[=<theme>]': change UI theme
al@898 273
al@898 274 if [ -n "$(GET theme)" ]; then
al@898 275 theme="$(GET theme)"
al@898 276 case $theme in
al@898 277 theme)
al@898 278 current=$(COOKIE theme)
al@898 279 page_header
al@898 280 cat <<EOT
al@898 281 <section>
al@898 282 <h2>Change theme</h2>
al@898 283 <p>Current theme: “${current:-default}”. Select other:</p>
al@898 284 <ul>
al@898 285 $(
al@903 286 for i in default emerald sky goldenrod midnight like2016 terminal; do
al@898 287 [ "$i" == "${current:-default}" ] || echo "<li><a href="$base/?theme=$i">$i</a></li>"
al@898 288 done
al@898 289 )
al@898 290 </ul>
al@898 291 </section>
al@898 292 EOT
al@898 293 page_footer
al@898 294 exit 0
al@898 295 ;;
al@903 296 default|emerald|sky|goldenrod|midnight|like2016|terminal)
al@898 297 # Expires in a year
al@898 298 expires=$(date -uRd @$(($(date +%s)+31536000)) | sed 's|UTC|GMT|')
al@898 299 echo -e "HTTP/1.1 302 Found\nLocation: $base/\nCache-Control: no-cache\nSet-Cookie: theme=$theme; expires=$expires\n\n"
al@898 300 exit 0
al@898 301 ;;
al@898 302 esac
al@898 303 fi
al@898 304
al@898 305
al@898 306 #case "$QUERY_STRING" in
al@898 307 # stuff*)
al@898 308 # file="$wok/$(GET stuff)"
al@898 309 # manage_modified "$file"
al@898 310 # ;;
al@898 311 #
al@898 312 # pkg=*|receipt=*|description=*|files=*|log=*|man=*|doc=*|info=*)
al@898 313 # type=${QUERY_STRING%%=*}
al@898 314 # pkg=$(GET $type)
al@898 315 # case "$type" in
al@898 316 # description)
al@898 317 # manage_modified "$wok/$pkg/receipt" 'no-last-modified'
al@898 318 # manage_modified "$wok/$pkg/description.txt" 'silently-absent'
al@898 319 # ;;
al@898 320 # log)
al@898 321 # manage_modified "$wok/${pkg%%.log*}/receipt" 'no-last-modified'
al@898 322 # manage_modified "$LOGS/$pkg"
al@898 323 # ;;
al@898 324 # *)
al@898 325 # manage_modified "$wok/$pkg/receipt" pkg
al@898 326 # ;;
al@898 327 # esac
al@898 328 # ;;
al@898 329 #esac
al@898 330
al@898 331
al@898 332 # RSS feed generator
al@898 333 # URI: ?rss[&limit={1..100}]
al@898 334
al@898 335 if [ -n "$(GET rss)" ]; then
al@898 336 limit=$(GET limit); limit="${limit:-12}"; [ "$limit" -gt 100 ] && limit='100'
al@898 337 pubdate=$(date -Rur$(ls -t $FEEDS/*.xml | head -n1) | sed 's|UTC|GMT|')
al@898 338 cooker_url="http://$HTTP_HOST$base/"
al@898 339 cat <<EOT
al@898 340 Content-Type: application/rss+xml
al@898 341
al@898 342 <?xml version="1.0" encoding="utf-8" ?>
al@898 343 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
al@898 344 <channel>
al@898 345 <title>$title</title>
al@898 346 <description>The SliTaz packages cooker feed</description>
al@898 347 <link>$cooker_url</link>
al@898 348 <lastBuildDate>$pubdate</lastBuildDate>
al@898 349 <pubDate>$pubdate</pubDate>
al@898 350 <atom:link href="$cooker_url?rss" rel="self" type="application/rss+xml" />
al@898 351 EOT
al@898 352 for rss in $(ls -t $FEEDS/*.xml | head -n$limit); do
al@898 353 sed "s|http[^=]*=|$cooker_url|; s|<guid|& isPermaLink=\"false\"|g; s|</pubDate| GMT&|g" $rss
al@898 354 done
al@898 355 cat <<EOT
al@898 356 </channel>
al@898 357 </rss>
al@898 358 EOT
al@898 359 exit 0
al@898 360 fi
al@898 361
al@898 362
al@903 363 ### OpenSearch ###
al@903 364
al@903 365 # Query '/os.xml': get OpenSearch Description
al@903 366
al@903 367 if [ "$pkg" == 'os.xml' ]; then
al@903 368 cat <<EOT
al@903 369 Content-Type: application/xml; charset=UTF-8
al@903 370
al@903 371 <?xml version="1.0" encoding="UTF-8"?>
al@903 372 <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
al@903 373 <ShortName>$title</ShortName>
al@903 374 <Description>SliTaz packages search</Description>
al@903 375 <Image width="16" height="16" type="image/png">http://$HTTP_HOST/images/logo.png</Image>
al@903 376 <Url type="text/html" method="GET" template="http://$HTTP_HOST$base/{searchTerms}"/>
al@903 377 <Url type="application/x-suggestions+json" method="GET" template="http://$HTTP_HOST$base/">
al@903 378 <Param name="oss" value="{searchTerms}"/>
al@903 379 </Url>
al@903 380 <SearchForm>http://$HTTP_HOST$base/</SearchForm>
al@903 381 <InputEncoding>UTF-8</InputEncoding>
al@903 382 </OpenSearchDescription>
al@903 383 EOT
al@903 384 exit 0
al@903 385 fi
al@903 386
al@903 387 # Query '?oss[=<term>]': OpenSearch suggestions
al@903 388
al@903 389 if [ -n "$(GET oss)" ]; then
al@903 390 term="$(GET oss | tr -cd '[:alnum:]+-')"
al@903 391 echo -e 'Content-Type: application/x-suggestions+json; charset=UTF-8\n'
al@903 392 cd $wok
al@903 393 ls | fgrep "$term" | head -n10 | awk -vterm="$term" '
al@903 394 BEGIN{printf("[\"%s\",[", term)}
al@903 395 {printf("%s\"%s\"", NR != 1 ? "," : "", $0)}
al@903 396 END {printf("]]")}
al@903 397 '
al@903 398 exit 0
al@903 399 fi
al@903 400
al@903 401
al@898 402
al@898 403
al@898 404 #
al@898 405 # Functions
al@898 406 #
al@898 407
al@898 408
al@898 409 # Unpack to stdout
al@898 410
al@898 411 docat() {
al@898 412 case "$1" in
al@898 413 *gz) zcat ;;
al@898 414 *bz2) bzcat ;;
al@898 415 *xz) xzcat ;;
al@898 416 *) cat
al@898 417 esac < $1
al@898 418 }
al@898 419
al@898 420
al@898 421 # Tiny texinfo converter
al@898 422
al@898 423 info2html() {
al@898 424 sed \
al@898 425 -e 's|&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g' \
al@898 426 -e 's|^\* \(.*\)::|* <a href="#\1">\1</a> |' \
al@898 427 -e 's|\*note \(.*\)::|<a href="#\1">\1</a>|' \
al@898 428 -e '/^File: / s|(dir)|Top|g' \
al@898 429 -e '/^File: / s|Next: \([^,]*\)|<a class="button" href="#\1">Next: \1</a>|' \
al@898 430 -e '/^File: / s|Prev: \([^,]*\)|<a class="button" href="#\1">Prev: \1</a>|' \
al@898 431 -e '/^File: / s|Up: \([^,]*\)|<a class="button" href="#\1">Up: \1</a>|' \
al@898 432 -e '/^File: / s|^.* Node: \([^,]*\), *\(.*\)$|<pre id="\1">\2|' \
al@898 433 -e '/^<pre id=/ s|^\([^>]*>\)\(<a[^>]*>Next: [^,]*\), *\(<a[^>]*>Prev: [^,]*\), *\(<a[^>]*>Up: .*\)|\1 \3 \4 \2|' \
al@898 434 -e '/^Tag Table:$/,/^End Tag Table$/d' \
al@898 435 -e '/INFO-DIR/,/^END-INFO-DIR/d' \
al@898 436 -e "s|https*://[^>),'\"\`’ ]*|<a href=\"&\">&</a>|g" \
al@898 437 -e "s|ftp://[^>),\"\` ]*|<a href=\"&\">&</a>|g" \
al@898 438 -e 's|^\* Menu:|<b>Menu:</b>|' \
al@898 439 -e "s|^|</pre>|"
al@898 440 }
al@898 441
al@898 442
al@898 443 # Put some colors into log and DB files.
al@898 444
al@898 445 syntax_highlighter() {
al@898 446 case $1 in
al@898 447 log)
al@898 448 # If variables not defined - define them with some rare values
al@898 449 : ${_src=#_#_#}
al@898 450 : ${_install=#_#_#}
al@898 451 : ${_fs=#_#_#}
al@898 452 : ${_stuff=#_#_#}
al@898 453 # Use one-letter html tags to save some bytes :)
al@898 454 # <b>is error (red)</b> <u>is warning (orange)</u> <i>is informal (green)</i>
al@898 455 sed -e 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g' \
al@898 456 -e 's#OK$#<i>OK</i>#' \
al@898 457 -e 's#\([Dd]one\)$#<i>\1</i>#' \
al@898 458 -e 's#Success$#<i>Success</i>#' \
al@898 459 -e 's#\([^a-z]\)ok$#\1<i>ok</i>#' \
al@898 460 -e 's#\([^a-z]\)yes$#\1<i>yes</i>#' \
al@898 461 -e 's#\([^a-z]\)no$#\1<u>no</u>#' \
al@898 462 -e 's#\([^a-z]\)none$#\1<u>none</u>#' \
al@898 463 -e 's#\([^a-z]\)false$#\1<u>false</u>#' \
al@898 464 -e 's#\(^checking .*\.\.\. \)\(.*\)$#\1<i>\2</i>#' \
al@898 465 \
al@898 466 -e 's#\( \[Y[nm/]\?\] n\)$# <u>\1</u>#' \
al@898 467 -e 's#\( \[N[ym/]\?\] y\)$# <i>\1</i>#' \
al@898 468 -e 's# y$# <i>y</i>#' \
al@898 469 -e 's# n$# <u>n</u>#' \
al@898 470 -e 's#(NEW) *$#<b>(NEW)</b>#' \
al@898 471 \
al@898 472 -e 's#.*(pkg/local).*#<i>\0</i>#' \
al@898 473 -e 's#.*(web/cache).*#<u>\0</u>#' \
al@898 474 \
al@898 475 -e 's#\([^a-zA-Z]\)\([Ee]rror\)$#\1<b>\2</b>#' \
al@898 476 -e 's#ERROR:#<b>ERROR:</b>#g' \
al@898 477 \
al@909 478 -e 's#^.*[Ff][Aa][Ii][Ll][Ee][Dd].*#<b>\0</b>#' \
al@898 479 -e 's#^.*[Ff]atal.*#<b>\0</b>#' \
al@898 480 -e 's#^.*[Nn]ot found.*#<b>\0</b>#' \
al@898 481 -e 's#^.*[Nn]o such file.*#<b>\0</b>#' \
al@898 482 -e 's#^.*No package .* found.*#<b>\0</b>#' \
al@898 483 -e 's#^.*Unable to find.*#<b>\0</b>#' \
al@898 484 -e 's#^.*[Ii]nvalid.*#<b>\0</b>#' \
al@898 485 -e 's#\([Nn][Oo][Tt] found\)$#<b>\1</b>#' \
al@898 486 -e 's#\(found\)$#<i>\1</i>#' \
al@898 487 \
al@898 488 -e 's#^.*WARNING:.*#<u>\0</u>#' \
al@898 489 -e 's#^.*warning:.*#<u>\0</u>#' \
al@898 490 -e 's#^.* [Ee]rror:* .*#<b>\0</b>#' \
al@898 491 -e 's#^.*terminated.*#<b>\0</b>#' \
al@898 492 -e 's#\(missing\)#<b>\1</b>#g' \
al@898 493 -e 's#^.*[Cc]annot find.*#<b>\0</b>#' \
al@898 494 -e 's#^.*unrecognized options.*#<u>\0</u>#' \
al@898 495 -e 's#^.*does not.*#<u>\0</u>#' \
al@898 496 -e 's#^.*[Ii]gnoring.*#<u>\0</u>#' \
al@898 497 -e 's#^.*note:.*#<u>\0</u>#' \
al@898 498 \
al@898 499 -e 's#^.* will not .*#<u>\0</u>#' \
al@898 500 -e 's!^Hunk .* succeeded at .*!<u>\0</u>!' \
al@898 501 -e 's#^.* Warning: .*#<u>\0</u>#' \
al@898 502 \
al@898 503 -e "s#^Executing:\([^']*\).#<em>\0</em>#" \
al@898 504 -e "s#^Making.*#<em>\0</em>#" \
al@898 505 -e "s#^Scanning dependencies of target .*#<em>\0</em>#" \
al@898 506 -e "s#^====\([^']*\).#<span class='span-line'>\0</span>#g" \
al@898 507 -e "s#^[a-zA-Z0-9]\([^']*\) :: #<span class='span-sky'>\0</span>#g" \
al@898 508 -e "s#[fh]tt*ps*://[^ '\"]*#<a href='\0'>\0</a>#g" \
al@898 509 \
al@898 510 -e "s|$_src|<span class='var'>\${src}</span>|g;
al@898 511 s|$_install|<span class='var'>\${install}</span>|g;
al@898 512 s|$_fs|<span class='var'>\${fs}</span>|g;
al@898 513 s|$_stuff|<span class='var'>\${stuff}</span>|g" \
al@898 514 -e "s|\[9\([1-6]\)m|<span class='c\1'>|;
al@898 515 s|\[39m|</span>|;"
al@898 516 ;;
al@898 517
al@898 518 files)
al@898 519 # Highlight the Busybox's `ls` output
al@898 520 awk '{
al@898 521 part1 = substr($0, 0, 16);
al@898 522 part2 = substr($0, 17, 9);
al@898 523 part3 = substr($0, 26, 9);
al@898 524 part4 = substr($0, 35);
al@898 525 if (part2 != "root ") part2 = "<span class=\"c11\">" part2 "</span>";
al@898 526 if (part3 != "root ") part3 = "<span class=\"c11\">" part3 "</span>";
al@898 527 print part1 part2 part3 part4;
al@898 528 }' | \
al@898 529 sed "s|\[\([01]\);3\([1-7]\)m|<a class='c\2\1'>|g;
al@898 530 s|\[\([01]\);0m|<a class='c0\1'>|g;
al@898 531 s|\[0m|</a>|g;
al@898 532 s|^\(lrwxrwxrwx\)|<span class='c61'>\1</span>|;
al@898 533 s|^\(-rwxr-xr-x\)|<span class='c21'>\1</span>|;
al@898 534 s|^\(-rw-r--r--\)|<span class='c31'>\1</span>|;
al@902 535 s|^\([lrwxs-]*\)|<span class='c11'>\1</span>|;
al@898 536 "
al@898 537 ;;
al@898 538 esac
al@898 539 }
al@898 540
al@898 541
al@898 542 show_code() {
al@898 543 echo -n "<pre><code class=\"language-$1\">"
al@898 544 sed 's|&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g'
al@898 545 echo '</code></pre>'
al@898 546 }
al@898 547
al@898 548
al@898 549 datalist() {
al@898 550 (
al@898 551 cd $wok
al@898 552
al@898 553 ls | awk '
al@898 554 BEGIN{printf("<datalist id=\"packages\">")}
al@898 555 {printf("<option>%s</option>",$1)}
al@898 556 END {printf("</datalist>")}
al@898 557 '
al@898 558 )
al@898 559 }
al@898 560
al@898 561
al@898 562 mklog() {
al@898 563 awk '
al@898 564 BEGIN { printf("<pre class=\"log dog\">\n") }
al@898 565 { print }
al@898 566 END { print "</pre>" }'
al@898 567 }
al@898 568
al@898 569
al@898 570 summary() {
al@898 571 log="$1"
al@898 572 pkg="$(basename ${log%%.log*})"
al@898 573
al@898 574 if [ -f "$log" ]; then
al@898 575 if grep -q "cook:$pkg$" $command; then
al@898 576 show_note i "The Cooker is currently building $pkg"
al@898 577 elif fgrep -q "Summary for:" $log; then
al@904 578 sed '/^Summary for:/,$!d' $log | awk '
al@898 579 BEGIN { print "<section>" }
al@904 580 function row(line) {
al@904 581 split(line, s, " : ");
al@904 582 printf("\t<tr><td>%s</td><td>%s</td></tr>\n", s[1], s[2]);
al@904 583 }
al@904 584 function row2(line, rowNum) {
al@904 585 split(line, s, " : ");
al@904 586 if (rowNum == 1)
al@904 587 printf("\t<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n", s[1], s[2], s[3], s[4], s[5]);
al@904 588 else
al@904 589 printf("\t<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n", s[1], s[2], s[3], s[4], s[5]);
al@904 590 }
al@898 591 {
al@904 592 if (NR==1) { printf("<h3>%s</h3>\n<table>\n", $0); next }
al@904 593 if ($0 ~ "===") { seen++; if (seen == 1) next; else exit; }
al@904 594 if ($0 ~ "---") {
al@904 595 seen2++;
al@904 596 if (seen2 == 1) printf("</table>\n<table class=\"pkgslist\">\n")
al@904 597 next
al@898 598 }
al@904 599 if (seen2) row2($0, seen2); else row($0);
al@898 600 }
al@898 601 END { print "</table></section>" }
al@898 602 '
al@898 603 elif fgrep -q "Debug information" $log; then
al@898 604 echo -e '<section>\n<h3>Debug information</h3>'
al@898 605 sed -e '/^Debug information/,$!d; /^===/d; /^$/d' $log | sed -n '1!p' | \
al@898 606 if [ -n "$2" ]; then
al@898 607 syntax_highlighter log | sed 's|\([0-9][0-9]*\):|<a href="#l\1">\1</a>:|'
al@898 608 else
al@898 609 sed 's|^[0-9][0-9]*:||' | syntax_highlighter log
al@898 610 fi | mklog
al@898 611 echo '</section>'
al@898 612 fi
al@898 613 else
al@898 614 [ -n "$pkg" -a -d "$wok/$pkg" ] && show_note e "No log for $pkg"
al@898 615 fi
al@898 616 }
al@898 617
al@898 618
al@898 619 active() {
al@898 620 [ "$cmd" == "$1" -o "$cmd" == "${2:-$1}" ] && echo -n ' active'
al@898 621 }
al@898 622
al@898 623
al@898 624 pkg_info() {
al@898 625 local log active bpkg
al@898 626 log="$LOGS/$pkg.log"
al@898 627
al@898 628 echo "<h2>Package “$pkg”</h2>"
al@898 629 echo '<div id="info">'
al@898 630 echo "<a class='button icon receipt$(active receipt stuff)' href='$base/$pkg/receipt'>receipt &amp; stuff</a>"
al@898 631
al@898 632 unset WEB_SITE WANTED
al@898 633 . $wok/$pkg/receipt
al@898 634
al@898 635 [ -n "$WEB_SITE" ] &&
al@898 636 echo "<a class='button icon website' href='$WEB_SITE' target='_blank' rel='noopener noreferrer'>web site</a>"
al@898 637
al@898 638 if [ -f "$wok/$pkg/taz/$PACKAGE-$VERSION/receipt" ]; then
al@898 639 echo "<a class='button icon files$(active files)' href='$base/$pkg/files'>files</a>"
al@898 640
al@908 641 [ -n "$(ls $wok/$pkg/description*.txt)" ] &&
al@898 642 echo "<a class='button icon desc$(active description)' href='$base/$pkg/description'>description</a>"
al@898 643
al@898 644 unset EXTRAVERSION
al@898 645 . $wok/$pkg/taz/$PACKAGE-$VERSION/receipt
al@898 646 for filename in "$PACKAGE-$VERSION$EXTRAVERSION.tazpkg" "$PACKAGE-$VERSION$EXTRAVERSION-$ARCH.tazpkg"; do
al@898 647 [ -f "$PKGS/$filename" ] &&
al@898 648 echo "<a class='button icon download' href='$base/get/$filename'>download</a>"
al@898 649 done
al@898 650
al@898 651 fi
al@898 652
al@898 653 [ -n "$TARBALL" -a -s "$SRC/$TARBALL" ] &&
al@898 654 echo "<a class='button icon source' href='$base/src/$TARBALL'>source</a>"
al@898 655
al@898 656 echo "<a class='button icon browse' href='$base/$pkg/browse/'>browse</a>"
al@898 657
al@898 658 [ -x ./man2html -a -d "$wok/$pkg/install/usr/share/man" ] &&
al@898 659 echo "<a class='button icon doc$(active man)' href='$base/$pkg/man/'>man</a>"
al@898 660
al@898 661 [ -d "$wok/$pkg/install/usr/share/doc" -o -d "$wok/$pkg/install/usr/share/gtk-doc" ] &&
al@898 662 echo "<a class='button icon doc$(active doc)' href='$base/$pkg/doc/'>doc</a>"
al@898 663
al@898 664 [ -d "$wok/$pkg/install/usr/share/info" ] &&
al@898 665 echo "<a class='button icon doc$(active info)' href='$base/$pkg/info/#Top'>info</a>"
al@898 666
al@898 667 [ -s "$log" ] &&
al@898 668 echo "<a class='button icon log$(active log)' href='$base/$pkg/log/'>logs</a>"
al@898 669
al@898 670 echo '</div>'
al@898 671 }
al@898 672
al@898 673
al@898 674 mktable() {
al@898 675 sed 's# : #|#' | awk -vc="$1" '
al@898 676 BEGIN { printf("<table class=\"%s\">\n", c); FS="|" }
al@898 677 { printf("<tr><td>%s</td>", $1);
al@898 678 if (NF == 2) printf("<td>%s</td>", $2);
al@898 679 printf("</tr>\n", $2) }
al@898 680 END { print "</table>" }'
al@898 681 }
al@898 682
al@898 683
al@898 684 section() {
al@898 685 local i=$(basename "$1")
al@898 686 echo -e '\n\n<section>'
al@898 687 [ $(wc -l < $1) -gt $2 ] && echo "<a class='button icon more r' href='?$i'>${3#*|}</a>"
al@898 688 echo "<h2>${3%|*}</h2>"
al@898 689 mktable "$i"
al@898 690 echo '</section>'
al@898 691 }
al@898 692
al@898 693
al@908 694 show_desc() {
al@908 695 echo "<section><h3>Description of “$1”</h3>"
al@908 696 if [ -n "$md2html" ]; then
al@908 697 $md2html $2
al@908 698 else
al@908 699 show_code markdown < $2
al@908 700 fi
al@908 701 echo "</section>"
al@908 702 }
al@908 703
al@908 704
al@898 705
al@898 706
al@898 707 #
al@898 708 # Load requested page
al@898 709 #
al@898 710
al@898 711 if [ -z "$pkg" ]; then
al@898 712
al@898 713 page_header
al@898 714 if [ -n "$QUERY_STRING" -a "$QUERY_STRING" != 'debug' ]; then
al@898 715
al@898 716 for list in activity cooknotes cooklist; do
al@898 717 [ -n "$(GET $list)" ] || continue
al@898 718 [ "$list" == 'cooklist' ] && nb="- Packages: $(wc -l < $cooklist)"
al@898 719 echo '<section id="content2">'
al@898 720 echo "<h2>DB: $list $nb</h2>"
al@905 721 tac $CACHE/$list | sed 's|cooker.cgi?pkg=||; s|%2B|+|g;
al@898 722 s|\[ Done|<span class="r c20">Done|;
al@898 723 s|\[ Failed|<span class="r c10">Failed|;
al@898 724 s| \]|</span>|' | mktable $list
al@898 725 echo '</section>'
al@898 726 done
al@898 727
al@898 728 if [ -n "$(GET broken)" ]; then
al@898 729 echo '<div id="content2">'
al@898 730 echo "<h2>DB: broken - Packages: $(wc -l < $broken)</h2>"
al@898 731 sort $CACHE/broken | sed "s|^[^']*|<a href='$base/\0'>\0</a>|g" | mktable
al@898 732 echo '</div>'
al@898 733 fi
al@898 734
al@898 735 case "$QUERY_STRING" in
al@898 736 *.log)
al@898 737 log=$LOGS/$QUERY_STRING
al@898 738 name=$(basename $log)
al@898 739 if [ -f "$log" ]; then
al@898 740 echo "<h2>Log for: ${name%.log}</h2>"
al@898 741 if fgrep -q "Summary" $log; then
al@898 742 echo '<pre class="log">'
al@898 743 grep -A 20 '^Summary' $log | syntax_highlighter log
al@898 744 echo '</pre>'
al@898 745 fi
al@898 746 echo '<pre class="log">'
al@898 747 syntax_highlighter log < $log
al@898 748 echo '</pre>'
al@898 749 else
al@898 750 show_note e "No log file: $log"
al@898 751 fi
al@898 752 ;;
al@898 753 esac
al@898 754 page_footer
al@898 755 exit 0
al@898 756 fi
al@898 757
al@898 758
al@898 759 # We may have a toolchain.cgi script for cross cooker's
al@898 760 if [ -f "toolchain.cgi" ]; then
al@898 761 toolchain="toolchain.cgi"
al@898 762 else
al@898 763 toolchain="slitaz-toolchain/"
al@898 764 fi
paul@900 765 # Main page with summary. Count only packages included in ARCH,
al@898 766 # use 'cooker arch-db' to manually create arch.$ARCH files.
al@898 767 inwok=$(ls $WOK/*/arch.$ARCH | wc -l)
al@898 768 cooked=$(ls $PKGS/*.tazpkg | wc -l)
al@898 769 unbuilt=$(($inwok - $cooked))
al@898 770 pct=0; [ $inwok -gt 0 ] && pct=$(( ($cooked * 100) / $inwok ))
al@898 771 cat <<EOT
al@898 772 <div id="content2">
al@898 773
al@898 774 <section>
al@898 775 <form method="get" action="" class="search r">
al@898 776 <input type="hidden" name="search" value="pkg"/>
al@898 777 <button type="submit" title="Search">Search</button>
al@898 778 <input type="search" name="q" placeholder="Package" list="packages" autocorrect="off" autocapitalize="off"/>
al@898 779 </form>
al@898 780
al@898 781 <h2>Summary</h2>
al@898 782 EOT
al@898 783
al@898 784 mktable <<EOT
al@898 785 Cooker state : $(running_command)
al@898 786 Wok revision : <a href='$WOK_URL' target='_blank' rel='noopener noreferrer'>$(cat $wokrev)</a>
al@898 787 Commits to cook : $(wc -l < $commits)
al@898 788 Current cooklist : $(wc -l < $cooklist)
al@898 789 Broken packages : $(wc -l < $broken)
al@898 790 Blocked packages : $(wc -l < $blocked)
al@898 791 Architecture : $ARCH, <a href="$toolchain">toolchain</a>
al@898 792 Server date : <span id='date'>$(date -u '+%F %R %Z')</span>
al@898 793 EOT
al@898 794
al@898 795 # If command is "cook:*", update gauge and percentage periodically.
al@898 796 # If different package is cooking, reload the page (with new settings)
al@898 797 cmd="$(cat $command)"
al@898 798 case "$cmd" in
al@898 799 cook:*)
al@898 800 pkg=${cmd#*:}
al@898 801 echo "<script>updatePkg = '${pkg//+/%2B}';</script>"
al@898 802 ;;
al@898 803 esac
al@898 804
al@898 805 if [ -e "$CACHE/cooker-request" -a ! -s $command ]; then
al@898 806 if [ "$activity" -nt "$CACHE/cooker-request" ]; then
al@898 807 echo '<a class="button icon bell r" href="?poke">Wake up</a>'
al@898 808 else
al@898 809 show_note i 'Cooker will be launched in the next 5 minutes.'
al@898 810 fi
al@898 811 fi
al@898 812
al@898 813 cat <<EOT
al@898 814 <p>Packages: $inwok in the wok · $cooked cooked · $unbuilt unbuilt</p>
al@898 815
al@898 816 <div class="meter"><progress max="100" value="$pct">${pct}%</progress><span>${pct}%</span></div>
al@898 817
al@898 818 <p>
al@898 819 Service logs:
al@898 820 <a href="?cookorder.log">cookorder</a> ·
al@898 821 <a href="?commits.log">commits</a> ·
al@898 822 <a href="?pkgdb.log">pkgdb</a>
al@898 823 </p>
al@898 824 </section>
al@898 825 EOT
al@898 826
al@898 827 tac $activity | head -n12 | sed 's|cooker.cgi?pkg=||;
al@898 828 s|\[ Done|<span class="r c20">Done|;
al@898 829 s|\[ Failed|<span class="r c10">Failed|;
al@898 830 s| \]|</span>|;
al@898 831 s|%2B|\+|g' | \
al@898 832 section $activity 12 "Activity|More activity"
al@898 833
al@898 834 [ -s "$cooknotes" ] && tac $cooknotes | head -n12 | \
al@898 835 section $cooknotes 12 "Cooknotes|More notes"
al@898 836
al@898 837 [ -s "$commits" ] &&
al@898 838 section $commits 20 "Commits|More commits" < $commits
al@898 839
al@898 840 [ -s "$cooklist" ] && head -n 20 $cooklist | \
al@898 841 section $cooklist 20 "Cooklist|Full cooklist"
al@898 842
al@898 843 [ -s "$broken" ] && head -n20 $broken | sed "s|^[^']*|<a href='\0'>\0</a>|g" | \
al@898 844 section $broken 20 "Broken|All broken packages"
al@898 845
al@898 846 [ -s "$blocked" ] && sed "s|^[^']*|<a href='\0'>\0</a>|g" $blocked | \
al@898 847 section $blocked 12 "Blocked|All blocked packages"
al@898 848
al@898 849 cd $PKGS
al@898 850 ls -let *.tazpkg | awk '
al@898 851 (NR<=20){
al@898 852 sub(/:[0-9][0-9]$/, "", $9);
al@898 853 mon = index(" JanFebMarAprMayJunJulAugSepOctNovDec", $7) / 3;
al@898 854 printf("%d-%02d-%02d %s : <a href=\"get/%s\">%s</a>\n", $10, mon, $8, $9, $11, $11);
al@898 855 }' | \
al@898 856 section $activity 1000 "Latest cook"
al@898 857
al@898 858 echo '</div>'
al@898 859 datalist
al@898 860 page_footer
al@898 861 exit 0
al@898 862 fi
al@898 863
al@898 864
al@898 865 case "$cmd" in
al@898 866 '')
al@898 867 page_header
al@898 868 log=$LOGS/$pkg.log
al@898 869
al@898 870 # Package info.
al@898 871 if [ -f "$wok/$pkg/receipt" ]; then
al@898 872 pkg_info
al@898 873 else
al@898 874 if [ $(ls $wok/*$pkg*/receipt 2>/dev/null | wc -l) -eq 0 ]; then
al@898 875 echo "<h2>Not Found</h2>"
al@898 876 show_note e "The requested package <b>$pkg</b> was not found on this server."
al@898 877 else
al@898 878 # Search page
al@898 879 echo "<section><h2>Package names matching “$pkg”</h2>"
al@898 880 echo "<table><thead><tr><th>Name</th><th>Description</th><th>Category</th></tr></thead><tbody>"
al@898 881 for i in $(cd $wok; ls *$pkg*/receipt); do
al@898 882 pkg=$(dirname $i)
al@898 883 unset SHORT_DESC CATEGORY
al@898 884 . $wok/$pkg/receipt
al@898 885 echo -n "<tr><td><a href="$base/$pkg">$pkg</a></td>"
al@898 886 echo -n "<td>$SHORT_DESC</td><td>$CATEGORY</td></tr>"
al@898 887 done
al@898 888 echo '</tbody></table></section>'
al@898 889 unset pkg
al@898 890 fi
al@898 891 page_footer
al@898 892 exit 0
al@898 893 fi
al@898 894
al@898 895 # Check for a log file and display summary if it exists.
al@898 896 summary "$log"
al@898 897
al@898 898 # Display <Recook> button only for SliTaz web browser
al@898 899 if [ -f "$log" ]; then
al@898 900 case "$HTTP_USER_AGENT" in
al@898 901 *SliTaz*)
al@898 902 if [ -f $CACHE/cooker-request -a -n "$HTTP_REFERER" ]; then
al@898 903 if grep -qs "^$pkg$" $CACHE/recook-packages; then
al@898 904 show_note i "The package “$pkg” has been requested for recook"
al@898 905 else
al@898 906 echo "<a class='button' href='$base/?recook=${pkg//+/%2B}'>Recook $pkg</a>"
al@898 907 fi
al@898 908 fi
al@898 909 ;;
al@898 910 esac
al@898 911 fi
al@898 912 ;;
al@898 913
al@898 914 receipt)
al@898 915 page_header
al@898 916 pkg_info
al@898 917 echo "<a class='button receipt' href='$base/$pkg/receipt'>receipt</a>"
al@898 918 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
al@898 919 awk -vb="$base/$pkg" '{printf("<a class=\"button\" href=\"%s/%s\">%s</a>\n", b, $0, $0)}'
al@898 920
al@898 921 show_code bash < $wok/$pkg/receipt
al@898 922 ;;
al@898 923
al@898 924 stuff)
al@898 925 page_header
al@898 926 pkg_info
al@898 927 file="$pkg/stuff/$arg"
al@898 928 echo "<a class='button' href='$base/$pkg/receipt'>receipt</a>"
al@898 929 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
al@898 930 awk -vb="$base/$pkg" -va="stuff/$arg" '{
al@898 931 printf("<a class=\"button%s\" href=\"%s/%s\">%s</a>\n", a==$0 ? " receipt" : "", b, $0, $0)
al@898 932 }'
al@898 933
al@898 934 if [ -f "$wok/$file" ]; then
al@898 935 case $file in
al@898 936 *.desktop|*.theme) class="ini" ;;
al@898 937 *.patch|*.diff|*.u) class="diff" ;;
al@898 938 *.sh) class="bash" ;;
al@898 939 *.conf*|*.ini)
al@898 940 class="bash"
al@898 941 [ -n "$(cut -c1 < $wok/$file | fgrep '[')" ] && class="ini"
al@898 942 ;;
al@898 943 *.pl) class="perl" ;;
al@898 944 *.c|*.h|*.awk) class="clike" ;;
al@898 945 *.svg) class="svg" ;;
al@898 946 *Makefile*) class="makefile" ;;
al@898 947 *.po|*.pot) class="bash" ;;
al@898 948 *.css) class="css" ;;
al@898 949 *.htm|*.html) class="html" ;;
al@898 950 *.js) class="js" ;;
al@898 951 *.txt) class="asciidoc" ;;
al@898 952 *)
al@898 953 case $(head -n1 $wok/$file) in
al@898 954 *!/bin/sh*|*!/bin/bash*) class="bash" ;;
al@898 955 esac
al@898 956 if [ -z "$class" -a "$(head -n1 $wok/$file | cut -b1)" == '#' ]; then
al@898 957 class="bash"
al@898 958 fi
al@898 959 if [ -z "$class" ]; then
al@898 960 # Follow Busybox restrictions. Search for non-printable chars
al@898 961 if [ $(tr -d '[:alnum:][:punct:][:blank:][:cntrl:]' < "$wok/$file" | wc -c) -gt 0 ]; then
al@898 962 raw="true"
al@898 963 fi
al@898 964 fi
al@898 965 ;;
al@898 966 esac
al@898 967
al@898 968 # Display image
al@898 969 case $file in
al@898 970 *.png|*.svg|*.jpg|*.jpeg|*.ico)
al@898 971 echo "<img src='$base/$pkg/browse/stuff/$arg' style='display: block; max-width: 100%; margin: auto'/>"
al@898 972 ;;
al@898 973 esac
al@898 974
al@898 975 # Display colored listing for all text-based documents (also for *.svg)
al@898 976 case $file in
al@898 977 *.png|*.jpg|*.jpeg|*.ico) ;;
al@898 978 *)
al@898 979 if [ -z "$raw" ]; then
al@898 980 cat $wok/$file | show_code $class
al@898 981 fi
al@898 982 ;;
al@898 983 esac
al@898 984
al@898 985 # Display hex dump for binary files
al@898 986 if [ -n "$raw" ]; then
al@898 987 hexdump -C $wok/$file | show_code #| sed 's|^\([0-9a-f][0-9a-f]*\)|<span class="c2">\1</span>|'
al@898 988 fi
al@898 989 else
al@898 990 show_note e "File “$file” absent!"
al@898 991 fi
al@898 992 ;;
al@898 993
al@898 994 files)
al@898 995 page_header
al@898 996 pkg_info
al@898 997
al@898 998 packaged=$(mktemp)
al@898 999
al@898 1000 # find main package
al@898 1001 wanted=$(. $wok/$pkg/receipt; echo $WANTED)
al@898 1002 main=${wanted:-$pkg}
paul@900 1003 # identify split packages
al@898 1004 split="$main $(. $wok/$main/receipt; echo $SPLIT)"
al@898 1005 [ -d "$wok/$main-dev" ] && split="$split $main-dev"
al@898 1006 split="$(echo $split | tr ' ' '\n' | sort -u)"
al@898 1007 # finally we need the version
al@898 1008 ver=$(. $wok/$main/receipt; echo $VERSION$EXTRAVERSION)
al@898 1009
al@898 1010 for p in $split; do
al@898 1011 namever="$p-$ver"
al@898 1012 if [ -d "$wok/$p/taz/$p-$ver" ]; then
al@898 1013 indir=$p
al@898 1014 elif [ -d "$wok/$main/taz/$p-$ver" ]; then
al@898 1015 indir=$main
al@898 1016 fi
al@898 1017 dir="$wok/$indir/taz/$p-$ver/fs"
al@898 1018
al@898 1019 size=$(du -hs $dir | awk '{ sub(/\.0/, ""); print $1 }')
al@898 1020
al@898 1021 echo "<section><h3>Files of package “$namever” ($size):</h3>"
al@898 1022 echo -en '<pre class="files">\n<span class="underline">permissions·lnk·user ·'
al@898 1023 echo -en 'group · size·date &amp; time ·file name\n</span>'
al@898 1024 find $dir -not -type d -print0 | sort -z | xargs -0 ls -ld --color=always | \
al@898 1025 syntax_highlighter files | \
al@898 1026 sed "s|\([^>]*\)>/.*/fs\([^<]*\)\(<.*\)$|\1 href='$base/$indir/browse/taz/$p-$ver/fs\2'>\2\3|" | \
al@898 1027 awk 'BEGIN { FS="\""; }
al@898 1028 { gsub("+", "%2B", $2); print; }'
al@898 1029 echo '</pre></section>'
al@898 1030 cat $wok/$indir/taz/$p-$ver/files.list >> $packaged
al@898 1031 done
al@898 1032
al@898 1033 # find repeatedly packaged files
al@898 1034 repeats="$(sort $packaged | uniq -d)"
al@898 1035 if [ -n "$repeats" ]; then
al@898 1036 echo -n '<section><h3>Repeatedly packaged files:</h3><pre class="files">'
al@898 1037 echo "$repeats" | sed 's|^|<span class="c11">!!!</span> |'
al@898 1038 echo "</pre></section>"
al@898 1039 fi
al@898 1040
al@898 1041 # find unpackaged files
al@898 1042 all_files=$(mktemp)
al@898 1043 cd $wok/$main/install; find ! -type d | sed 's|\.||' > $all_files
al@898 1044 orphans="$(sort $all_files $packaged | uniq -u)"
al@898 1045 if [ -n "$orphans" ]; then
al@898 1046 echo -n '<section><h3>Unpackaged files:</h3><pre class="files">'
al@898 1047 echo "$orphans" | awk '
al@898 1048 function tag(text, color) { printf("<span class=\"c%s1\">%s</span> %s\n", color, text, $0); }
al@904 1049 /\/perllocal.pod$/ || /\/\.packlist$/ || /\/share\/bash-completion\// || /\/lib\/systemd\// { tag("---", 0); next }
al@898 1050 /\.pod$/ { tag("pod", 5); next }
al@898 1051 /\/share\/man\// { tag("man", 5); next }
al@898 1052 /\/share\/doc\// || /\/share\/gtk-doc\// || /\/share\/info\// || /\/share\/devhelp\// { tag("doc", 5); next }
al@898 1053 /\/share\/icons\// { tag("ico", 2); next }
al@898 1054 /\/share\/locale\// { tag("loc", 4); next }
al@898 1055 /\.h$/ || /\.a$/ || /\.la$/ || /\.pc$/ || /\/bin\/.*-config$/ { tag("dev", 3); next }
al@898 1056 { tag("???", 1) }
al@898 1057 '
al@898 1058 echo '</pre></section>'
al@898 1059 fi
al@898 1060 ;;
al@898 1061
al@898 1062 description)
al@898 1063 page_header
al@898 1064 pkg_info
al@908 1065 descs="$(ls $WOK/$pkg/description*.txt)"
al@908 1066 if [ -n "$descs" ]; then
al@898 1067 echo '<div id="content2">'
al@908 1068 [ -f "$WOK/$pkg/description.txt" ] && show_desc "$pkg" "$WOK/$pkg/description.txt"
al@908 1069 for i in $descs; do
al@908 1070 case $i in
al@908 1071 */description.txt) continue ;;
al@908 1072 *) package=$(echo $i | cut -d. -f2) ;;
al@908 1073 esac
al@908 1074 show_desc "$package" "$i"
al@908 1075 done
al@898 1076 echo '</div>'
al@898 1077 else
al@898 1078 show_note w "No description of $pkg"
al@898 1079 fi
al@898 1080 ;;
al@898 1081
al@898 1082 log)
al@898 1083 page_header
al@898 1084 pkg_info
al@898 1085 [ -z "$arg" ] && arg=$(stat -c %Y $LOGS/$pkg.log)
al@898 1086
al@898 1087 echo '<div class="btnList">'
al@898 1088 acc='l'
al@898 1089 while read log; do
al@898 1090 timestamp=$(stat -c %Y $log)
al@898 1091 class=''
al@898 1092 if [ "$arg" == "$timestamp" ]; then
al@898 1093 class=' log'
al@898 1094 logfile="$log"
al@898 1095 fi
al@898 1096 echo -n "<a class='button$class' data-acc='$acc' accesskey='$acc' href='$base/$pkg/log/$timestamp'>"
al@898 1097 echo "$(stat -c %y $log | cut -d: -f1,2)</a>"
al@898 1098 case $acc in
al@898 1099 l) acc=0;;
al@898 1100 *) acc=$((acc+1));;
al@898 1101 esac
al@898 1102 done <<EOT
al@898 1103 $(find $LOGS -name "$pkg.log*" | sort)
al@898 1104 EOT
al@898 1105 echo '</div>'
al@898 1106
al@898 1107 if [ -z "$logfile" ]; then
al@898 1108 show_note e "Requested log is absent"
al@898 1109 page_footer
al@898 1110 exit 0
al@898 1111 fi
al@898 1112
al@898 1113 # Define cook variables for syntax highlighter
al@898 1114 if [ -s "$WOK/$pkg/receipt" ]; then
al@898 1115 . "$WOK/$pkg/receipt"
al@898 1116 _wok='/home/slitaz/wok'
al@898 1117 _src="$_wok/$pkg/source/$PACKAGE-$VERSION"
al@898 1118 _install="$_wok/$pkg/install"
al@898 1119 _fs="$_wok/$pkg/taz/$PACKAGE-$VERSION/fs"
al@898 1120 _stuff="$_wok/$pkg/stuff"
al@898 1121 fi
al@898 1122
al@898 1123 # if [ ! -f "gzlog/$pkg.$arg" ]; then
al@898 1124 # {
al@898 1125 # summary "$logfile" links
al@898 1126 #
al@898 1127 # syntax_highlighter log < $logfile | awk '
al@898 1128 # BEGIN { print "<pre class=\"log\">"; }
al@898 1129 # { printf("<a name=\"l%d\" href=\"#l%d\">%5d</a> %s\n", NR, NR, NR, $0); }
al@898 1130 # END { print "</pre>"; }
al@898 1131 # '
al@898 1132 #
al@898 1133 # page_footer
al@898 1134 # } | gzip > gzlog/$pkg.$arg
al@898 1135 # fi
al@898 1136
al@898 1137 blog=$(basename $logfile)
al@898 1138 summary "$logfile" links
al@898 1139
al@898 1140 # disable next `sed` for the 'like2016' theme
al@898 1141 theme=$(COOKIE theme); theme=${theme:-default}; [ "$theme" != 'like2016' ] && theme=''
al@898 1142 cat $logfile | syntax_highlighter log | \
al@898 1143 sed -e "/(pkg\/local$theme):/ s|: \([^<]*\)|<img src='$base/i/$blog/\1'> \1|" | \
al@898 1144 awk '
al@898 1145 BEGIN { print "<pre class=\"log\">"; }
al@898 1146 { printf("<a name=\"l%d\" href=\"#l%d\">%5d</a> %s\n", NR, NR, NR, $0); }
al@898 1147 END { print "</pre>"; }
al@898 1148 '
al@898 1149 ;;
al@898 1150
al@898 1151
al@898 1152 man|doc|info)
al@898 1153 page_header
al@898 1154 pkg_info
al@898 1155 echo '<div style="max-height: 6.4em; overflow: auto; padding: 0 4px">'
al@898 1156
al@898 1157 dir="wok/$pkg/install/usr/share/$cmd"
al@898 1158 [ "$cmd" == 'doc' ] && dir="$dir wok/$pkg/install/usr/share/gtk-doc"
al@898 1159 if [ "$cmd" == 'doc' -a -z "$arg" ]; then
al@898 1160 try=$(for i in $dir; do find $i -name 'index.htm*'; done | sed q)
al@898 1161 [ -n "$try" ] && arg="$try"
al@898 1162 fi
al@898 1163 while read i; do
al@898 1164 [ -s "$i" ] || continue
al@898 1165 case "$i" in
al@898 1166 *.jp*g|*.png|*.gif|*.svg|*.css) continue
al@898 1167 esac
al@898 1168 i=${i#$dir/}
al@898 1169 [ -n "$arg" ] || arg="$i"
al@898 1170 class=''; [ "$arg" == "$i" ] && class=" doc"
al@898 1171 case "$cmd" in
al@898 1172 man)
al@898 1173 case $i in
al@898 1174 man*) lang='';;
al@898 1175 *) lang="${i%%/*}: ";;
al@898 1176 esac
al@898 1177 man=$(basename $i .gz)
al@898 1178 echo "<a class='button$class' href='$base/$pkg/man/$i'>$lang${man%.*} (${man##*.})</a>"
al@898 1179 ;;
al@898 1180 doc)
al@898 1181 echo "<a class='button$class' href='$base/$pkg/doc/$i'>$(basename $i .gz)</a>"
al@898 1182 ;;
al@898 1183 info)
al@898 1184 info=$(basename $i)
al@898 1185 echo "<a class='button$class' href='$base/$pkg/info/$i#Top'>${info/.info/}</a>"
al@898 1186 ;;
al@898 1187 esac
al@898 1188 done <<EOT
al@898 1189 $(for i in $dir; do find $i -type f; done | sort)
al@898 1190 EOT
al@898 1191 echo '</div>'
al@898 1192
al@898 1193 [ -f "$arg" ] || arg="$dir/$arg"
al@898 1194 if [ -f "$arg" ]; then
al@898 1195 tmp="$(mktemp)"
al@898 1196 docat "$arg" > $tmp
al@898 1197 [ -s "$tmp" ] &&
al@898 1198 case "$cmd" in
al@898 1199 info)
al@898 1200 echo '<div id="content2" class="texinfo"><pre class="first">'
al@898 1201 info2html < "$tmp"
al@898 1202 echo '</pre></div>'
al@898 1203 ;;
al@898 1204 doc)
al@898 1205 case "$arg" in
al@898 1206 *.sgml|*.devhelp2) class='xml';;
al@898 1207 *.py) class='python';; # pycurl package
al@898 1208 *.css) class='css';;
al@898 1209 *) class='asciidoc';;
al@898 1210 esac
al@898 1211 case "$arg" in
al@898 1212 *.htm*)
al@898 1213 case $arg in
al@898 1214 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
al@898 1215 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
al@898 1216 esac
paul@900 1217 # make the iframe height so long to contain its content without scrollbar
al@898 1218 echo "<iframe id='idoc' src='$page' width='100%' onload='resizeIframe(this)'></iframe>"
al@898 1219 ;;
al@898 1220 *.pdf)
al@898 1221 case $arg in
al@898 1222 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
al@898 1223 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
al@898 1224 esac
al@898 1225 cat <<EOT
al@898 1226 <object id="idoc" data="$page" width="100%" height="100%" type="application/pdf" style="min-height: 600px">
al@898 1227 $(show_note w "Missing PDF plugin.<br/>Get the file <a href="$page">$(basename "$page")</a>.")
al@898 1228 </object>
al@898 1229 EOT
al@898 1230 ;;
al@898 1231 *)
al@898 1232 show_code $class < "$tmp"
al@898 1233 ;;
al@898 1234 esac
al@898 1235 ;;
al@898 1236 man)
al@898 1237 #export TEXTDOMAIN='man2html'
al@898 1238 echo "<div id='content2'>"
al@898 1239
al@898 1240 html=$(./man2html "$tmp" | sed -e '1,/<header>/d' -e '/<footer>/,$d' \
al@898 1241 -e 's|<a href="file:///[^>]*>\([^<]*\)</a>|\1|g' \
al@898 1242 -e 's|<a href="?[1-9]\+[^>]*>\([^<]*\)</a>|\1|g')
al@898 1243
al@898 1244 if [ -n "$(echo "$html" | fgrep 'The requested file /tmp/tmp.')" ]; then
al@898 1245 # Process the pre-formatted man-cat page
al@898 1246 echo '<pre>'
al@898 1247 sed '
al@898 1248 s|M-bM-^@M-^S|—|g;
al@898 1249 s|M-bM-^@M-^\\|<b>|g;
al@898 1250 s|M-bM-^@M-^]|</b>|g
al@898 1251 s|M-bM-^@M-^X|<u>|g;
al@898 1252 s|M-bM-^@M-^Y|</u>|g;
al@898 1253 s|M-BM-||g;
al@898 1254 ' "$tmp"
al@898 1255 echo '</pre>'
al@898 1256 else
al@898 1257 echo "$html"
al@898 1258 fi
al@898 1259 echo "</div>"
al@898 1260 ;;
al@898 1261 esac
al@898 1262 rm -f $tmp
al@898 1263 else
al@898 1264 show_note e "File “$arg” not exists!"
al@898 1265 fi
al@898 1266 ;;
al@898 1267
al@898 1268 esac
al@898 1269
al@898 1270
al@898 1271 page_footer
al@898 1272 exit 0