cookutils annotate lighttpd/index.cgi @ rev 1005

(and again)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 07 13:57:02 2017 +0200 (2017-11-07)
parents 75b330dd2734
children 553a90d99a5b
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@933 33 webstat="$CACHE/webstat"
al@940 34 splitdb="$CACHE/split.db"
al@898 35
al@898 36 # Path to markdown to html convertor
al@898 37 cmark_opts='--smart -e table -e strikethrough -e autolink -e tagfilter'
al@898 38 if [ -n "$(which cmark 2>/dev/null)" ]; then
al@898 39 md2html="$(which cmark) $cmark_opts"
al@898 40 elif [ -x "./cmark" ]; then
al@898 41 md2html="./cmark $cmark_opts"
al@898 42 elif [ -n "$(which sundown 2>/dev/null)" ]; then
al@898 43 md2html=$(which sundown)
al@898 44 elif [ -x "./sundown" ]; then
al@898 45 md2html="./sundown"
al@898 46 fi
al@898 47
al@898 48
al@898 49
al@898 50
al@898 51 # Search form redirection
al@898 52 if [ -n "$(GET search)" ]; then
al@898 53 echo -e "HTTP/1.1 301 Moved Permanently\nLocation: $base/$(GET q)\n\n"
al@898 54 exit 0
al@898 55 fi
al@898 56
al@898 57
al@898 58 # Show the running command and it's progression
al@898 59
al@898 60 running_command() {
al@898 61 state="$(cat $command)"
al@923 62 local pct=''
al@898 63 if [ -n "$state" ];then
al@898 64 echo -n "$state</td></tr><tr><td>Completion</td>"
al@898 65 set -- $(grep "^$state" $cooktime)
al@898 66 [ -n "$1" -a $2 -ne 0 ] && pct=$((($(date +%s)-$3)*100/$2))
al@898 67 [ -n "$pct" ] && max="max='100'"
al@898 68 echo -n "<td><progress id='gauge' $max value='$pct' title='Click to stop updating' onclick='stopUpdating()'>"
al@898 69 echo -n "</progress> <span id='pct'>${pct:-?}%</span>"
al@898 70 [ "$2" -gt 60 ] &&
al@898 71 echo -n "</td></tr><tr><td>Estimated end time</td><td>$(date +%H:%M -ud @$(($2+$3)))"
al@898 72 else
al@898 73 echo 'not running'
al@898 74 fi
al@898 75 }
al@898 76
al@898 77
al@898 78 # HTML page header
al@898 79
al@898 80 page_header() {
al@898 81 local theme t='' css
al@898 82 theme=$(COOKIE theme)
al@898 83 [ "$theme" == 'default' ] && theme=''
al@898 84 [ -n "$theme" ] && theme="-$theme"
al@898 85 css="cooker$theme.css"
al@898 86
al@898 87 echo -e 'Content-Type: text/html; charset=UTF-8\n'
al@898 88
al@898 89 cat <<EOT
al@898 90 <!DOCTYPE html>
al@898 91 <html lang="en">
al@898 92 <head>
al@898 93 <title>$([ -n "$pkg" ] && echo "$pkg - ")$title</title>
al@898 94 <link rel="stylesheet" href="/$css">
al@898 95 <link rel="icon" type="image/png" href="/slitaz-cooker.png">
al@903 96 <link rel="search" href="$base/os.xml" title="$title" type="application/opensearchdescription+xml">
al@898 97 <!-- mobile -->
al@898 98 <meta name="viewport" content="width=device-width, initial-scale=1.0">
al@898 99 <meta name="theme-color" content="#222">
al@898 100 <!-- rss -->
al@898 101 <link rel="alternate" type="application/rss+xml" title="$title Feed" href="?rss">
al@898 102 </head>
al@898 103 <body>
al@898 104 <div id="container">
al@898 105 <header>
al@898 106 <h1><a href="$base/">$title</a></h1>
al@898 107 <div class="network">
al@898 108 <a href="http://www.slitaz.org/">Home</a>
al@898 109 <a href="http://bugs.slitaz.org/">Bugs</a>
al@898 110 <a href="http://hg.slitaz.org/wok-next/">Hg</a>
al@898 111 <a href="http://roadmap.slitaz.org/">Roadmap</a>
al@898 112 <a href="http://pizza.slitaz.me/">Pizza</a>
al@898 113 <a href="http://tank.slitaz.org/">Tank</a>
al@898 114 |
al@947 115 <a href="/cross/">Cross</a>
al@947 116 <a href="/i486.cgi">i486</a>
al@898 117 <a href="$base/cookiso.cgi">ISO</a>
al@898 118 <select onChange="window.location.href=this.value" style="display: none">
al@898 119 <option value=".">Go to…</option>
al@898 120 <option value="http://www.slitaz.org/">Home</option>
al@898 121 <option value="http://bugs.slitaz.org/">Bug tracker</option>
al@898 122 <option value="http://hg.slitaz.org/wok/">Hg wok</option>
al@898 123 <option value="http://roadmap.slitaz.org/">Roadmap</option>
al@898 124 <option value="http://pizza.slitaz.me/">Pizza</option>
al@898 125 <option value="http://tank.slitaz.org/">Tank</option>
al@898 126 <option disabled>---------</option>
al@898 127 <option value="cross/">Cross</option>
al@898 128 <option value="i486.cgi">i486</option>
al@898 129 <option value="cookiso.cgi">ISO</option>
al@898 130 </select>
al@898 131 </div>
al@898 132 </header>
al@898 133
al@898 134 <main>
al@898 135 EOT
al@898 136
al@898 137 [ -n "$(GET debug)" ] && echo "<pre><code class='language-ini'>$(env | sort)</code></pre>"
al@898 138 }
al@898 139
al@898 140
al@898 141 # HTML page footer
al@898 142
al@898 143 page_footer() {
al@898 144 date_now=$(date +%s)
al@898 145 sec_now=$(date +%S); sec_now=${sec_now#0} # remove one leading zero
al@898 146 wait_sec=$(( 60 - $sec_now ))
al@898 147 cat <<EOT
al@898 148 </main>
al@898 149
al@898 150 <footer>
al@898 151 <a href="http://www.slitaz.org/">SliTaz Website</a>
al@898 152 <a href="$base/">Cooker</a>
al@898 153 <a href="$base/doc/cookutils/cookutils.html">Documentation</a>
al@898 154 <a href="$base/?theme">Theme</a>
al@898 155 </footer>
al@898 156 </div>
al@898 157 <script src="/cooker.js"></script>
al@898 158 <script>refreshDate(${wait_sec}000, ${date_now}000)</script>
al@898 159 </body>
al@898 160 </html>
al@898 161 EOT
al@898 162 }
al@898 163
al@898 164
al@898 165 show_note() {
al@898 166 echo "<div class='bigicon-$1'>$2</div>"
al@898 167 }
al@898 168
al@898 169
al@898 170 not_found() {
al@898 171 local file="${1#$PKGS/}"; file="${file#$LOGS/}"; file="${file#$WOK/}"
al@898 172 echo "HTTP/1.1 404 Not Found"
al@898 173 page_header
al@898 174 echo "<h2>Not Found</h2>"
al@898 175 case $2 in
al@898 176 pkg)
al@898 177 show_note e "The requested package “$(basename "$(dirname "$file")")” was not found." ;;
al@898 178 *)
al@898 179 show_note e "The requested file “$file” was not found." ;;
al@898 180 esac
al@898 181 page_footer
al@898 182 }
al@898 183
al@898 184
al@898 185 manage_modified() {
al@898 186 local file="$1" option="$2" nul day mon year time hh mm ss date_s
al@898 187 if [ ! -f "$file" ]; then
al@898 188 if [ "$option" == 'silently-absent' ]; then
al@898 189 echo "HTTP/1.1 404 Not Found"
al@898 190 return
al@898 191 else
al@898 192 not_found "$file" "$2"
al@898 193 exit
al@898 194 fi
al@898 195 fi
al@898 196 [ "$option" == 'no-last-modified' ] && return
al@898 197 if [ -n "$HTTP_IF_MODIFIED_SINCE" ]; then
al@898 198 echo "$HTTP_IF_MODIFIED_SINCE" | \
al@898 199 while read nul day mon year time nul; do
al@898 200 case $mon in
al@898 201 Jan) mon='01';; Feb) mon='02';; Mar) mon='03';; Apr) mon='04';;
al@898 202 May) mon='05';; Jun) mon='06';; Jul) mon='07';; Aug) mon='08';;
al@898 203 Sep) mon='09';; Oct) mon='10';; Nov) mon='11';; Dec) mon='12';;
al@898 204 esac
al@898 205 hh=$(echo $time | cut -d: -f1)
al@898 206 mm=$(echo $time | cut -d: -f2)
al@898 207 ss=$(echo $time | cut -d: -f3)
al@898 208 date_s=$(date -ud "$year$mon$day$hh$mm.$ss" +%s)
al@898 209 # if [ "$date_s" -ge "$(date -ur "$file" +%s)" ]; then
al@898 210 # echo -e 'HTTP/1.1 304 Not Modified\n'
al@898 211 # exit
al@898 212 # fi
al@898 213 # TODO: improve caching control
al@898 214 done
al@898 215 fi
al@898 216 echo "Last-Modified: $(date -Rur "$file" | sed 's|UTC|GMT|')"
al@898 217 echo "Cache-Control: public, max-age=3600"
al@898 218 }
al@898 219
al@898 220
al@898 221 # Query '?pct=<package>': update percentage
al@898 222
al@898 223 if [ -n "$(GET pct)" ]; then
al@898 224 pkg="$(GET pct)"
al@898 225 state="$(cat $command)"
al@898 226 if [ "$state" == "cook:$pkg" ]; then
al@898 227 set -- $(grep "^$state" $cooktime)
al@898 228 [ -n "$1" ] && pct=$(( ($(date +%s) - $3) * 100 / $2 ))
al@898 229 echo "${pct:-?}"
al@898 230 else
al@898 231 echo 'reload'
al@898 232 fi
al@898 233 exit 0
al@898 234 fi
al@898 235
al@898 236
al@898 237 # Query '?poke': poke cooker
al@898 238
al@898 239 if [ -n "$(GET poke)" ]; then
al@898 240 touch $CACHE/cooker-request
al@898 241 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
al@898 242 exit
al@898 243 fi
al@898 244
al@898 245
al@898 246 # Query '?recook=<package>': query to recook package
al@898 247
al@898 248 if [ -n "$(GET recook)" ]; then
al@898 249 pkg="$(GET recook)"
al@898 250 case "$HTTP_USER_AGENT" in
al@898 251 *SliTaz*)
al@898 252 grep -qs "^$pkg$" $CACHE/recook-packages ||
al@898 253 echo "$pkg" >> $CACHE/recook-packages
al@898 254 esac
al@898 255 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
al@898 256 exit
al@898 257 fi
al@898 258
al@898 259
al@898 260 # Query '/i/<log>/<pkg>': show indicator icon
al@898 261 # Can't use ?query - not able to change '+' to '%2B' in the sed rules (see log handler)
al@898 262
al@898 263 if [ "$pkg" == 'i' ]; then
al@898 264 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 265 if [ $LOGS/$cmd -nt $PKGS/$arg.tazpkg ]; then
al@898 266 echo "m1 2-1 1v8l1 1h6l1-1v-8l-1-1z' fill='#090'/></svg>"
al@898 267 else
al@898 268 echo "m0 3v8l1 1h6l1-1v-8l-1-1h-6zm3 0h2v5h-2zm0 6h2v2h-2z' fill='#d00'/></svg>"
al@898 269 fi
al@898 270 exit
al@898 271 fi
al@898 272
al@898 273
al@982 274 # Query '/s/<pkg>': show status indicator icon
al@982 275 # Can't use ?query - not able to change '+' to '%2B' in the sed rules (see log handler)
al@982 276
al@982 277 if [ "$pkg" == 's' ]; then
al@982 278 # argument <pkg> is in $cmd variable
al@982 279 echo -en "Content-Type: image/svg+xml\n\n<svg xmlns='http://www.w3.org/2000/svg' height='12' width='8'><path d='"
al@1005 280 # packages.info updates with each new package, so we'll find actual info here
al@1005 281 if grep -q "^$cmd"$'\t' $PKGS/packages.info; then
al@982 282 echo "m1 2-1 1v8l1 1h6l1-1v-8l-1-1z' fill='#090'/></svg>"
al@982 283 else
al@982 284 echo "m0 3v8l1 1h6l1-1v-8l-1-1h-6zm3 0h2v5h-2zm0 6h2v2h-2z' fill='#d00'/></svg>"
al@982 285 fi
al@982 286 exit
al@982 287 fi
al@982 288
al@982 289
al@898 290 # Query '?theme[=<theme>]': change UI theme
al@898 291
al@898 292 if [ -n "$(GET theme)" ]; then
al@898 293 theme="$(GET theme)"
al@924 294 ref="$(echo "$HTTP_REFERER" | sed 's|:|%3A|g; s|/|%2F|g; s|\?|%3F|g; s|\+|%2B|g;')"
al@898 295 case $theme in
al@898 296 theme)
al@898 297 current=$(COOKIE theme)
al@898 298 page_header
al@898 299 cat <<EOT
al@898 300 <section>
al@898 301 <h2>Change theme</h2>
al@898 302 <p>Current theme: “${current:-default}”. Select other:</p>
al@898 303 <ul>
al@898 304 $(
al@903 305 for i in default emerald sky goldenrod midnight like2016 terminal; do
al@924 306 [ "$i" == "${current:-default}" ] || echo "<li><a href=\"$base/?theme=$i&amp;ref=$ref\">$i</a></li>"
al@898 307 done
al@898 308 )
al@898 309 </ul>
al@898 310 </section>
al@898 311 EOT
al@898 312 page_footer
al@898 313 exit 0
al@898 314 ;;
al@903 315 default|emerald|sky|goldenrod|midnight|like2016|terminal)
al@924 316 ref="$(GET ref)"
al@924 317 [ -n "$ref" ] || ref="$base/"
al@898 318 # Expires in a year
al@898 319 expires=$(date -uRd @$(($(date +%s)+31536000)) | sed 's|UTC|GMT|')
al@924 320 echo -e "HTTP/1.1 302 Found\nLocation: $ref\nCache-Control: no-cache\nSet-Cookie: theme=$theme; expires=$expires\n\n"
al@898 321 exit 0
al@898 322 ;;
al@898 323 esac
al@898 324 fi
al@898 325
al@898 326
al@898 327 #case "$QUERY_STRING" in
al@898 328 # stuff*)
al@898 329 # file="$wok/$(GET stuff)"
al@898 330 # manage_modified "$file"
al@898 331 # ;;
al@898 332 #
al@898 333 # pkg=*|receipt=*|description=*|files=*|log=*|man=*|doc=*|info=*)
al@898 334 # type=${QUERY_STRING%%=*}
al@898 335 # pkg=$(GET $type)
al@898 336 # case "$type" in
al@898 337 # description)
al@898 338 # manage_modified "$wok/$pkg/receipt" 'no-last-modified'
al@898 339 # manage_modified "$wok/$pkg/description.txt" 'silently-absent'
al@898 340 # ;;
al@898 341 # log)
al@898 342 # manage_modified "$wok/${pkg%%.log*}/receipt" 'no-last-modified'
al@898 343 # manage_modified "$LOGS/$pkg"
al@898 344 # ;;
al@898 345 # *)
al@898 346 # manage_modified "$wok/$pkg/receipt" pkg
al@898 347 # ;;
al@898 348 # esac
al@898 349 # ;;
al@898 350 #esac
al@898 351
al@898 352
al@898 353 # RSS feed generator
al@898 354 # URI: ?rss[&limit={1..100}]
al@898 355
al@898 356 if [ -n "$(GET rss)" ]; then
al@898 357 limit=$(GET limit); limit="${limit:-12}"; [ "$limit" -gt 100 ] && limit='100'
al@898 358 pubdate=$(date -Rur$(ls -t $FEEDS/*.xml | head -n1) | sed 's|UTC|GMT|')
al@898 359 cooker_url="http://$HTTP_HOST$base/"
al@898 360 cat <<EOT
al@898 361 Content-Type: application/rss+xml
al@898 362
al@898 363 <?xml version="1.0" encoding="utf-8" ?>
al@898 364 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
al@898 365 <channel>
al@898 366 <title>$title</title>
al@898 367 <description>The SliTaz packages cooker feed</description>
al@898 368 <link>$cooker_url</link>
al@898 369 <lastBuildDate>$pubdate</lastBuildDate>
al@898 370 <pubDate>$pubdate</pubDate>
al@898 371 <atom:link href="$cooker_url?rss" rel="self" type="application/rss+xml" />
al@898 372 EOT
al@898 373 for rss in $(ls -t $FEEDS/*.xml | head -n$limit); do
al@898 374 sed "s|http[^=]*=|$cooker_url|; s|<guid|& isPermaLink=\"false\"|g; s|</pubDate| GMT&|g" $rss
al@898 375 done
al@898 376 cat <<EOT
al@898 377 </channel>
al@898 378 </rss>
al@898 379 EOT
al@898 380 exit 0
al@898 381 fi
al@898 382
al@898 383
al@903 384 ### OpenSearch ###
al@903 385
al@903 386 # Query '/os.xml': get OpenSearch Description
al@903 387
al@903 388 if [ "$pkg" == 'os.xml' ]; then
al@903 389 cat <<EOT
al@903 390 Content-Type: application/xml; charset=UTF-8
al@903 391
al@903 392 <?xml version="1.0" encoding="UTF-8"?>
al@903 393 <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
al@903 394 <ShortName>$title</ShortName>
al@903 395 <Description>SliTaz packages search</Description>
al@903 396 <Image width="16" height="16" type="image/png">http://$HTTP_HOST/images/logo.png</Image>
al@903 397 <Url type="text/html" method="GET" template="http://$HTTP_HOST$base/{searchTerms}"/>
al@903 398 <Url type="application/x-suggestions+json" method="GET" template="http://$HTTP_HOST$base/">
al@903 399 <Param name="oss" value="{searchTerms}"/>
al@903 400 </Url>
al@903 401 <SearchForm>http://$HTTP_HOST$base/</SearchForm>
al@903 402 <InputEncoding>UTF-8</InputEncoding>
al@903 403 </OpenSearchDescription>
al@903 404 EOT
al@903 405 exit 0
al@903 406 fi
al@903 407
al@903 408 # Query '?oss[=<term>]': OpenSearch suggestions
al@903 409
al@903 410 if [ -n "$(GET oss)" ]; then
al@903 411 term="$(GET oss | tr -cd '[:alnum:]+-')"
al@903 412 echo -e 'Content-Type: application/x-suggestions+json; charset=UTF-8\n'
al@903 413 cd $wok
al@903 414 ls | fgrep "$term" | head -n10 | awk -vterm="$term" '
al@903 415 BEGIN{printf("[\"%s\",[", term)}
al@903 416 {printf("%s\"%s\"", NR != 1 ? "," : "", $0)}
al@903 417 END {printf("]]")}
al@903 418 '
al@903 419 exit 0
al@903 420 fi
al@903 421
al@903 422
al@898 423
al@898 424
al@898 425 #
al@898 426 # Functions
al@898 427 #
al@898 428
al@898 429
al@898 430 # Unpack to stdout
al@898 431
al@898 432 docat() {
al@898 433 case "$1" in
al@898 434 *gz) zcat ;;
al@898 435 *bz2) bzcat ;;
al@898 436 *xz) xzcat ;;
al@898 437 *) cat
al@898 438 esac < $1
al@898 439 }
al@898 440
al@898 441
al@898 442 # Tiny texinfo converter
al@898 443
al@898 444 info2html() {
al@898 445 sed \
al@898 446 -e 's|&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g' \
al@898 447 -e 's|^\* \(.*\)::|* <a href="#\1">\1</a> |' \
al@898 448 -e 's|\*note \(.*\)::|<a href="#\1">\1</a>|' \
al@898 449 -e '/^File: / s|(dir)|Top|g' \
al@898 450 -e '/^File: / s|Next: \([^,]*\)|<a class="button" href="#\1">Next: \1</a>|' \
al@898 451 -e '/^File: / s|Prev: \([^,]*\)|<a class="button" href="#\1">Prev: \1</a>|' \
al@898 452 -e '/^File: / s|Up: \([^,]*\)|<a class="button" href="#\1">Up: \1</a>|' \
al@898 453 -e '/^File: / s|^.* Node: \([^,]*\), *\(.*\)$|<pre id="\1">\2|' \
al@898 454 -e '/^<pre id=/ s|^\([^>]*>\)\(<a[^>]*>Next: [^,]*\), *\(<a[^>]*>Prev: [^,]*\), *\(<a[^>]*>Up: .*\)|\1 \3 \4 \2|' \
al@898 455 -e '/^Tag Table:$/,/^End Tag Table$/d' \
al@898 456 -e '/INFO-DIR/,/^END-INFO-DIR/d' \
al@898 457 -e "s|https*://[^>),'\"\`’ ]*|<a href=\"&\">&</a>|g" \
al@898 458 -e "s|ftp://[^>),\"\` ]*|<a href=\"&\">&</a>|g" \
al@898 459 -e 's|^\* Menu:|<b>Menu:</b>|' \
al@898 460 -e "s|^|</pre>|"
al@898 461 }
al@898 462
al@898 463
al@898 464 # Put some colors into log and DB files.
al@898 465
al@898 466 syntax_highlighter() {
al@898 467 case $1 in
al@898 468 log)
al@898 469 # If variables not defined - define them with some rare values
al@898 470 : ${_src=#_#_#}
al@898 471 : ${_install=#_#_#}
al@898 472 : ${_fs=#_#_#}
al@898 473 : ${_stuff=#_#_#}
al@898 474 # Use one-letter html tags to save some bytes :)
al@998 475 # <b>is error (red)</b> <u>is warning (orange)</u> <i>is informative (green)</i>
al@1002 476 sed \
al@1002 477 -e 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g' \
al@898 478 -e 's#OK$#<i>OK</i>#' \
al@898 479 -e 's#\([Dd]one\)$#<i>\1</i>#' \
al@898 480 -e 's#Success$#<i>Success</i>#' \
al@898 481 -e 's#\([^a-z]\)ok$#\1<i>ok</i>#' \
al@898 482 -e 's#\([^a-z]\)yes$#\1<i>yes</i>#' \
al@912 483 -e 's#\([^a-z]\)ON$#\1<i>ON</i>#' \
al@898 484 -e 's#\([^a-z]\)no$#\1<u>no</u>#' \
al@898 485 -e 's#\([^a-z]\)none$#\1<u>none</u>#' \
al@898 486 -e 's#\([^a-z]\)false$#\1<u>false</u>#' \
al@912 487 -e 's#\([^a-z]\)OFF$#\1<u>OFF</u>#' \
al@898 488 -e 's#\(^checking .*\.\.\. \)\(.*\)$#\1<i>\2</i>#' \
al@898 489 \
al@898 490 -e 's#\( \[Y[nm/]\?\] n\)$# <u>\1</u>#' \
al@898 491 -e 's#\( \[N[ym/]\?\] y\)$# <i>\1</i>#' \
al@898 492 -e 's# y$# <i>y</i>#' \
al@898 493 -e 's# n$# <u>n</u>#' \
al@898 494 -e 's#(NEW) *$#<b>(NEW)</b>#' \
al@898 495 \
al@898 496 -e 's#.*(pkg/local).*#<i>\0</i>#' \
al@898 497 -e 's#.*(web/cache).*#<u>\0</u>#' \
al@898 498 \
al@898 499 -e 's#\([^a-zA-Z]\)\([Ee]rror\)$#\1<b>\2</b>#' \
al@898 500 -e 's#ERROR:#<b>ERROR:</b>#g' \
al@898 501 \
al@909 502 -e 's#^.*[Ff][Aa][Ii][Ll][Ee][Dd].*#<b>\0</b>#' \
al@898 503 -e 's#^.*[Ff]atal.*#<b>\0</b>#' \
al@989 504 -e '/non-fatal/ s|</*b>||g' \
al@898 505 -e 's#^.*[Nn]ot found.*#<b>\0</b>#' \
al@898 506 -e 's#^.*[Nn]o such file.*#<b>\0</b>#' \
al@898 507 -e 's#^.*No package .* found.*#<b>\0</b>#' \
al@898 508 -e 's#^.*Unable to find.*#<b>\0</b>#' \
al@938 509 -e 's#[^a-zA-Z-][Ii]nvalid.*#<b>\0</b>#' \
al@914 510 -e 's#\([Nn][Oo][Tt] found\.*\)$#<b>\1</b>#' \
al@914 511 -e 's#\(found\.*\)$#<i>\1</i>#' \
al@898 512 \
al@898 513 -e 's#^.*WARNING:.*#<u>\0</u>#' \
al@898 514 -e 's#^.*warning:.*#<u>\0</u>#' \
al@898 515 -e 's#^.* [Ee]rror:* .*#<b>\0</b>#' \
al@898 516 -e 's#^.*terminated.*#<b>\0</b>#' \
al@898 517 -e 's#\(missing\)#<b>\1</b>#g' \
al@898 518 -e 's#^.*[Cc]annot find.*#<b>\0</b>#' \
al@898 519 -e 's#^.*unrecognized options.*#<u>\0</u>#' \
al@898 520 -e 's#^.*does not.*#<u>\0</u>#' \
al@898 521 -e 's#^.*[Ii]gnoring.*#<u>\0</u>#' \
al@898 522 -e 's#^.*note:.*#<u>\0</u>#' \
al@898 523 \
al@898 524 -e 's#^.* will not .*#<u>\0</u>#' \
al@898 525 -e 's!^Hunk .* succeeded at .*!<u>\0</u>!' \
al@898 526 -e 's#^.* Warning: .*#<u>\0</u>#' \
al@898 527 \
al@898 528 -e "s#^Executing:\([^']*\).#<em>\0</em>#" \
al@898 529 -e "s#^Making.*#<em>\0</em>#" \
al@898 530 -e "s#^Scanning dependencies of target .*#<em>\0</em>#" \
al@898 531 -e "s#^====\([^']*\).#<span class='span-line'>\0</span>#g" \
al@898 532 -e "s#^[a-zA-Z0-9]\([^']*\) :: #<span class='span-sky'>\0</span>#g" \
al@898 533 -e "s#[fh]tt*ps*://[^ '\"]*#<a href='\0'>\0</a>#g" \
al@898 534 \
al@941 535 -e 's|^<u>\(.*libtool: warning: relinking.*\)</u>|\1|' \
al@941 536 -e 's|^<u>\(.*libtool: warning: .* has not been installed in .*\)</u>|\1|' \
al@941 537 -e 's|^<u>\(.*checking for a sed.*\)</u>|\1|' \
al@941 538 \
al@941 539 -e "s|$_src|<var>\${src}</var>|g;
al@941 540 s|$_install|<var>\${install}</var>|g;
al@941 541 s|$_fs|<var>\${fs}</var>|g;
al@941 542 s|$_stuff|<var>\${stuff}</var>|g" \
al@1002 543 \
al@1002 544 -e "s|\[\([01]\);3\([1-7]\)m|<span class='c\2\1'>|g;
al@1002 545 s|\[\([01]\);0m|<span class='c0\1'>|g;
al@1002 546 s|\[0m|</span>|g;" \
al@1002 547 \
al@913 548 -e "s|\[9\([1-6]\)m|<span class='c\10'>|;
al@942 549 s|\[39m|</span>|;
al@989 550 s|\[1m|<strong>|g; s|\[0m|</strong>|g" \
al@1002 551 -e "s!^|\(+.*\)!|<span class='c20'>\1</span>!;
al@1002 552 s!^|\(-.*\)!|<span class='c10'>\1</span>!;
al@1002 553 s!^|\(@@.*@@\)\$!|<span class='c30'>\1</span>!;"
al@1002 554 \
al@1002 555
al@898 556 ;;
al@898 557
al@898 558 files)
al@898 559 # Highlight the Busybox's `ls` output
al@898 560 awk '{
al@898 561 part1 = substr($0, 0, 16);
al@898 562 part2 = substr($0, 17, 9);
al@898 563 part3 = substr($0, 26, 9);
al@898 564 part4 = substr($0, 35);
al@898 565 if (part2 != "root ") part2 = "<span class=\"c11\">" part2 "</span>";
al@898 566 if (part3 != "root ") part3 = "<span class=\"c11\">" part3 "</span>";
al@898 567 print part1 part2 part3 part4;
al@898 568 }' | \
al@924 569 sed "s|\[0m/|/\[0m|g;
al@924 570 s|\[\([01]\);3\([1-7]\)m|<a class='c\2\1'>|g;
al@898 571 s|\[\([01]\);0m|<a class='c0\1'>|g;
al@898 572 s|\[0m|</a>|g;
al@898 573 s|^\(lrwxrwxrwx\)|<span class='c61'>\1</span>|;
al@898 574 s|^\(-rwxr-xr-x\)|<span class='c21'>\1</span>|;
al@898 575 s|^\(-rw-r--r--\)|<span class='c31'>\1</span>|;
al@924 576 s|^\(drwxr-xr-x\)|<span class='c41'>\1</span>|;
al@902 577 s|^\([lrwxs-]*\)|<span class='c11'>\1</span>|;
al@898 578 "
al@898 579 ;;
al@898 580 esac
al@898 581 }
al@898 582
al@898 583
al@898 584 show_code() {
al@898 585 echo -n "<pre><code class=\"language-$1\">"
al@898 586 sed 's|&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g'
al@898 587 echo '</code></pre>'
al@898 588 }
al@898 589
al@898 590
al@898 591 datalist() {
al@940 592 cut -d$'\t' -f2 $splitdb | tr ' ' '\n' | sort -u | awk '
al@898 593 BEGIN{printf("<datalist id=\"packages\">")}
al@940 594 {printf("<option>%s",$1)}
al@898 595 END {printf("</datalist>")}
al@898 596 '
al@898 597 }
al@898 598
al@898 599
al@898 600 mklog() {
al@898 601 awk '
al@898 602 BEGIN { printf("<pre class=\"log dog\">\n") }
al@898 603 { print }
al@898 604 END { print "</pre>" }'
al@898 605 }
al@898 606
al@898 607
al@898 608 summary() {
al@898 609 log="$1"
al@898 610 pkg="$(basename ${log%%.log*})"
al@898 611
al@898 612 if [ -f "$log" ]; then
al@898 613 if grep -q "cook:$pkg$" $command; then
al@898 614 show_note i "The Cooker is currently building $pkg"
al@898 615 elif fgrep -q "Summary for:" $log; then
al@904 616 sed '/^Summary for:/,$!d' $log | awk '
al@898 617 BEGIN { print "<section>" }
al@904 618 function row(line) {
al@904 619 split(line, s, " : ");
al@904 620 printf("\t<tr><td>%s</td><td>%s</td></tr>\n", s[1], s[2]);
al@904 621 }
al@904 622 function row2(line, rowNum) {
al@904 623 split(line, s, " : ");
al@938 624 if (rowNum == 1) {
al@938 625 print "<thead>";
al@904 626 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@938 627 print "</thead><tbody>";
al@938 628 }
al@904 629 else
al@904 630 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 631 }
al@898 632 {
al@904 633 if (NR==1) { printf("<h3>%s</h3>\n<table>\n", $0); next }
al@904 634 if ($0 ~ "===") { seen++; if (seen == 1) next; else exit; }
al@904 635 if ($0 ~ "---") {
al@904 636 seen2++;
al@938 637 if (seen2 == 1) print "</table>\n\n<table class=\"pkgslist\">"
al@904 638 next
al@898 639 }
al@904 640 if (seen2) row2($0, seen2); else row($0);
al@898 641 }
al@938 642 END { print "</tbody></table></section>" }
al@898 643 '
al@898 644 elif fgrep -q "Debug information" $log; then
al@898 645 echo -e '<section>\n<h3>Debug information</h3>'
al@898 646 sed -e '/^Debug information/,$!d; /^===/d; /^$/d' $log | sed -n '1!p' | \
al@898 647 if [ -n "$2" ]; then
al@979 648 syntax_highlighter log | sed 's|\([^0-9 ]\)\([0-9][0-9]*\):|\1<a href="#l\2">\2</a>:|'
al@898 649 else
al@898 650 sed 's|^[0-9][0-9]*:||' | syntax_highlighter log
al@898 651 fi | mklog
al@898 652 echo '</section>'
al@898 653 fi
al@898 654 else
al@898 655 [ -n "$pkg" -a -d "$wok/$pkg" ] && show_note e "No log for $pkg"
al@898 656 fi
al@898 657 }
al@898 658
al@898 659
al@898 660 active() {
al@898 661 [ "$cmd" == "$1" -o "$cmd" == "${2:-$1}" ] && echo -n ' active'
al@898 662 }
al@898 663
al@898 664
al@898 665 pkg_info() {
al@998 666 local log active bpkg short_desc=''
al@898 667 log="$LOGS/$pkg.log"
al@898 668
al@996 669 echo -n "<h2><a href=\"$base/${requested_pkg:-$pkg}\">${requested_pkg:-$pkg}</a>"
al@998 670 # Get short description for existing packages
al@998 671 [ -f $PKGS/packages.info ] &&
al@998 672 short_desc="$(awk -F$'\t' -vp="${requested_pkg:-$pkg}" '{if ($1 == p) { printf("%s", $4); exit; }}' $PKGS/packages.info)"
al@998 673 # If package not exists (not created yet or broken), get short description
al@998 674 # (but only for "main" package) from receipt
al@998 675 [ -n "$short_desc" ] || short_desc="$(. $wok/$pkg/receipt; echo "$SHORT_DESC")"
al@998 676 echo ": $short_desc</h2>"
al@898 677 echo '<div id="info">'
al@898 678 echo "<a class='button icon receipt$(active receipt stuff)' href='$base/$pkg/receipt'>receipt &amp; stuff</a>"
al@898 679
al@1003 680 # In the receipts $EXTRAVERSION is defined using $kvers, get it here [copy from 'cook' set_paths()]
al@1003 681 if [ -f "$wok/linux/receipt" ]; then
al@1003 682 kvers=$(. $wok/linux/receipt; echo $VERSION)
al@1003 683 kbasevers=$(echo $kvers | cut -d. -f1,2)
al@1003 684 elif [ -f "$INSTALLED/linux-api-headers/receipt" ]; then
al@1003 685 kvers=$(. $INSTALLED/linux-api-headers/receipt; echo $VERSION)
al@1003 686 kbasevers=$(echo $kvers | cut -d. -f1,2)
al@1003 687 fi
al@1003 688
al@898 689 unset WEB_SITE WANTED
al@898 690 . $wok/$pkg/receipt
al@898 691
al@898 692 [ -n "$WEB_SITE" ] &&
al@898 693 echo "<a class='button icon website' href='$WEB_SITE' target='_blank' rel='noopener noreferrer'>web site</a>"
al@898 694
al@1003 695 [ -f "$wok/$pkg/taz/$PACKAGE-$VERSION$EXTRAVERSION/receipt" ] &&
al@898 696 echo "<a class='button icon files$(active files)' href='$base/$pkg/files'>files</a>"
al@898 697
al@925 698 [ -n "$(ls $wok/$pkg/description*.txt)" ] &&
al@925 699 echo "<a class='button icon desc$(active description)' href='$base/$pkg/description'>description</a>"
al@898 700
al@925 701 [ -n "$TARBALL" -a -s "$SRC/$TARBALL" -o -d "$wok/$pkg/taz" ] &&
al@925 702 echo "<a class='button icon download' href='$base/$pkg/download'>download</a>"
al@898 703
al@898 704 echo "<a class='button icon browse' href='$base/$pkg/browse/'>browse</a>"
al@898 705
al@1002 706 [ -x ./man2html.bin -a -d "$wok/$pkg/install/usr/share/man" ] &&
al@898 707 echo "<a class='button icon doc$(active man)' href='$base/$pkg/man/'>man</a>"
al@898 708
al@898 709 [ -d "$wok/$pkg/install/usr/share/doc" -o -d "$wok/$pkg/install/usr/share/gtk-doc" ] &&
al@898 710 echo "<a class='button icon doc$(active doc)' href='$base/$pkg/doc/'>doc</a>"
al@898 711
al@898 712 [ -d "$wok/$pkg/install/usr/share/info" ] &&
al@898 713 echo "<a class='button icon doc$(active info)' href='$base/$pkg/info/#Top'>info</a>"
al@898 714
al@989 715 if [ -n "$LFS" ]; then
al@989 716 printf "<a class='button icon doc' href='%s' target='_blank' rel='noopener noreferrer'>" "$LFS"
al@989 717 [ "${LFS/blfs/}" != "$LFS" ] && printf "B"
al@989 718 printf "LFS</a>\n"
al@989 719 fi
al@981 720
al@898 721 [ -s "$log" ] &&
al@898 722 echo "<a class='button icon log$(active log)' href='$base/$pkg/log/'>logs</a>"
al@898 723
al@898 724 echo '</div>'
al@898 725 }
al@898 726
al@898 727
al@898 728 mktable() {
al@898 729 sed 's# : #|#' | awk -vc="$1" '
al@898 730 BEGIN { printf("<table class=\"%s\">\n", c); FS="|" }
al@898 731 { printf("<tr><td>%s</td>", $1);
al@898 732 if (NF == 2) printf("<td>%s</td>", $2);
al@898 733 printf("</tr>\n", $2) }
al@898 734 END { print "</table>" }'
al@898 735 }
al@898 736
al@898 737
al@898 738 section() {
al@898 739 local i=$(basename "$1")
al@898 740 echo -e '\n\n<section>'
al@898 741 [ $(wc -l < $1) -gt $2 ] && echo "<a class='button icon more r' href='?$i'>${3#*|}</a>"
al@898 742 echo "<h2>${3%|*}</h2>"
al@898 743 mktable "$i"
al@898 744 echo '</section>'
al@898 745 }
al@898 746
al@898 747
al@908 748 show_desc() {
al@908 749 echo "<section><h3>Description of “$1”</h3>"
al@908 750 if [ -n "$md2html" ]; then
al@908 751 $md2html $2
al@908 752 else
al@908 753 show_code markdown < $2
al@908 754 fi
al@908 755 echo "</section>"
al@908 756 }
al@908 757
al@908 758
al@924 759 # Return all the names of packages bundled in this receipt
al@924 760
al@924 761 all_names() {
al@924 762 local split=" $SPLIT "
al@924 763 if [ "${split/ $PACKAGE /}" != "$split" ]; then
al@924 764 # $PACKAGE included somewhere in $SPLIT (probably in the end).
al@924 765 # We should build packages in the order defined in the $SPLIT.
al@924 766 echo $SPLIT
al@924 767 else
al@924 768 # We'll build the $PACKAGE, then all defined in the $SPLIT.
al@924 769 echo $PACKAGE $SPLIT
al@924 770 fi
al@924 771 }
al@924 772
al@924 773
al@924 774 toolchain_version() {
al@924 775 echo "<tr><td><a href='$base/$1'>$1</a></td><td>"
al@924 776 if [ -e "$WOK/$1/receipt" ]; then
al@924 777 grep ^VERSION $WOK/$1/receipt | cut -d '"' -f2
al@924 778 echo '</td><td>'
al@924 779 grep ^SHORT_DESC $WOK/$1/receipt | cut -d '"' -f2
al@924 780 else
al@924 781 echo -n '---</td><td>---'
al@924 782 fi
al@924 783 echo "</td></tr>"
al@924 784 }
al@924 785
al@924 786
al@924 787 files_header() {
al@924 788 echo '<section><h3>Available downloads:</h3>'
al@924 789 echo '<table><thead><tr><th>File</th><th>Size</th><th>Description</th></tr></thead><tbody>'
al@924 790 }
al@924 791
al@924 792
al@933 793 # Update statistics used in web interface.
al@933 794 # There is no need to recalculate the statistics every time the page is displayed.
al@940 795 # Note, $webstat file must be owned by www, otherwise this function will not be able to do the job.
al@933 796
al@933 797 update_webstat() {
al@938 798 echo '<div id="waitme">'
al@938 799 show_note i 'Please wait while statistics are being collected.'
al@938 800 echo "</div>"
al@938 801
al@933 802 # for receipts:
al@933 803 rtotal=$(ls $WOK/*/arch.$ARCH | wc -l)
al@933 804 rcooked=$(ls -d $WOK/*/taz | wc -l)
al@933 805 runbuilt=$(($rtotal - $rcooked))
al@933 806 rblocked=$(wc -l < $blocked)
al@933 807 rbroken=$(wc -l < $broken)
al@933 808
al@933 809 # for packages:
al@936 810 ptotal=$(cut -d$'\t' -f2 $CACHE/split.db | tr ' ' '\n' | sort -u | wc -l)
al@933 811 pcooked=$(ls $PKGS/*.tazpkg | wc -l)
al@933 812 punbuilt=$(($ptotal - $pcooked))
al@933 813 pblocked=$(
al@933 814 while read i; do
al@933 815 sed "/^$i\t/!d" $CACHE/split.db
al@933 816 done < $blocked | cut -d$'\t' -f2 | tr ' ' '\n' | wc -l)
al@933 817 pbroken=$(
al@933 818 while read i; do
al@933 819 sed "/^$i\t/!d" $CACHE/split.db
al@933 820 done < $broken | cut -d$'\t' -f2 | tr ' ' '\n' | wc -l)
al@933 821
al@933 822 cat > $webstat <<EOT
al@933 823 rtotal="$rtotal"; rcooked="$rcooked"; runbuilt="$runbuilt"; rblocked="$rblocked"; rbroken="$rbroken"
al@933 824 ptotal="$ptotal"; pcooked="$pcooked"; punbuilt="$punbuilt"; pblocked="$pblocked"; pbroken="$pbroken"
al@933 825 EOT
al@938 826
al@938 827 echo '<script>document.getElementById("waitme").remove();</script>'
al@933 828 }
al@933 829
al@933 830
al@898 831
al@898 832
al@898 833 #
al@898 834 # Load requested page
al@898 835 #
al@898 836
al@898 837 if [ -z "$pkg" ]; then
al@898 838
al@898 839 page_header
al@898 840 if [ -n "$QUERY_STRING" -a "$QUERY_STRING" != 'debug' ]; then
al@898 841
al@898 842 for list in activity cooknotes cooklist; do
al@898 843 [ -n "$(GET $list)" ] || continue
al@898 844 [ "$list" == 'cooklist' ] && nb="- Packages: $(wc -l < $cooklist)"
al@898 845 echo '<section id="content2">'
al@898 846 echo "<h2>DB: $list $nb</h2>"
al@905 847 tac $CACHE/$list | sed 's|cooker.cgi?pkg=||; s|%2B|+|g;
al@898 848 s|\[ Done|<span class="r c20">Done|;
al@898 849 s|\[ Failed|<span class="r c10">Failed|;
al@898 850 s| \]|</span>|' | mktable $list
al@898 851 echo '</section>'
al@898 852 done
al@898 853
al@898 854 if [ -n "$(GET broken)" ]; then
al@938 855 echo '<section id="content2">'
al@898 856 echo "<h2>DB: broken - Packages: $(wc -l < $broken)</h2>"
al@898 857 sort $CACHE/broken | sed "s|^[^']*|<a href='$base/\0'>\0</a>|g" | mktable
al@938 858 echo '</section>'
al@898 859 fi
al@898 860
al@898 861 case "$QUERY_STRING" in
al@898 862 *.log)
al@898 863 log=$LOGS/$QUERY_STRING
al@898 864 name=$(basename $log)
al@898 865 if [ -f "$log" ]; then
al@898 866 echo "<h2>Log for: ${name%.log}</h2>"
al@898 867 if fgrep -q "Summary" $log; then
al@898 868 echo '<pre class="log">'
al@942 869 grep -A 20 'Summary' $log | syntax_highlighter log
al@898 870 echo '</pre>'
al@898 871 fi
al@898 872 echo '<pre class="log">'
al@898 873 syntax_highlighter log < $log
al@898 874 echo '</pre>'
al@986 875 if [ "$QUERY_STRING" == 'pkgdb.log' ]; then
al@985 876 # Display button only for SliTaz web browser
al@985 877 case "$HTTP_USER_AGENT" in
al@985 878 *SliTaz*)
al@985 879 if [ -f $CACHE/cooker-request -a -n "$HTTP_REFERER" ]; then
al@985 880 if grep -qs '^pkgdb$' $CACHE/recook-packages; then
al@985 881 show_note i "The package database has been requested for re-creation"
al@985 882 else
al@985 883 echo "<a class='button' href='$base/?recook=pkgdb'>Re-create the DB</a>"
al@985 884 fi
al@985 885 fi
al@985 886 ;;
al@985 887 esac
al@985 888 fi
al@898 889 else
al@898 890 show_note e "No log file: $log"
al@898 891 fi
al@898 892 ;;
al@924 893 toolchain)
al@924 894 cat <<EOT
al@924 895 <div id="content2">
al@924 896 <section>
al@924 897 <h2>SliTaz GNU/Linux toolchain</h2>
al@924 898
al@924 899 <table>
al@924 900 <tr><td>Build date</td> <td colspan="2">$(sed -n '/^Cook date/s|[^:]*: \(.*\)|\1|p' $LOGS/slitaz-toolchain.log)</td></tr>
al@924 901 <tr><td>Build duration</td> <td colspan="2">$(sed -n '/^Cook time/s|[^:]*: \(.*\)|\1|p' $LOGS/slitaz-toolchain.log)</td></tr>
al@924 902 <tr><td>Architecture</td> <td colspan="2">$ARCH</td></tr>
al@924 903 <tr><td>Build system</td> <td colspan="2">$BUILD_SYSTEM</td></tr>
al@924 904 <tr><td>Host system</td> <td colspan="2">$HOST_SYSTEM</td></tr>
al@924 905 <tr><th>Package</th><th>Version</th><th>Description</th></tr>
al@924 906 $(toolchain_version slitaz-toolchain)
al@924 907 $(toolchain_version binutils)
al@924 908 $(toolchain_version linux-api-headers)
al@924 909 $(toolchain_version gcc)
al@924 910 $(toolchain_version glibc)
al@924 911 </table>
al@924 912
al@924 913 <p>Toolchain documentation: <a target="_blank" rel="noopener noreferrer"
al@924 914 href="http://doc.slitaz.org/en:cookbook:toolchain">http://doc.slitaz.org/en:cookbook:toolchain</a>
al@924 915 </p>
al@924 916
al@924 917 </section>
al@924 918 </div>
al@924 919 EOT
al@924 920 ;;
al@898 921 esac
al@898 922 page_footer
al@898 923 exit 0
al@898 924 fi
al@898 925
al@898 926
al@898 927 # We may have a toolchain.cgi script for cross cooker's
al@898 928 if [ -f "toolchain.cgi" ]; then
al@898 929 toolchain="toolchain.cgi"
al@898 930 else
al@924 931 toolchain="?toolchain"
al@898 932 fi
al@933 933
paul@900 934 # Main page with summary. Count only packages included in ARCH,
al@898 935 # use 'cooker arch-db' to manually create arch.$ARCH files.
al@933 936
al@898 937 cat <<EOT
al@898 938 <div id="content2">
al@898 939
al@898 940 <section>
al@898 941 <form method="get" action="" class="search r">
al@898 942 <input type="hidden" name="search" value="pkg"/>
al@898 943 <button type="submit" title="Search">Search</button>
al@898 944 <input type="search" name="q" placeholder="Package" list="packages" autocorrect="off" autocapitalize="off"/>
al@898 945 </form>
al@898 946
al@898 947 <h2>Summary</h2>
al@898 948 EOT
al@898 949
al@898 950 mktable <<EOT
al@898 951 Cooker state : $(running_command)
al@898 952 Wok revision : <a href='$WOK_URL' target='_blank' rel='noopener noreferrer'>$(cat $wokrev)</a>
al@898 953 Commits to cook : $(wc -l < $commits)
al@898 954 Current cooklist : $(wc -l < $cooklist)
al@898 955 Architecture : $ARCH, <a href="$toolchain">toolchain</a>
al@898 956 Server date : <span id='date'>$(date -u '+%F %R %Z')</span>
al@898 957 EOT
al@898 958
al@898 959 # If command is "cook:*", update gauge and percentage periodically.
al@898 960 # If different package is cooking, reload the page (with new settings)
al@898 961 cmd="$(cat $command)"
al@898 962 case "$cmd" in
al@898 963 cook:*)
al@898 964 pkg=${cmd#*:}
al@898 965 echo "<script>updatePkg = '${pkg//+/%2B}';</script>"
al@898 966 ;;
al@898 967 esac
al@898 968
al@933 969 # Do we need to update the statistics?
al@933 970 [ "$webstat" -nt "$activity" ] || update_webstat
al@933 971 . $webstat
al@933 972
al@933 973 pct=0; [ "$rtotal" -gt 0 ] && pct=$(( ($rcooked * 100) / $rtotal ))
al@933 974
al@933 975 cat <<EOT
al@933 976 <div class="meter"><progress max="100" value="$pct">${pct}%</progress><span>${pct}%</span></div>
al@933 977
al@933 978 <table class="webstat"><thead>
al@933 979 <tr><th> </th><th>Total </th><th>Cooked </th><th>Unbuilt </th><th>Blocked </th><th>Broken </th></tr>
al@933 980 </thead><tbody>
al@933 981 <tr><td>Receipts</td><td>$rtotal</td><td>$rcooked</td><td>$runbuilt</td><td>$rblocked</td><td>$rbroken</td></tr>
al@933 982 <tr><td>Packages</td><td>$ptotal</td><td>$pcooked</td><td>$punbuilt</td><td>$pblocked</td><td>$pbroken</td></tr>
al@933 983 </tbody></table>
al@933 984 EOT
al@933 985
al@898 986 if [ -e "$CACHE/cooker-request" -a ! -s $command ]; then
al@898 987 if [ "$activity" -nt "$CACHE/cooker-request" ]; then
al@898 988 echo '<a class="button icon bell r" href="?poke">Wake up</a>'
al@898 989 else
al@898 990 show_note i 'Cooker will be launched in the next 5 minutes.'
al@898 991 fi
al@898 992 fi
al@898 993
al@898 994 cat <<EOT
al@898 995 <p>
al@898 996 Service logs:
al@898 997 <a href="?cookorder.log">cookorder</a> ·
al@898 998 <a href="?commits.log">commits</a> ·
al@898 999 <a href="?pkgdb.log">pkgdb</a>
al@898 1000 </p>
al@898 1001 </section>
al@898 1002 EOT
al@898 1003
al@898 1004 tac $activity | head -n12 | sed 's|cooker.cgi?pkg=||;
al@898 1005 s|\[ Done|<span class="r c20">Done|;
al@898 1006 s|\[ Failed|<span class="r c10">Failed|;
al@898 1007 s| \]|</span>|;
al@898 1008 s|%2B|\+|g' | \
al@898 1009 section $activity 12 "Activity|More activity"
al@898 1010
al@898 1011 [ -s "$cooknotes" ] && tac $cooknotes | head -n12 | \
al@898 1012 section $cooknotes 12 "Cooknotes|More notes"
al@898 1013
al@898 1014 [ -s "$commits" ] &&
al@898 1015 section $commits 20 "Commits|More commits" < $commits
al@898 1016
al@898 1017 [ -s "$cooklist" ] && head -n 20 $cooklist | \
al@898 1018 section $cooklist 20 "Cooklist|Full cooklist"
al@898 1019
al@898 1020 [ -s "$broken" ] && head -n20 $broken | sed "s|^[^']*|<a href='\0'>\0</a>|g" | \
al@898 1021 section $broken 20 "Broken|All broken packages"
al@898 1022
al@898 1023 [ -s "$blocked" ] && sed "s|^[^']*|<a href='\0'>\0</a>|g" $blocked | \
al@898 1024 section $blocked 12 "Blocked|All blocked packages"
al@898 1025
al@898 1026 cd $PKGS
al@898 1027 ls -let *.tazpkg | awk '
al@898 1028 (NR<=20){
al@898 1029 sub(/:[0-9][0-9]$/, "", $9);
al@898 1030 mon = index(" JanFebMarAprMayJunJulAugSepOctNovDec", $7) / 3;
al@898 1031 printf("%d-%02d-%02d %s : <a href=\"get/%s\">%s</a>\n", $10, mon, $8, $9, $11, $11);
al@898 1032 }' | \
al@898 1033 section $activity 1000 "Latest cook"
al@898 1034
al@898 1035 echo '</div>'
al@898 1036 datalist
al@898 1037 page_footer
al@898 1038 exit 0
al@898 1039 fi
al@898 1040
al@898 1041
al@898 1042 case "$cmd" in
al@898 1043 '')
al@898 1044 page_header
al@898 1045
al@989 1046 requested_pkg="$pkg"
al@898 1047 # Package info.
al@940 1048 if [ ! -f "$wok/$pkg/receipt" ]; then
al@940 1049 # Let's look at the cases when the package was not found
al@940 1050
al@940 1051 # Maybe query is the exact name of split package? -> proceed to main package
al@940 1052 mainpkg=$(awk -F$'\t' -vpkg=" $pkg " '{
al@940 1053 if (index(" " $2 " ", pkg)) {print $1; exit}
al@940 1054 }' $splitdb)
al@940 1055
al@940 1056 # No, so let's find any matches among packages names (both main and split)
al@940 1057 if [ -z "$mainpkg" ]; then
al@940 1058 pkgs=$(cut -d$'\t' -f2 $splitdb | tr ' ' '\n' | fgrep "$pkg")
al@940 1059 # Nothing matched
al@940 1060 if [ -z "$pkgs" ]; then
al@940 1061 echo "<h2>Not Found</h2>"
al@940 1062 show_note e "The requested package <b>$pkg</b> was not found on this server."
al@940 1063 page_footer; exit 0
al@940 1064 fi
al@940 1065 # Search results page
al@898 1066 echo "<section><h2>Package names matching “$pkg”</h2>"
al@898 1067 echo "<table><thead><tr><th>Name</th><th>Description</th><th>Category</th></tr></thead><tbody>"
al@940 1068 query="$pkg"
al@940 1069 for pkg in $pkgs; do
al@940 1070 # Find main package
al@940 1071 mainpkg=$(awk -F$'\t' -vpkg=" $pkg " '{
al@940 1072 if (index(" " $2 " ", pkg)) {print $1; exit}
al@940 1073 }' $splitdb)
al@940 1074 unset SHORT_DESC CATEGORY; . $wok/$mainpkg/receipt
al@940 1075
al@898 1076 unset SHORT_DESC CATEGORY
al@940 1077 [ -e "$wok/$mainpkg/taz/$PACKAGE-$VERSION/receipt" ] &&
al@940 1078 . $wok/$mainpkg/taz/$PACKAGE-$VERSION/receipt
al@940 1079
al@940 1080 echo -n "<tr><td><a href="$base/$pkg">${pkg//$query/<mark>$query</mark>}</a>"
al@940 1081 [ "$pkg" == "$mainpkg" ] || echo -n " (${mainpkg//$query/<mark>$query</mark>})"
al@940 1082 echo -n "</td><td>$SHORT_DESC</td><td>$CATEGORY</td></tr>"
al@898 1083 done
al@898 1084 echo '</tbody></table></section>'
al@940 1085 page_footer; exit 0
al@898 1086 fi
al@940 1087 pkg="$mainpkg"
al@898 1088 fi
al@898 1089
al@940 1090 log=$LOGS/$pkg.log
al@940 1091 pkg_info
al@940 1092
al@898 1093 # Check for a log file and display summary if it exists.
al@898 1094 summary "$log"
al@898 1095
al@994 1096
al@994 1097
al@994 1098
al@982 1099 # Informal table with dependencies
al@989 1100 pkg="$requested_pkg"
al@994 1101 inf="$(mktemp -d)"
al@994 1102
al@995 1103 # 1/3: Build dependencies (from receipt and pkgdb)
al@997 1104 for i in $WANTED $BUILD_DEPENDS $(awk -F$'\t' -vp=" $pkg " '{if (index(" " $2 " ", p) && (" " $1 " " != p)) print $1}' $splitdb); do
al@994 1105 echo "$i" >> $inf/a
al@994 1106 done
al@994 1107
al@994 1108 # 2/3: Runtime dependencies (from pkgdb)
al@994 1109 {
al@994 1110 [ -s "$PKGS/packages.info" ] &&
al@994 1111 awk -F$'\t' -vp="$pkg" '{
al@994 1112 if ($1 == p) print $8
al@994 1113 }' "$PKGS/packages.info"
al@994 1114 } | tr ' ' '\n' | sort -u > $inf/b
al@994 1115
al@994 1116 # 3/3: Required by (from pkgdb)
al@994 1117 {
al@995 1118 for i in $pkg $(awk -F$'\t' -vp="$pkg" '{if ($1 == p) print $2}' $splitdb); do
al@994 1119 [ -s "$PKGS/packages.info" ] &&
al@994 1120 awk -F$'\t' -vp=" $i " '{
al@994 1121 if (index(" " $8 " ", p)) print $1
al@994 1122 }' "$PKGS/packages.info"
al@994 1123
al@994 1124 [ -s "$PKGS/bdeps.txt" ] &&
al@994 1125 awk -F$'\t' -vp=" $i " '{
al@994 1126 if (index(" " $2 " ", p)) print $1
al@994 1127 }' $PKGS/bdeps.txt
al@994 1128 done
al@994 1129 } | sort -u > $inf/c
al@994 1130
al@982 1131 cat <<EOT
al@982 1132 <section>
al@989 1133 <h3>Related packages</h3>
al@989 1134 <table class="third">
al@982 1135 <thead>
al@982 1136 <tr>
al@982 1137 <th>Build dependencies</th>
al@989 1138 <th>Runtime dependencies</th>
al@982 1139 <th>Required by</th>
al@982 1140 </tr>
al@982 1141 </thead>
al@982 1142 <tbody>
al@989 1143 EOT
al@989 1144
al@994 1145 awk -vinf="$inf" -vbase="$base" '
al@994 1146 function linki(i) {
al@994 1147 if (i) return sprintf("<img src=\"%s/s/%s\"> <a href=\"%s/%s\">%s</a>", base, i, base, i, i);
al@994 1148 }
al@994 1149 BEGIN{
al@994 1150 do {
al@994 1151 a = b = c = "";
al@994 1152 getline a < inf "/a";
al@994 1153 getline b < inf "/b";
al@994 1154 getline c < inf "/c";
al@994 1155 printf("<tr><td>%s </td><td>%s </td><td>%s </td></tr>", linki(a), linki(b), linki(c));
al@994 1156 } while ( a b c )
al@994 1157 }'
al@982 1158 cat <<EOT
al@982 1159 </tbody>
al@982 1160 </table>
al@982 1161 </section>
al@982 1162 EOT
al@994 1163 # Clean
al@994 1164 rm -r $inf
al@994 1165
al@994 1166
al@994 1167
al@982 1168
al@898 1169 # Display <Recook> button only for SliTaz web browser
al@971 1170 case "$HTTP_USER_AGENT" in
al@971 1171 *SliTaz*)
al@971 1172 if [ -f $CACHE/cooker-request -a -n "$HTTP_REFERER" ]; then
al@971 1173 if grep -qs "^$pkg$" $CACHE/recook-packages; then
al@971 1174 show_note i "The package “$pkg” has been requested for recook"
al@971 1175 else
al@971 1176 echo "<a class='button' href='$base/?recook=${pkg//+/%2B}'>Recook $pkg</a>"
al@898 1177 fi
al@971 1178 fi
al@971 1179 ;;
al@971 1180 esac
al@898 1181 ;;
al@898 1182
al@898 1183 receipt)
al@898 1184 page_header
al@898 1185 pkg_info
al@898 1186 echo "<a class='button receipt' href='$base/$pkg/receipt'>receipt</a>"
al@898 1187 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
al@898 1188 awk -vb="$base/$pkg" '{printf("<a class=\"button\" href=\"%s/%s\">%s</a>\n", b, $0, $0)}'
al@898 1189
al@898 1190 show_code bash < $wok/$pkg/receipt
al@898 1191 ;;
al@898 1192
al@898 1193 stuff)
al@898 1194 page_header
al@898 1195 pkg_info
al@898 1196 file="$pkg/stuff/$arg"
al@898 1197 echo "<a class='button' href='$base/$pkg/receipt'>receipt</a>"
al@898 1198 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
al@898 1199 awk -vb="$base/$pkg" -va="stuff/$arg" '{
al@898 1200 printf("<a class=\"button%s\" href=\"%s/%s\">%s</a>\n", a==$0 ? " receipt" : "", b, $0, $0)
al@898 1201 }'
al@898 1202
al@898 1203 if [ -f "$wok/$file" ]; then
al@898 1204 case $file in
al@898 1205 *.desktop|*.theme) class="ini" ;;
al@898 1206 *.patch|*.diff|*.u) class="diff" ;;
al@898 1207 *.sh) class="bash" ;;
al@898 1208 *.conf*|*.ini)
al@898 1209 class="bash"
al@898 1210 [ -n "$(cut -c1 < $wok/$file | fgrep '[')" ] && class="ini"
al@898 1211 ;;
al@898 1212 *.pl) class="perl" ;;
al@898 1213 *.c|*.h|*.awk) class="clike" ;;
al@898 1214 *.svg) class="svg" ;;
al@898 1215 *Makefile*) class="makefile" ;;
al@898 1216 *.po|*.pot) class="bash" ;;
al@898 1217 *.css) class="css" ;;
al@898 1218 *.htm|*.html) class="html" ;;
al@898 1219 *.js) class="js" ;;
al@898 1220 *.txt) class="asciidoc" ;;
al@898 1221 *)
al@898 1222 case $(head -n1 $wok/$file) in
al@898 1223 *!/bin/sh*|*!/bin/bash*) class="bash" ;;
al@898 1224 esac
al@898 1225 if [ -z "$class" -a "$(head -n1 $wok/$file | cut -b1)" == '#' ]; then
al@898 1226 class="bash"
al@898 1227 fi
al@898 1228 if [ -z "$class" ]; then
al@898 1229 # Follow Busybox restrictions. Search for non-printable chars
al@898 1230 if [ $(tr -d '[:alnum:][:punct:][:blank:][:cntrl:]' < "$wok/$file" | wc -c) -gt 0 ]; then
al@898 1231 raw="true"
al@898 1232 fi
al@898 1233 fi
al@898 1234 ;;
al@898 1235 esac
al@898 1236
al@898 1237 # Display image
al@898 1238 case $file in
al@898 1239 *.png|*.svg|*.jpg|*.jpeg|*.ico)
al@898 1240 echo "<img src='$base/$pkg/browse/stuff/$arg' style='display: block; max-width: 100%; margin: auto'/>"
al@898 1241 ;;
al@898 1242 esac
al@898 1243
al@898 1244 # Display colored listing for all text-based documents (also for *.svg)
al@898 1245 case $file in
al@898 1246 *.png|*.jpg|*.jpeg|*.ico) ;;
al@898 1247 *)
al@898 1248 if [ -z "$raw" ]; then
al@898 1249 cat $wok/$file | show_code $class
al@898 1250 fi
al@898 1251 ;;
al@898 1252 esac
al@898 1253
al@898 1254 # Display hex dump for binary files
al@898 1255 if [ -n "$raw" ]; then
al@898 1256 hexdump -C $wok/$file | show_code #| sed 's|^\([0-9a-f][0-9a-f]*\)|<span class="c2">\1</span>|'
al@898 1257 fi
al@898 1258 else
al@898 1259 show_note e "File “$file” absent!"
al@898 1260 fi
al@898 1261 ;;
al@898 1262
al@898 1263 files)
al@898 1264 page_header
al@898 1265 pkg_info
al@898 1266
al@898 1267 packaged=$(mktemp)
al@898 1268
al@898 1269 # find main package
al@898 1270 wanted=$(. $wok/$pkg/receipt; echo $WANTED)
al@898 1271 main=${wanted:-$pkg}
al@915 1272
paul@900 1273 # identify split packages
al@898 1274 split="$main $(. $wok/$main/receipt; echo $SPLIT)"
al@898 1275 [ -d "$wok/$main-dev" ] && split="$split $main-dev"
al@898 1276 split="$(echo $split | tr ' ' '\n' | sort -u)"
al@915 1277
al@898 1278 # finally we need the version
al@915 1279 if [ -f "$WOK/linux/receipt" ]; then
al@915 1280 kvers=$(. $WOK/linux/receipt; echo $VERSION)
al@915 1281 kbasevers=$(echo $kvers | cut -d. -f1,2)
al@915 1282 elif [ -f "$INSTALLED/linux-api-headers/receipt" ]; then
al@915 1283 kvers=$(. $INSTALLED/linux-api-headers/receipt; echo $VERSION)
al@915 1284 kbasevers=$(echo $kvers | cut -d. -f1,2)
al@915 1285 fi
al@898 1286 ver=$(. $wok/$main/receipt; echo $VERSION$EXTRAVERSION)
al@898 1287
al@924 1288
al@924 1289 echo "<section><h3>Quick jump:</h3><ul>"
al@940 1290 echo "$split" | sed 'p' | xargs printf "<li><a href='#%s'>%s</a></li>\n"
al@940 1291 echo "<li id='li-repeats' style='display:none'><a href='#repeats'>repeatedly packaged files</a></li>"
al@964 1292 echo "<li id='li-empty' style='display:none'><a href='#empty'>unpackaged empty folders</a></li>"
al@946 1293 echo "<li id='li-orphans' style='display:none'><a href='#orphans'>unpackaged files</a>"
al@946 1294 echo "<span id='orphansTypes'></span></li>"
al@924 1295 echo "</ul></section>"
al@924 1296
al@898 1297 for p in $split; do
al@898 1298 namever="$p-$ver"
al@898 1299 if [ -d "$wok/$p/taz/$p-$ver" ]; then
al@898 1300 indir=$p
al@898 1301 elif [ -d "$wok/$main/taz/$p-$ver" ]; then
al@898 1302 indir=$main
al@898 1303 fi
al@898 1304 dir="$wok/$indir/taz/$p-$ver/fs"
al@898 1305
al@898 1306 size=$(du -hs $dir | awk '{ sub(/\.0/, ""); print $1 }')
al@898 1307
al@940 1308 echo "<section><h3 id='$p'>Contents of package “$namever” (${size:-empty}):</h3>"
al@912 1309 echo '<pre class="files">'
al@912 1310 if [ -s "$wok/$indir/taz/$p-$ver/files.list" ]; then
al@912 1311 echo -n '<span class="underline">permissions·lnk·user ·'
al@924 1312 echo -en 'group · size·date &amp; time ·name\n</span>'
al@912 1313 cd $dir
al@924 1314 find . -print0 | sort -z | xargs -0 ls -ldp --color=always | \
al@912 1315 syntax_highlighter files | \
al@924 1316 sed "s|\([^>]*\)>\.\([^<]*\)\(<.*\)$|\1 href='$base/$indir/browse/taz/$p-$ver/fs\2'>\2\3|;" | \
al@912 1317 awk 'BEGIN { FS="\""; }
al@912 1318 { gsub("+", "%2B", $2); print; }'
al@912 1319 else
al@912 1320 echo 'No files'
al@912 1321 fi
al@898 1322 echo '</pre></section>'
al@898 1323 cat $wok/$indir/taz/$p-$ver/files.list >> $packaged
al@898 1324 done
al@898 1325
al@898 1326 # find repeatedly packaged files
al@898 1327 repeats="$(sort $packaged | uniq -d)"
al@898 1328 if [ -n "$repeats" ]; then
al@928 1329 echo '<script>document.getElementById("li-repeats").style.display = "list-item"</script>'
al@940 1330 echo -n '<section><h3 id="repeats">Repeatedly packaged files:</h3><pre class="files">'
al@898 1331 echo "$repeats" | sed 's|^|<span class="c11">!!!</span> |'
al@898 1332 echo "</pre></section>"
al@898 1333 fi
al@898 1334
al@964 1335 # find unpackaged empty folders
al@964 1336 emptydirs="$(
al@964 1337 cd $wok/$main/install
al@964 1338 find -type d | sed 's|\.||' | \
al@964 1339 while read d; do
al@964 1340 [ -z "$(ls "$wok/$main/install$d")" ] || continue
al@964 1341 echo $d
al@964 1342 done | \
al@964 1343 while read d; do
al@964 1344 notfound='yes'
al@964 1345 for p in $(cd $wok/$main/taz; ls); do
al@964 1346 if [ -d "$wok/$main/taz/$p/fs$d" ]; then
al@964 1347 notfound=''
al@964 1348 break
al@964 1349 fi
al@964 1350 done
al@964 1351 [ -n "$notfound" ] &&
al@964 1352 ls -ldp --color=always .$d | syntax_highlighter files | sed 's|>\./|>/|'
al@964 1353 done
al@964 1354 )"
al@964 1355 if [ -n "$emptydirs" ]; then
al@964 1356 echo '<script>document.getElementById("li-empty").style.display = "list-item"</script>'
al@964 1357 echo -n '<section><h3 id="empty">Unpackaged empty folders:</h3><pre class="files">'
al@964 1358 echo "$emptydirs"
al@964 1359 echo "</pre></section>"
al@964 1360 fi
al@964 1361
al@898 1362 # find unpackaged files
al@898 1363 all_files=$(mktemp)
al@898 1364 cd $wok/$main/install; find ! -type d | sed 's|\.||' > $all_files
al@898 1365 orphans="$(sort $all_files $packaged | uniq -u)"
al@912 1366 if [ -d "$wok/$main/install" -a -n "$orphans" ]; then
al@928 1367 echo '<script>document.getElementById("li-orphans").style.display = "list-item"</script>'
al@940 1368 echo '<section><h3 id="orphans">Unpackaged files:</h3>'
al@912 1369 table=$(mktemp)
al@924 1370 echo "$orphans" | awk -vi="$base/$indir/browse/install" '
al@924 1371 function tag(text, color) {
al@924 1372 printf("<span class=\"c%s1\">%s</span> ", color, text);
al@924 1373 printf("<a class=\"c00\" href=\"%s\">%s</a>\n", i $0, $0);
al@924 1374 }
al@912 1375 /\/perllocal.pod$/ || /\/\.packlist$/ || /\/share\/bash-completion\// ||
al@945 1376 /\/lib\/systemd\// || /\.pyc$/ || /\.pyo$/ || /\/fonts\.scale$/ || /\/fonts\.dir$/ {
al@945 1377 tag("---", 0); next }
al@898 1378 /\.pod$/ { tag("pod", 5); next }
al@898 1379 /\/share\/man\// { tag("man", 5); next }
al@912 1380 /\/share\/doc\// || /\/share\/gtk-doc\// || /\/share\/info\// ||
al@912 1381 /\/share\/devhelp\// { tag("doc", 5); next }
al@898 1382 /\/share\/icons\// { tag("ico", 2); next }
al@898 1383 /\/share\/locale\// { tag("loc", 4); next }
al@924 1384 /\.h$/ || /\.a$/ || /\.la$/ || /\.pc$/ || /\/bin\/.*-config$/ ||
al@924 1385 /\/Makefile.*$/ { tag("dev", 3); next }
al@989 1386 /\/share\/help\// || /\/share\/appdata\// { tag("gnm", 6); next }
al@898 1387 { tag("???", 1) }
al@912 1388 ' > $table
al@912 1389
al@912 1390 # Summary table
al@946 1391 orphans_types='()'
al@912 1392 for i in head body; do
al@912 1393 case $i in
al@912 1394 head) echo -n '<table class="summary"><tr>';;
al@912 1395 body) echo -n '<th> </th></tr><tr>';;
al@912 1396 esac
al@989 1397 for j in '???1' dev3 loc4 ico2 doc5 man5 pod5 gnm6 '---0'; do
al@912 1398 tag=${j:0:3}; class="c${j:3:1}0"; [ "$class" == 'c00' ] && class='c01'
al@912 1399 case $i in
al@912 1400 head) echo -n "<th class='$class'>$tag</th>";;
al@946 1401 body)
al@946 1402 tagscount="$(grep ">$tag<" $table | wc -l)"
al@946 1403 printf '<td>%s</td>' "$tagscount"
al@946 1404 [ "$tagscount" -gt 0 ] && orphans_types="${orphans_types/)/ $tag)}"
al@946 1405 ;;
al@912 1406 esac
al@912 1407 done
al@912 1408 done
al@912 1409 echo '<td> </td></tr></table>'
al@946 1410 orphans_types="${orphans_types/( /(}"
al@946 1411 [ "$orphans_types" != '()' ] &&
al@946 1412 echo "<script>document.getElementById('orphansTypes').innerText = '${orphans_types// /, }';</script>"
al@912 1413
al@912 1414 echo -n '<pre class="files">'
al@912 1415 cat $table
al@898 1416 echo '</pre></section>'
al@912 1417 rm $table
al@898 1418 fi
al@912 1419 rm $packaged $all_files
al@898 1420 ;;
al@898 1421
al@898 1422 description)
al@898 1423 page_header
al@898 1424 pkg_info
al@908 1425 descs="$(ls $WOK/$pkg/description*.txt)"
al@908 1426 if [ -n "$descs" ]; then
al@898 1427 echo '<div id="content2">'
al@908 1428 [ -f "$WOK/$pkg/description.txt" ] && show_desc "$pkg" "$WOK/$pkg/description.txt"
al@908 1429 for i in $descs; do
al@908 1430 case $i in
al@908 1431 */description.txt) continue ;;
al@908 1432 *) package=$(echo $i | cut -d. -f2) ;;
al@908 1433 esac
al@908 1434 show_desc "$package" "$i"
al@908 1435 done
al@898 1436 echo '</div>'
al@898 1437 else
al@898 1438 show_note w "No description of $pkg"
al@898 1439 fi
al@898 1440 ;;
al@898 1441
al@898 1442 log)
al@898 1443 page_header
al@898 1444 pkg_info
al@898 1445 [ -z "$arg" ] && arg=$(stat -c %Y $LOGS/$pkg.log)
al@898 1446
al@898 1447 echo '<div class="btnList">'
al@924 1448 acc='l' # access key for the latest log is 'L'
al@898 1449 while read log; do
al@924 1450 # for all $pkg.log, $pkg.log.0 .. $pkg.log.9, $pkg-pack.log (if any)
al@898 1451 timestamp=$(stat -c %Y $log)
al@898 1452 class=''
al@898 1453 if [ "$arg" == "$timestamp" ]; then
al@898 1454 class=' log'
al@898 1455 logfile="$log"
al@898 1456 fi
al@924 1457 case $log in *-pack.log) acc='p';; esac # access key for the packing log is 'P'
al@898 1458 echo -n "<a class='button$class' data-acc='$acc' accesskey='$acc' href='$base/$pkg/log/$timestamp'>"
al@898 1459 echo "$(stat -c %y $log | cut -d: -f1,2)</a>"
al@898 1460 case $acc in
al@898 1461 l) acc=0;;
al@898 1462 *) acc=$((acc+1));;
al@898 1463 esac
al@898 1464 done <<EOT
al@898 1465 $(find $LOGS -name "$pkg.log*" | sort)
al@924 1466 $(find $LOGS -name "$pkg-pack.log")
al@898 1467 EOT
al@898 1468 echo '</div>'
al@898 1469
al@898 1470 if [ -z "$logfile" ]; then
al@898 1471 show_note e "Requested log is absent"
al@898 1472 page_footer
al@898 1473 exit 0
al@898 1474 fi
al@898 1475
al@898 1476 # Define cook variables for syntax highlighter
al@898 1477 if [ -s "$WOK/$pkg/receipt" ]; then
al@898 1478 . "$WOK/$pkg/receipt"
al@898 1479 _wok='/home/slitaz/wok'
al@898 1480 _src="$_wok/$pkg/source/$PACKAGE-$VERSION"
al@898 1481 _install="$_wok/$pkg/install"
al@898 1482 _fs="$_wok/$pkg/taz/$PACKAGE-$VERSION/fs"
al@898 1483 _stuff="$_wok/$pkg/stuff"
al@898 1484 fi
al@898 1485
al@898 1486 # if [ ! -f "gzlog/$pkg.$arg" ]; then
al@898 1487 # {
al@898 1488 # summary "$logfile" links
al@898 1489 #
al@898 1490 # syntax_highlighter log < $logfile | awk '
al@898 1491 # BEGIN { print "<pre class=\"log\">"; }
al@898 1492 # { printf("<a name=\"l%d\" href=\"#l%d\">%5d</a> %s\n", NR, NR, NR, $0); }
al@898 1493 # END { print "</pre>"; }
al@898 1494 # '
al@898 1495 #
al@898 1496 # page_footer
al@898 1497 # } | gzip > gzlog/$pkg.$arg
al@898 1498 # fi
al@898 1499
al@898 1500 blog=$(basename $logfile)
al@898 1501 summary "$logfile" links
al@898 1502
al@898 1503 # disable next `sed` for the 'like2016' theme
al@898 1504 theme=$(COOKIE theme); theme=${theme:-default}; [ "$theme" != 'like2016' ] && theme=''
al@898 1505 cat $logfile | syntax_highlighter log | \
al@898 1506 sed -e "/(pkg\/local$theme):/ s|: \([^<]*\)|<img src='$base/i/$blog/\1'> \1|" | \
al@898 1507 awk '
al@898 1508 BEGIN { print "<pre class=\"log\">"; }
al@972 1509 { printf("<span id=\"l%d\">%s</span><a href=\"#l%d\"></a>\n", NR, $0, NR); }
al@898 1510 END { print "</pre>"; }
al@898 1511 '
al@898 1512 ;;
al@898 1513
al@898 1514
al@898 1515 man|doc|info)
al@898 1516 page_header
al@898 1517 pkg_info
al@898 1518 echo '<div style="max-height: 6.4em; overflow: auto; padding: 0 4px">'
al@898 1519
al@898 1520 dir="wok/$pkg/install/usr/share/$cmd"
al@898 1521 [ "$cmd" == 'doc' ] && dir="$dir wok/$pkg/install/usr/share/gtk-doc"
al@898 1522 if [ "$cmd" == 'doc' -a -z "$arg" ]; then
al@898 1523 try=$(for i in $dir; do find $i -name 'index.htm*'; done | sed q)
al@898 1524 [ -n "$try" ] && arg="$try"
al@898 1525 fi
al@898 1526 while read i; do
al@898 1527 [ -s "$i" ] || continue
al@898 1528 case "$i" in
al@898 1529 *.jp*g|*.png|*.gif|*.svg|*.css) continue
al@898 1530 esac
al@898 1531 i=${i#$dir/}
al@898 1532 [ -n "$arg" ] || arg="$i"
al@898 1533 class=''; [ "$arg" == "$i" ] && class=" doc"
al@898 1534 case "$cmd" in
al@898 1535 man)
al@898 1536 case $i in
al@898 1537 man*) lang='';;
al@898 1538 *) lang="${i%%/*}: ";;
al@898 1539 esac
al@898 1540 man=$(basename $i .gz)
al@898 1541 echo "<a class='button$class' href='$base/$pkg/man/$i'>$lang${man%.*} (${man##*.})</a>"
al@898 1542 ;;
al@898 1543 doc)
al@898 1544 echo "<a class='button$class' href='$base/$pkg/doc/$i'>$(basename $i .gz)</a>"
al@898 1545 ;;
al@898 1546 info)
al@898 1547 info=$(basename $i)
al@898 1548 echo "<a class='button$class' href='$base/$pkg/info/$i#Top'>${info/.info/}</a>"
al@898 1549 ;;
al@898 1550 esac
al@898 1551 done <<EOT
al@898 1552 $(for i in $dir; do find $i -type f; done | sort)
al@898 1553 EOT
al@898 1554 echo '</div>'
al@898 1555
al@898 1556 [ -f "$arg" ] || arg="$dir/$arg"
al@898 1557 if [ -f "$arg" ]; then
al@898 1558 tmp="$(mktemp)"
al@898 1559 docat "$arg" > $tmp
al@898 1560 [ -s "$tmp" ] &&
al@898 1561 case "$cmd" in
al@898 1562 info)
al@898 1563 echo '<div id="content2" class="texinfo"><pre class="first">'
al@898 1564 info2html < "$tmp"
al@898 1565 echo '</pre></div>'
al@898 1566 ;;
al@898 1567 doc)
al@898 1568 case "$arg" in
al@898 1569 *.sgml|*.devhelp2) class='xml';;
al@898 1570 *.py) class='python';; # pycurl package
al@898 1571 *.css) class='css';;
al@976 1572 *.sh) class='bash';;
al@976 1573 *)
al@976 1574 first=$(head -n1 "$tmp")
al@976 1575 if [ "${first:0:1}" == '#' ]; then
al@976 1576 class='bash' # first line begins with '#'
al@976 1577 else
al@976 1578 class='asciidoc'
al@976 1579 fi;;
al@898 1580 esac
al@898 1581 case "$arg" in
al@898 1582 *.htm*)
al@898 1583 case $arg in
al@898 1584 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
al@898 1585 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
al@898 1586 esac
paul@929 1587 # make the iframe height so long to contain its contents without scrollbar
al@898 1588 echo "<iframe id='idoc' src='$page' width='100%' onload='resizeIframe(this)'></iframe>"
al@898 1589 ;;
al@898 1590 *.pdf)
al@898 1591 case $arg in
al@898 1592 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
al@898 1593 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
al@898 1594 esac
al@898 1595 cat <<EOT
al@898 1596 <object id="idoc" data="$page" width="100%" height="100%" type="application/pdf" style="min-height: 600px">
al@898 1597 $(show_note w "Missing PDF plugin.<br/>Get the file <a href="$page">$(basename "$page")</a>.")
al@898 1598 </object>
al@898 1599 EOT
al@898 1600 ;;
al@958 1601 *.md|*.markdown)
al@958 1602 echo '<section>'
al@958 1603 $md2html "$tmp"
al@958 1604 echo '</section>'
al@958 1605 ;;
al@898 1606 *)
al@898 1607 show_code $class < "$tmp"
al@898 1608 ;;
al@898 1609 esac
al@898 1610 ;;
al@898 1611 man)
al@898 1612 #export TEXTDOMAIN='man2html'
al@898 1613 echo "<div id='content2'>"
al@898 1614
al@1002 1615 html=$(./man2html.bin "$tmp" | sed -e '1,/<header>/d' -e '/<footer>/,$d' \
al@898 1616 -e 's|<a href="file:///[^>]*>\([^<]*\)</a>|\1|g' \
al@898 1617 -e 's|<a href="?[1-9]\+[^>]*>\([^<]*\)</a>|\1|g')
al@898 1618
al@898 1619 if [ -n "$(echo "$html" | fgrep 'The requested file /tmp/tmp.')" ]; then
al@898 1620 # Process the pre-formatted man-cat page
al@912 1621 # (for example see sudo package without groff in build dependencies)
al@912 1622 sed -i '
al@898 1623 s|M-bM-^@M-^S|—|g;
al@898 1624 s|M-bM-^@M-^\\|<b>|g;
al@898 1625 s|M-bM-^@M-^]|</b>|g
al@898 1626 s|M-bM-^@M-^X|<u>|g;
al@898 1627 s|M-bM-^@M-^Y|</u>|g;
al@898 1628 s|M-BM-||g;
al@912 1629 s|++oo|•|g;
al@912 1630 s|&|\&amp;|g; s|<|\&lt;|g; s|>|\&gt;|g;
al@898 1631 ' "$tmp"
al@912 1632 for i in a b c d e f g h i j k l m n o p q r s t u v w x y z \
al@912 1633 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z \
al@912 1634 0 1 2 3 4 5 6 7 8 9 _ - '\\+' '\.' /; do
al@912 1635 sed -i "s|$i$i|<b>$i</b>|g; s|_$i|<u>$i</u>|g" "$tmp"
al@912 1636 done
al@912 1637 echo '<pre class="catman">'
al@912 1638 sed 's|</b><b>||g; s|</u><u>||g; s|</u><b>_</b><u>|_|g; s|</b> <b>| |g;' "$tmp"
al@898 1639 echo '</pre>'
al@898 1640 else
al@898 1641 echo "$html"
al@898 1642 fi
al@898 1643 echo "</div>"
al@898 1644 ;;
al@898 1645 esac
al@898 1646 rm -f $tmp
al@898 1647 else
al@898 1648 show_note e "File “$arg” not exists!"
al@898 1649 fi
al@898 1650 ;;
al@898 1651
al@924 1652 download)
al@924 1653 page_header
al@924 1654 pkg_info
al@924 1655 show=0
al@924 1656
al@924 1657 . $wok/$pkg/receipt
al@924 1658
al@924 1659 if [ -n "$TARBALL" -a -s "$SRC/$TARBALL" ]; then
al@924 1660 files_header
al@924 1661 echo "<tr><td><a href='$base/src/$TARBALL'>$TARBALL</a></td>"
al@924 1662 ls -lh "$SRC/$TARBALL" | awk '{printf("<td>%sB</td>", $5)}'
al@924 1663 echo "<td>Sources for building the package “$pkg”</td></tr>"
al@924 1664 show=1
al@924 1665 fi
al@924 1666
al@924 1667 if [ -d "$wok/$pkg/taz" ]; then
al@924 1668 [ "$show" -eq 1 ] || files_header
al@924 1669
al@924 1670 for i in $(all_names); do
al@924 1671 [ -e "$wok/$pkg/taz/$i-$VERSION$EXTRAVERSION/receipt" ] || continue
al@924 1672 . $wok/$pkg/taz/$i-$VERSION$EXTRAVERSION/receipt
al@924 1673
al@924 1674 for filename in "$PACKAGE-$VERSION$EXTRAVERSION.tazpkg" "$PACKAGE-$VERSION$EXTRAVERSION-$ARCH.tazpkg"; do
al@924 1675 [ -f "$PKGS/$filename" ] &&
al@924 1676 cat <<EOT
al@924 1677 <tr>
al@924 1678 <td><a href="$base/get/$filename">$filename</a></td>
al@924 1679 <td>$(ls -lh ./packages/$filename | awk '{printf("%sB", $5)}')</td>
al@924 1680 <td>$SHORT_DESC</td>
al@924 1681 </tr>
al@924 1682 EOT
al@924 1683 done
al@924 1684 done
al@924 1685 show=1
al@924 1686 fi
al@924 1687
al@924 1688 if [ "$show" -eq 1 ]; then
al@924 1689 echo '</tbody></table></section>'
al@924 1690 else
al@924 1691 show_note w "Sorry, there's nothing to download…"
al@924 1692 fi
al@924 1693 ;;
al@924 1694
al@898 1695 esac
al@898 1696
al@898 1697
al@898 1698 page_footer
al@898 1699 exit 0