+++ /dev/null
-#// bb2html.awk\r
-#// converts bbcode to html.\r
-#// 30.03.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-#//\r
-\r
-BEGIN{\r
- FS="="\r
- debug="debug=bb2html.awk:"\r
- automome="/eizm/pro/ong1/mome.pl"\r
- memepath="/eizm/mem/ong1/mome.txt"\r
- \r
- for(i=0;i<256;++i)\r
- {\r
- ch=sprintf("%c",i)\r
- hex=sprintf("%02X",i)\r
- dec=sprintf("%u",i)\r
- ch2hex[ch]=hex\r
- ch2dec[ch]=dec\r
- }\r
-};\r
-{\r
- eq=index($0,"=")\r
- argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
-};\r
-END{\r
- if(argtab["disable_bbcode"]!="")\r
- {\r
- debug=debug"###nl;BBcode disabled"\r
- print debug>>outfile\r
- exit 0\r
- }\r
- text=argtab["BB"]\r
- html=bb2html(text)\r
- print "HTML="html>>outfile\r
- print debug>>outfile\r
- \r
- # if(tempfile!="")\r
- # {\r
- # text=argtab["message"]\r
- # gsub(/%5Bbr%5D/,"\n",text)\r
- # while(sub(/%5Bong%5D/,ong(),text)>0){print text}\r
- # while(sub(/%5Bung%5D/,ung(),text)>0){print text}\r
- # while(sub(/%5Bong%3Ddecree%5D/,ong("decree"),text)>0){print text}\r
- # while(sub(/%5Bung%3Ddecree%5D/,ung("decree"),text)>0){print text}\r
- # if(text!=argtab["message"])\r
- # print "message="text >> outfile\r
- # }\r
-};\r
-\r
-function bb2html(text, depth,count,bbtree,html,tag,tagstart,taglength,elm,tagv,tagname,tagvalue,matchname)\r
-{\r
- depth=0\r
- count[0]=1\r
- bbtree["0"]=""\r
- bbtree["0.n"]=0\r
- bbtree["0.t"]="post"\r
- bbtree["0.v"]=argtab["subject"]\r
- html=""\r
- gsub(/=/,"=",text)\r
- debug = debug "###nl;###nl;Build BBcode tree:"\r
- while(length(text)!=0)\r
- {\r
- tag=match(text, /\[\/?[a-z0-9\*]+(=(([^\[<>\"\]]*)|(\"[^\"<>]*\")))?\]/)\r
- #"#\""\r
- # debug = debug "###nl;" RSTART " " RLENGTH\r
- if (tag==0)\r
- {\r
- debug = debug "###nl;text: " text\r
- bbtree[ind(count,depth)]=text\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- text=""\r
- break;\r
- }\r
- tagstart=RSTART\r
- taglength=RLENGTH\r
- if(tagstart>1)\r
- {\r
- elm=substr(text,1,tagstart-1)\r
- debug = debug "###nl;text: " elm\r
- bbtree[ind(count,depth)]=elm\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- }\r
- tag=substr(text,tagstart,taglength)\r
- text=substr(text,tagstart+taglength)\r
- debug = debug "###nl;tag: " tag\r
- if(tag!~/^\[\//)\r
- {\r
- tagv=index(tag,"=")\r
- if(tagv<2)\r
- {\r
- tagname=substr(tag,2,length(tag)-2)\r
- tagvalue=""\r
- }\r
- else\r
- {\r
- tagname=substr(tag,2,tagv-2)\r
- tagvalue=substr(tag,tagv+1,length(tag)-tagv-1)\r
- }\r
- if(tagname !~ /^((quote)|b|i|u|(code)|(img)|(url)|(size)|(color)|(center)|(right)|(sub)|(sup)|(s)|(spoiler)|(list)|(\*))$/)\r
- {\r
- debug = debug "###nl;unknown tag"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||bbtree[indt(count,depth)".t"] == "img"||(bbtree[indt(count,depth)".t"] == "spoiler" && tagname=="spoiler")||(bbtree[indt(count,depth)".t"] == "size" && tagname=="size"))\r
- {\r
- debug = debug "###nl;this tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if(tagname=="*")\r
- {\r
- if(bbtree[indt(count,depth)".t"]==tagname)\r
- {\r
- debug = debug "###nl;implied tag: [/"tagname"]"\r
- debug = debug "###nl;matched"\r
- bbtree[ind(count,depth)]="[/"tagname"]"\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]=tagname\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else if(bbtree[indt(count,depth)".t"]!="list")\r
- {\r
- debug = debug "###nl;this tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- }\r
- debug = debug "###nl;name: " tagname " value: " tagvalue\r
- bbtree[ind(count,depth)]=tagname" "tagvalue\r
- bbtree[ind(count,depth)".k"]="s"\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++depth\r
- count[depth]=1\r
- bbtree[indt(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=0\r
- bbtree[indt(count,depth)".t"]=tagname\r
- bbtree[indt(count,depth)".v"]=tagvalue\r
- }\r
- else\r
- {\r
- if(depth<=0)\r
- {\r
- debug = debug "###nl;""unmatched"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- tagname=substr(tag,3,length(tag)-3)\r
- if(tagname=="list"&&bbtree[indt(count,depth)".t"]=="*")\r
- {\r
- debug = debug "###nl;implied tag: [/*]"\r
- debug = debug "###nl;matched"\r
- bbtree[ind(count,depth)]="[/*]"\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]="*"\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- debug = debug "###nl;name: " tagname\r
- matchname=bbtree[indt(count,depth)".t"]\r
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||(bbtree[indt(count,depth)".t"] == "img" && tagname != "img"))\r
- {\r
- debug = debug "###nl;this tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if(tagname!=matchname)\r
- {\r
- debug = debug "###nl;mismatched: " matchname\r
- # bbtree[ind(count,depth)]=tag\r
- # bbtree[indt(count,depth)".n"]=count[depth]\r
- # ++count[depth]\r
- # continue\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".t"]=bbtree[indt(count,depth)".t"]\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- continue\r
- }\r
- debug = debug "###nl;matched"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]=tagname\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- }\r
- if(depth>0)\r
- debug = debug "###nl;unclosed tags: " depth\r
- \r
- debug = debug "###nl;###nl;""generate HTML:"\r
- depth=0\r
- count[0]=0\r
- while(count[0]<=bbtree["0.n"]&&depth>=0)\r
- {\r
- if(count[depth]==0)\r
- {\r
- tag=bbtree[indt(count,depth)]\r
- tagname=bbtree[indt(count,depth)".t"]\r
- tagvalue=bbtree[indt(count,depth)".v"]\r
- debug = debug "###nl;name: "tagname" value: "tagvalue" elements: "bbtree[indt(count,depth)".n"]\r
- if(tagname == "post")\r
- {\r
- }\r
- else if(bbtree[indt(count,depth)".m"]=="")\r
- {\r
- debug = debug "###nl;unmatched"\r
- html = html tag\r
- }\r
- else if(tagname == "quote")\r
- {\r
- if (tagvalue=="")\r
- {\r
- html = html "<blockquote class=\"pq\"><div>"\r
- }\r
- else\r
- {\r
- if(tagvalue !~ /^\".*\"$/)\r
- #"#\""\r
- tagvalue="You forgot about the quote marks, "tagvalue\r
- else\r
- tagvalue=bb2html(substr(tagvalue,2,length(tagvalue)-2))\r
- html = html "<blockquote class=\"pq\"><div><cite class=\"pq\"><b class=\"br\">"tagvalue"</b> wrote:</cite><br>"\r
- }\r
- }\r
- else if (tagname == "b")\r
- {\r
- html = html"<span style=\"font-weight: bold\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "i")\r
- {\r
- html = html"<span style=\"font-style: italic\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "u")\r
- {\r
- html = html"<span style=\"text-decoration: underline\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "code")\r
- {\r
- if(bbtree[indtu(count,depth)".t"] == "code")\r
- {\r
- html=html tag\r
- debug = debug "###nl;not a tag, actually"\r
- }\r
- else\r
- {\r
- html=html"<dl class=\"pq\"><dt class=\"pq\">Code: <a href=\"#\" onclick=\"selectCode(this); return false;\">Select all</a></dt><dd><code class=\"pq\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- }\r
- else if (tagname == "img")\r
- html=html"<img src=\""\r
- else if (tagname == "url")\r
- {\r
- if(tagvalue=="")\r
- {\r
- ++count[depth]\r
- tagvalue=bbtree[ind(count,depth)]\r
- --count[depth]\r
- debug = debug "###nl;implied value: " tagvalue\r
- }\r
- html=html"<a href=\""tagvalue"\" class=\"postlink\">"\r
- }\r
- else if (tagname == "size")\r
- {\r
- if (tagvalue==""||(tagvalue !~ /^[0-9]+$/)||(tagvalue+0)>200)\r
- html=html"<span style=\"font-size: 130%; line-height: 116%;\"> This tag should have a correct value. "\r
- else\r
- html=html"<span style=\"font-size: "tagvalue"%; line-height: 116%;\">"\r
- }\r
- else if (tagname == "color")\r
- {\r
- if (tagvalue==""||tagvalue !~ /^#[0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]$/) #for some reason /^([0-9A-F]{6})$/ doesn't work.\r
- html=html"<span style=\"color: #EE0000\"> This tag should have a correct value. "\r
- else\r
- html=html"<span style=\"color: "tagvalue"\">"\r
- }\r
- else if (tagname ~ /^((center)|(right))$/)\r
- {\r
- html=html"<div align=\""tagname"\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="s")\r
- {\r
- html=html"<strike>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="sub")\r
- {\r
- html=html"<sub>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="sup")\r
- {\r
- html=html"<sup>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname=="spoiler")\r
- {\r
- html=html"<div style=\"margin:20px; margin-top:5px\"><div class=\"quotetitle\"><b>Spoiler:</b> <input type=\"button\" class=\"pk\" value=\"Show\" style=\"width:45px;font-size:10px;margin:0px;padding:0px;\" onclick=\"if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }\" /></div><div class=\"quotecontent\"><div style=\"display: none;\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname=="list")\r
- {\r
- if(tagvalue=="")\r
- html=html"<ul>"\r
- else\r
- {\r
- if (tagvalue=="1")\r
- tagvalue="decimal"\r
- else if (tagvalue=="i")\r
- tagvalue="lower-roman"\r
- else if (tagvalue=="I")\r
- tagvalue="upper-roman"\r
- else if (tagvalue=="a")\r
- tagvalue="lower-alpha"\r
- else if (tagvalue=="A")\r
- tagvalue="upper-alpha"\r
- else\r
- {\r
- html=html"This tag should have a correct value. "\r
- tagvalue="decimal"\r
- }\r
- html=html"<ol style=\"list-style-type: "tagvalue"\">"\r
- }\r
- }\r
- else if (tagname=="*")\r
- {\r
- html=html"<li>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else\r
- {\r
- debug = debug "###nl;unknown tag"\r
- html = html tag\r
- }\r
- ++count[depth]\r
- }\r
- else if(bbtree[ind(count,depth)".k"]=="s")\r
- {\r
- debug = debug "###nl;entering tag:"\r
- ++depth\r
- count[depth]=0\r
- }\r
- else if(bbtree[ind(count,depth)".k"]=="e")\r
- {\r
- debug = debug "###nl;leaving tag:"\r
- tag=bbtree[ind(count,depth)]\r
- tagname=bbtree[ind(count,depth)".t"]\r
- tagvalue=bbtree[ind(count,depth)".v"]\r
- debug = debug "###nl;name: "tagname" value: "tagvalue\r
- if (tagname == "post")\r
- {\r
- }\r
- else if(bbtree[ind(count,depth)".m"]=="")\r
- {\r
- debug = debug "###nl;unmatched"\r
- html = html tag\r
- }\r
- else if(tagname == "quote")\r
- html = html "</div></blockquote>"\r
- else if (tagname ~/^(b|i|u|(size)|(color))$/)\r
- html = html"</span>"\r
- else if (tagname == "code")\r
- {\r
- if(bbtree[indtu(count,depth)".t"] == "code")\r
- {\r
- html=html tag\r
- debug = debug "###nl;not a tag, actually"\r
- }\r
- else\r
- html = html"</code></dd></dl>"\r
- }\r
- else if (tagname == "img")\r
- {\r
- html = html"\" alt=\"Image\" />"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if(tagname=="url")\r
- html=html"</a>"\r
- else if (tagname ~ /^((center)|(right))$/)\r
- html=html"</div>"\r
- else if (tagname =="s")\r
- html=html"</strike>"\r
- else if (tagname =="sub")\r
- html=html"</sub>"\r
- else if (tagname =="sup")\r
- html=html"</sup>"\r
- else if (tagname=="spoiler")\r
- html=html"</div></div></div>"\r
- else if (tagname=="list")\r
- {\r
- if (tagvalue=="")\r
- html=html"</ul>"\r
- else\r
- html=html"</ol>"\r
- }\r
- else if (tagname=="*")\r
- html=html"</li>"\r
- else\r
- {\r
- debug = debug "###nl;unknown tag"\r
- html = html tag\r
- }\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else if(count[depth]>bbtree[indt(count,depth)".n"])\r
- {\r
- debug = debug "###nl;run out of elements in this tag; leaving"\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else\r
- {\r
- tag=bbtree[ind(count,depth)]\r
- debug = debug "###nl;text: "tag\r
- if(bbtree[indt(count,depth)".t"] == "code")\r
- {\r
- # gsub(/ ?<br> ?/,"<br>",tag)\r
- gsub(/ /,"\\ ",tag)\r
- gsub(/\t/,"\\ \\ ",tag)\r
- }\r
- if(argtab["disable_magic_url"]==""&& bbtree[indt(count,depth)".t"] !~ /^((code)|(img)|(url))$/)\r
- gsub(/https?:\/\/[^\n\r\t<> ]+/,"<a href=\"&\" class=\"postlink\">&</a>",tag)\r
- if(argtab["disable_smilies"]=="" && bbtree[indt(count,depth)".t"] !~ /^((code)|(img))$/)\r
- {\r
- gsub(/(^|[\n\r\t ]):D($|[\n\r\t ])/," <img title=\"Very Happy\" alt=\":D\" src=\"/ott/prosilver/smilies/icon_biggrin.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):\)($|[\n\r\t ])/," <img title=\"Smile\" alt=\":)\" src=\"/ott/prosilver/smilies/icon_smile.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):\(($|[\n\r\t ])/," <img title=\"Sad\" alt=\":(\" src=\"/ott/prosilver/smilies/icon_sad.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):o($|[\n\r\t ])/," <img title=\"Surprised\" alt=\":o\" src=\"/ott/prosilver/smilies/icon_surprised.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):shock:($|[\n\r\t ])/," <img title=\"Shocked\" alt=\":shock:\" src=\"/ott/prosilver/smilies/icon_eek.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):\?($|[\n\r\t ])/," <img title=\"Confused\" alt=\":?\" src=\"/ott/prosilver/smilies/icon_confused.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ])8-\)($|[\n\r\t ])/," <img title=\"Cool\" alt=\"8-)\" src=\"/ott/prosilver/smilies/icon_cool.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):lol:($|[\n\r\t ])/," <img title=\"Laughing\" alt=\":lol:\" src=\"/ott/prosilver/smilies/icon_lol.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):x($|[\n\r\t ])/," <img title=\"Mad\" alt=\":x\" src=\"/ott/prosilver/smilies/icon_mad.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):P($|[\n\r\t ])/," <img title=\"Razz\" alt=\":P\" src=\"/ott/prosilver/smilies/icon_razz.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):oops:($|[\n\r\t ])/," <img title=\"Embarassed\" alt=\":oops:\" src=\"/ott/prosilver/smilies/icon_redface.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):cry:($|[\n\r\t ])/," <img title=\"Crying or Very Sad\" alt=\":cry:\" src=\"/ott/prosilver/smilies/icon_cry.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):evil:($|[\n\r\t ])/," <img title=\"Evil or Very Mad\" alt=\":evil:\" src=\"/ott/prosilver/smilies/icon_evil.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):twisted:($|[\n\r\t ])/," <img title=\"Twisted Evil\" alt=\":twisted:\" src=\"/ott/prosilver/smilies/icon_twisted.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):roll:($|[\n\r\t ])/," <img title=\"Rolling Eyes\" alt=\":roll:\" src=\"/ott/prosilver/smilies/icon_rolleyes.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):wink:($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"/ott/prosilver/smilies/icon_wink.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]);\)($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"/ott/prosilver/smilies/icon_wink.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):!:($|[\n\r\t ])/," <img title=\"Exclamation\" alt=\":!:\" src=\"/ott/prosilver/smilies/icon_exclaim.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):\?:($|[\n\r\t ])/," <img title=\"Question\" alt=\":?:\" src=\"/ott/prosilver/smilies/icon_question.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):idea:($|[\n\r\t ])/," <img title=\"Idea\" alt=\":idea:\" src=\"/ott/prosilver/smilies/icon_idea.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):arrow:($|[\n\r\t ])/," <img title=\"Arrow\" alt=\":arrow:\" src=\"/ott/prosilver/smilies/icon_arrow.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):\|($|[\n\r\t ])/," <img title=\"Neutral\" alt=\":|\" src=\"/ott/prosilver/smilies/icon_neutral.gif\" /> ",tag)\r
- gsub(/(^|[\n\r\t ]):mrgreen:($|[\n\r\t ])/," <img title=\"Mr. Green\" alt=\":mrgreen:\" src=\"/ott/prosilver/smilies/icon_mrgreen.gif\" /> ",tag)\r
- }\r
- \r
- html = html tag\r
- ++count[depth]\r
- }\r
- }\r
- debug = debug "###nl;done"\r
- return html\r
-}\r
-\r
-function ind(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<=depth;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- # debug = debug "###nl;" iindex\r
- return iindex\r
-}\r
-function indt(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<depth;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- if(depth>0)\r
- iindex=iindex"."\r
- iindex = iindex "0"\r
- # debug = debug "###nl;" iindex\r
- return iindex\r
-}\r
-function indtu(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<depth-1;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- if(depth>0)\r
- iindex=iindex"."\r
- iindex = iindex "0"\r
- # debug = debug "###nl;" iindex\r
- return iindex\r
-}\r
-function ong(decree, line)\r
-{\r
- system (automome" -lc 256 -n 67 -d "memepath(decree!=""?" -t \"[decr]\"":"")" > "tempfile)\r
- \r
- while((getline line < tempfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",line)\r
- if(sub(/[AEIOUY]-N-G/,"#O-N-G#",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/O+N+G+/,"#&#",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/DON'T/,"D#ON'G#T",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/[AEIOUY]NG/,"#ONG#",line)>0)\r
- {\r
- if($0!~/TH\[b\]ONG/)\r
- return preparebb(line)\r
- }\r
- if(sub(/ON /,"#ONG# ",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/O\.?$/,"#ONG# ",$0)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- }\r
- close(tempfile)\r
- return "Ong"\r
-}\r
-\r
-function ung(decree, line)\r
-{\r
- system (automome" -lc 256 -n 67 -d "memepath(decree!=""?" -t \"[decr]\"":"")" > "tempfile)\r
- \r
- while((getline line < tempfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",line)\r
- if(sub(/[AEIOUY]-N-G/,"#U-N-G#",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/U+N+G+/,"#&#",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/[AEIOUY]NG/,"#UNG#",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/UN /,"#UNG# ",line)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- if(sub(/U\.?$/,"#UNG# ",$0)>0)\r
- {\r
- close(tempfile)\r
- return preparebb(line)\r
- }\r
- }\r
- close(tempfile)\r
- return "Ung"\r
-}\r
-\r
-function preparebb(rh)\r
-{\r
- if(nobb=="")\r
- {\r
- gsub(/\*\*/,"¤",rh)\r
- gsub(/\*[^\*]+\*/,"±&±",rh)\r
- gsub(/±\*/,"[i]",rh)\r
- gsub(/\*±/,"[/i]",rh)\r
- gsub(/¤/,"*",rh)\r
- \r
- gsub(/__/,"¤",rh)\r
- gsub(/_[^_]+_/,"±&±",rh)\r
- gsub(/±_/,"[u]",rh)\r
- gsub(/_±/,"[/u]",rh)\r
- gsub(/¤/,"_",rh)\r
- \r
- gsub(/##/,"¤",rh)\r
- gsub(/#[^#]+#/,"±&±",rh)\r
- gsub(/±#/,"[b]",rh)\r
- gsub(/#±/,"[/b]",rh)\r
- gsub(/¤/,"#",rh)\r
- \r
- gsub(/\$\$/,"¤",rh)\r
- gsub(/\$[^\$]+\$/,"±&±",rh)\r
- gsub(/±\$/,"[size=80]",rh)\r
- gsub(/\$±/,"[/size]",rh)\r
- gsub(/¤/,"$",rh)\r
- }\r
- \r
- return rh (nobb==""?" -- [url=http://mrob.com/time/automome]automome[/url]":" -- automome")\r
-}\r
-function urlencode(name,all, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1);\r
- if ((ch ~ /[a-zA-Z0-9\.\-_~]/)&&(all==""))\r
- escaped = escaped ch\r
- else\r
- escaped = escaped "%" ch2hex[ch]\r
- }\r
- return escaped\r
-}\r
+++ /dev/null
-#// bot4.awk
-#// The bot to post frames to the OTT
-#// 24.04.2021
-#//
-#// Copyright (C) 2015, 2018-2019, 2021 Balthasar Szczepański
-#//
-#// This program is free software: you can redistribute it and/or modify
-#// it under the terms of the GNU Affero General Public License as
-#// published by the Free Software Foundation, either version 3 of the
-#// License, or (at your option) any later version.
-#//
-#// This program is distributed in the hope that it will be useful,
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-#// GNU Affero General Public License for more details.
-#//
-#// You should have received a copy of the GNU Affero General Public License
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-BEGIN{
- FS=""
- # noticepath="/eizm/mem/aftertime/mpost/"
- # framepath="/eizm/www/time/"
- datapath="/eizm/data/aftertime/"
- timecmd="date"
- timecmd2="date -u +%N%s"
- lastpath ="/eizm/mem/aftertime/lastong/"
- temppath ="/eizm/tmp/aftertime/"
- ott_address="http://forums.xkcd.com/viewtopic.php?f=7&t=101043&start="
- tto_address="http://1190.bicyclesonthemoon.info/ott/view?start="
- mstd_address="http://1190.bicyclesonthemoon.info/ott/mview?start="
- lastpost_address="http://forums.xkcd.com/viewtopic.php?f=7&t=101043&sd=d"
-
- wget="/usr/bin/wget"
- rm="/bin/rm"
- perl="/usr/bin/perl"
- mawk="/usr/bin/mawk"
- automome="/eizm/pro/ong1/mome.pl"
- memedef="/eizm/mem/ong1/mome.txt"
-
- postawk="/eizm/pro/aftertime/post.awk"
- mpostawk="/eizm/pro/aftertime/mpost.awk"
-
- # timecmd2="date +\"%H%M%S\""
- botcastleurl="http://1190.bicyclesonthemoon.info"
-
- if(enhance!="" && int(enhance)!="0")
- {
- enh=int(enhance)
- ext="-"enh
- }
- else
- {
- ext=""
- enh=0
- }
-
- f=int(frame)
- timecmd | getline thistime
- close(timecmd)
-
- timecmd2 | getline ID
- close(timecmd2)
- ID=int(ID/3600)
- ID =int(ID%9999)
-
- for(i=0;i<256;++i)
- {
- ch=sprintf("%c",i)
- hex=sprintf("%02X",i);
- ch2hex[ch]=hex
- }
-
- statefile= datapath story"/ongstate"
- getline temp < statefile
- close(statefile)
-
- split(temp, temptab, " ")
- state=int(temptab[1])
- last=int(temptab[2])
-
- if(frame=="")
- f=last
-
- # srand(ID + f)
- # for(i=0;i<f;++i)
- # {
- # r=rand()
- # # print r
- # }
- lastalt=0
-}
-{
- # exit
- file=1
- gsub(/[\r\n]/, "", $0)
- eq=index($0, "=")
- if($0 ~ /^[0-9]+=/)
- {
- i=int(substr($0, 1, eq-1))
- if(f>=i && i>=lastalt)
- {
- alt=substr($0, eq+1)
- lastalt=i
- }
- }
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)
-}
-END{
- # exit
-
- ongbot= (please!=""?((argtab["pleaseongbot"]!="")?argtab["pleaseongbot"]:"pleaseongbot"):((argtab["ongbot"]!="")?argtab["ongbot"]:"ongbot"))
-
- print thistime" "ongbot
-
- tempfile = temppath "ongbot-"argtab["story"]"-"ID
- tempfile_t= tempfile"-t"
- tempfile_c= tempfile"-c"
- tempfile_p= tempfile"-p"
-
- if (file=="")
- {
- print "Can't open story settings file."
- exit 1
- }
- if(argtab["ongoing"]=="")
- {
- print "Story not ONGoing."
- exit 1
- }
-
-
-
- if(state<2 && force=="" && f==last)
- {
- print "Wrong state."
- exit 1
- }
-
- if(argtab["special"] != "")
- {
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],f,"")
- line=""
- undertext=""
-
- while((getline line < specialfile)>0)
- {
- gsub(/[\r\n]/, "", line)
-
- if (line == "" && !undertext)
- {
- undertext=1
- argtab["text"]=""
- continue
- }
-
- if (undertext)
- {
- argtab["text"] = argtab["text"] line "\n"
- }
- else
- {
-
- eq=index(line, "=")
- argtab[substr(line, 1, eq-1)]=substr(line, eq+1)
- }
- }
- close (specialfile)
- }
-
-
- botfile=datapath argtab["story"]"/"ongbot
- getline botname < botfile
- getline username < botfile
- getline password < botfile
- gsub(/[\r\n]/, "", botname)
- gsub(/[\r\n]/, "", username)
- gsub(/[\r\n]/, "", password)
- close(botfile)
-
- if (botname =="" || username=="" || password=="")
- {
- print "Can't get login and password."
- exit 1
- }
- print botname
-
- useragent = "\""botname" (time after Time post bot; http://1190.bicyclesonthemoon.info/aftertime; story="argtab["story"]"; frame "f")\""
-
- temp=""
- lasttime = lastpath argtab["story"] ext
- getline temp < lasttime
- close(lasttime)
-
- split(temp, temptab, " ")
- lastpage=int(temptab[1])
- lastframe=int(temptab[2])
-
- print "Start with page "lastpage", last frame was "lastframe", current frame is "f"."
- if(f <= lastframe && force=="")
- {
- print "Already ONGed."
- exit 1
- }
-
- if(force=="")
- {
- temp=argtab["match"ext]
- for(i=0;(j=index(substr(temp,2),"%"))!=0;++i)
- {
- temp2=substr(temp,1,j)
- temp=substr(temp,j+1)
- regexp = regexp sprintf(temp2,f)
- }
- regexp = regexp sprintf(temp,f)
- print "match "regexp
-
- for(page=lastpage;page<=lastpage;++page)
- {
- url= "\""ott_address (page-1)*40"\""
- url2= "\""tto_address (page-1)*40"\""
-
- cmd= wget " -q -O "tempfile" -U "useragent" "url
- cmd2= wget " -q -O "tempfile" -U "useragent" "url2
- # print "! "cmd" !"
- if(system(cmd)!=0)
- {
- print "Newpage "page" download fail. Retry from mirror."
- if(system(cmd2)!=0)
- {
- print "Newpage "page" download fail."
- system(rm" -f "tempfile)
- exit 1
- }
- }
- while((getline temp < tempfile)>0)
- {
- if(temp ~ regexp)
- {
- print "Newpage "page" - already ONGed."
- system(rm" -f "tempfile)
- print page" "f > lasttime
- close(lasttime)
- exit 1
- }
- gsub(/<[^<>]*>/,"",temp)
- gsub(/ +/," ",temp)
- temp2=tolower(temp)
- if((i=match(temp2,/page [0-9]+ of [0-9]+/))!=0)
- {
- temp2=substr(temp2,i)
- temp2=substr(temp2,index(temp2,"of")+3)" "
- temp2=substr(temp2,1,index(temp2," ")-1)
- lastpage=int(temp2)
- }
- temp2=tolower(temp)
- if((i=match(temp2,/[0-9]+ posts/))!=0)
- {
- temp2=substr(temp2,index(temp2,"")-1)
- posts=int(temp2)
- if(posts%40==0)
- pope=1
- else
- pope=""
- }
- }
- close(tempfile)
- print "Newpage "page" - nothing found."
- }
- mlastpage=1
- for(mpage=1;mpage<=mlastpage;++mpage)
- {
- url= "\""mstd_address (mpage-1)*40"\""
-
- cmd= wget " -q -O "tempfile" -U "useragent" "url
- if(system(cmd)!=0)
- {
- print "Mustardtime newpage "mpage" not downloaded."
- break
- }
- for(j=0;(getline temp < tempfile)>0;++j)
- {
- if(temp ~ regexp)
- {
- print "Newpage "mpage" - already ONGed."
- system(rm" -f "tempfile)
- print page" "f > lasttime
- close(lasttime)
-
- exit 1
- }
- gsub(/<[^<>]*>/,"",temp)
- gsub(/ +/," ",temp)
- temp2=tolower(temp)
- if((i=match(temp2,/page [0-9]+ of [0-9]+/))!=0)
- {
- temp2=substr(temp2,i)
- temp2=substr(temp2,index(temp2,"of")+3)
- temp2=substr(temp2,1,index(temp2," ")-1)
- mlastpage=int(temp2)
- }
- temp2=tolower(temp)
- if((i=match(temp2,/[0-9]+ posts/))!=0)
- {
- temp2=substr(temp2,index(temp2,"")-1)
- posts=int(temp2)
- if(posts%40==0)
- pope=1
- else
- pope=""
- }
- }
- close(tempfile)
- print "Mustradtime newpage "mpage" - nothing found."
- }
- }
-
- if(argtab["nomeme"]=="")
- {
- print "Ok, can ONG. Now generate ONGtext"
- cmd = perl" "automome" -lc 150 -n 67 -d "memedef (pope!=""?" -t \"[decrall]\"":"")
- while ((cmd | getline temp)>0)
- {
- if(sub(/[AEIOUY]-N-G/,"[b]O-N-G[/b]",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- if(sub(/O+N+G+/,"[b]&[/b]",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- if(sub(/DON'T/,"D[b]ON'G[/b]T",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- if(sub(/[AEIOUY]NG/,"[b]ONG[/b]",temp)>0)
- {
- if($0!~/TH\[b\]ONG/)
- {
- ongtext= prepare(temp)
- break
- }
- }
- if(sub(/ON G/,"[b]ON G[/b] ",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- if(sub(/ON /,"[b]ONG[/b] ",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- if(sub(/O\.?$/,"[b]ONG[/b] ",temp)>0)
- {
- ongtext= prepare(temp)
- break
- }
- }
- close(cmd)
-
- if(ongtext=="")
- ongtext="ONG"
- print ongtext
- }
- else
- ongtext="ONG"
-
- cmd= wget " -q -O "tempfile" -U "useragent" \""lastpost_address"\""
- if(system(cmd)!=0)
- {
- print "Can't check last post"
- # system(rm" -f "tempfile)
- # exit 1
- }
-
- else
- {
- while((getline temp < tempfile)>0)
- {
- if ((i=match(temp, /id=\"p[0-9]+\"/))!=0) #"
- {
- temp2=substr(temp, i+5)
- lastpostid=substr(temp2, 1, index(temp2,"\"")-1)
- }
-
- if (temp ~ /class=\"postprofile\"/) #"
- postprofile = "1"
-
- else if (postprofile=="")
- continue
-
- if(temp ~ /memberlist\.php.*mode=viewprofile[^<>]*>[^<>]+<\/a/)
- {
- temp2=substr(temp, index(temp, ">")+1)
- lastusername=substr(temp2, 1, index(temp2,"<")-1)
- break
- }
- }
- close(tempfile)
- if(lastusername=="" || lastpostid=="")
- {
- print "Can't check last post"
- # system(rm" -f "tempfile)
- # exit 1
- }
- }
-
- srand(ID+lastpostid+f)
-
- if(rand()<(argtab["npbprob"]+0))
- {
- print "Also, let's do some NewpixbOTTification!"
- npbsel="npbframe"ext
- }
- else
- npbsel="frame"ext
-
-
-
- framedir= (argtab["framedir"]!="" ? argtab["framedir"] : "/aftertime/"argtab["story"]"/")
-
- print "username="urlencode(username) > tempfile
- print "password="urlencode(password,1) >> tempfile
- print "subject="urlencode(sprintf(argtab["subject"ext],f,"")) >> tempfile
- print "message="urlencode(ongtext"\n[url="botcastleurl"/aftertime/viewer?story="argtab["story"]"&f="f((enh>0)?"&e="enh:"")"][img]"botcastleurl framedir sprintf(argtab[npbsel],f,"")"[/img][/url]"((argtab["text"]!="")?("\n"argtab["text"]):"")"[spoiler]"alt"[/spoiler]\n[right][size=80] -- posted by "botname"[/size][/right]") >> tempfile
- print "Send post"
-
- cmd= mawk" -f "postawk" -v postfile="tempfile_p" -v cookiefile="tempfile_c" -v tempfile="tempfile_t((lastpostid!="" && lastusername!="")?" -v edit="lastpostid" -v user=\""lastusername"\"":"")" "tempfile
- cmd2= mawk" -f "mpostawk" -v postfile="tempfile_p" -v cookiefile="tempfile_c" -v tempfile="tempfile_t" "tempfile
-
- if(system(cmd)!=0)
- {
- print "Can't post, try again from mirror"
- if(system(cmd2)!=0)
- {
- print "CAN'T POST EITHER!"
- system(rm" -f "tempfile)
- system(rm" -f "tempfile_t)
- system(rm" -f "tempfile_c)
- system(rm" -f "tempfile_p)
- exit 1
- }
- }
- print "ONGed"
- system(rm" -f "tempfile)
- system(rm" -f "tempfile_t)
- system(rm" -f "tempfile_c)
- system(rm" -f "tempfile_p)
- if(force=="")
- {
- print lastpage" "f > lasttime
- close(lasttime)
- }
-
-
-}
-function urlencode(name, all, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1);
- if (ch ~ /[a-z]|[A-Z]|[0-9]/ && all=="")
- escaped = escaped ch
- else
- escaped = escaped "%" ch2hex[ch]
- }
- return escaped
-};
-function prepare(rh)
-{
- gsub(/\*\*/,"¤",rh)
- gsub(/\*[^\*]+\*/,"±&±",rh)
- gsub(/±\*/,"[i]",rh)
- gsub(/\*±/,"[/i]",rh)
- gsub(/¤/,"*",rh)
-
- gsub(/__/,"¤",rh)
- gsub(/_[^_]+_/,"±&±",rh)
- gsub(/±_/,"[u]",rh)
- gsub(/_±/,"[/u]",rh)
- gsub(/¤/,"_",rh)
-
- gsub(/\$\$/,"¤",rh)
- gsub(/\$[^\$]+\$/,"±&±",rh)
- gsub(/±\$/,"[size=80]",rh)
- gsub(/\$±/,"[/size]",rh)
- gsub(/¤/,"$",rh)
-
- return rh " -- [url=http://1190.bicyclesonthemoon.info/ongtext?b=on][b]ong[/b]o[/url][url=http://mrob.com/time/automome/]mome[/url]"
-}
+++ /dev/null
-BEGIN{
- # for(i=1; i<=828; ++i)
- # {
- # f=sprintf("%04d",i)
- # cmpcmd="/eizm/pro/aftertime/compare /eizm/www/time/aftertime/t-1/t-1_"f".png /eizm/data/aftertime/testaftertime/t-1/t-1_"f".png"
-
- # printf("%s","t-1_"f".png ")
-
- # # print cmpcmd
- # system (cmpcmd)
- # }
- for(i=1; i<=828; ++i)
- {
- f=sprintf("%04d",i)
- cmpcmd="/eizm/pro/aftertime/compare /eizm/www/time/aftertime/t-1/remapt-1_"f".png /eizm/data/aftertime/testaftertime/t-1/remapt-1_"f".png"
- cpcmd="/bin/cp /eizm/data/aftertime/testaftertime/t-1/remapt-1_"f".png /eizm/www/time/aftertime/t-1/mustardremapt-1_"f".png"
-
- printf("%s","remapt-1_"f".png ")
-
- # print cmpcmd
- # system (cmpcmd)
-
- cmpcmd | getline line
- close(cmpcmd)
- print line
- if (line!="identical.")
- {
- system(cpcmd)
- print "upload "f"."
- }
- }
-
-}
+++ /dev/null
-BEGIN{\r
- print "SilentTimer\n5TkxDBIL21OyEGwkdTR2EQYwdYC5F4\n"\r
-}\r
-{\r
- y=substr($1, 1, 4)\r
- m=substr($1, 5, 2)\r
- d=substr($1, 7, 2)\r
- h=substr($1, 9, 2)\r
- \r
- if($NF !~ /^t1i-[0-9]+$/)\r
- next\r
- \r
- id= $NF "-1"\r
- \r
- print y"-"m"-"d" "h"\nq\n"\r
-}
\ No newline at end of file
+++ /dev/null
-BEGIN{\r
- FS=""\r
- print "SilentTimer\n5TkxDBIL21OyEGwkdTR2EQYwdYC5F4\n"\r
- i=0\r
-}\r
-{\r
- ind=index($0, " ")\r
- id=substr($0, 1, ind-1)\r
- value=substr($0, ind+1)\r
- ind=index(value," ")\r
- name=substr(value, 1, ind-1)\r
- value=substr(value, ind+1)\r
- \r
- if (tab[id]=="")\r
- {\r
- list[i]=id\r
- tab[id]=id\r
- ++i\r
- }\r
- tab[id"-"name]=value\r
-}\r
-END{\r
- for(j=0;j<i;++j)\r
- {\r
- timenumber=list[j]\r
- time=substr(timenumber,1,4)"-"substr(timenumber,5,2)"-"substr(timenumber,7,2)" "substr(timenumber,9,2)":00"\r
- id=substr(tab[timenumber"-subject"],index(tab[timenumber"-subject"],"t1i-"))\r
- \r
- for(k=1; idtab[id"-"k]!=""; ++k)\r
- {\r
- }\r
- fullid=id"-"k\r
- idtab[fullid]=k;\r
- \r
- options=tab[timenumber"-options"]\r
- subject="Did you notice …"\r
- content=tab[timenumber"-content"]\r
- notice=substr(content,index(content,"[br]…")+4)\r
- \r
- print fullid\r
- print options\r
- print time\r
- print subject\r
- print notice\r
- print ""\r
- }\r
-}\r
+++ /dev/null
-BEGIN{\r
- print"blue:"\r
- for(i=0; i<=1416; ++i)\r
- {\r
- printf("t1i-%04u: ",i)\r
- system(sprintf("/eizm/pro/aftertime/compare /eizm/www/time/aftertime/t1i/t1i-%04u.png /eizm/www/time/aftertime/t1i/hyperblue-%04u.png",i,i))\r
- }\r
- print"fading:"\r
- for(i=0; i<=1416; ++i)\r
- {\r
- printf("t1i-%04u: ",i)\r
- system(sprintf("/eizm/pro/aftertime/compare /eizm/www/time/aftertime/t1i/t1i-%04u.png /eizm/www/time/aftertime/t1i/nofading-%04u.png",i,i))\r
- }\r
-}\r
+++ /dev/null
-#// frame.awk\r
-#// Dynamic frame for the viewer\r
-#// 10.03.2019\r
-#// \r
-#// Copyright (C) 2015, 2018-2019 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- FS=""\r
- framepath="/eizm/www/time/"\r
- datapath="/eizm/data/aftertime/"\r
- \r
- if(frame ~ /[a-zA-Z]$/)\r
- {\r
- f=int(substr(frame,1,length(frame)-1))\r
- s=substr(frame, length(frame))\r
- }\r
- else\r
- {\r
- f=int(frame)\r
- s=""\r
- }\r
- e=int(enhance)\r
- \r
- lastalt=0\r
- \r
- ch2num[0]=""\r
- num2ch[""]=0\r
- for(i=1;i<=26;++i)\r
- {\r
- ch=sprintf("%c",i+96)\r
- num2ch[i]=ch\r
- ch2num[ch]=i\r
- }\r
-}\r
-{\r
- file=1\r
- gsub(/[\r\n]/, "", $0)\r
- eq=index($0, "=")\r
- \r
- if($0 ~ /^sf-[0-9]+=/)\r
- {\r
- sf=1\r
- i=int(substr($0, 4, eq-4))\r
- if(i==f)\r
- this_sf= tolower(substr($0, eq+1))\r
- if(i==f-1)\r
- prev_sf=tolower(substr($0, eq+1))\r
- \r
- }\r
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)\r
-}\r
-END{\r
- \r
- if (file=="")\r
- exit 1\r
- \r
- if (sf=="")\r
- s=""\r
- else if(this_sf=="")\r
- s=""\r
- else if(s>this_sf && argtab["cfrt"]=="")\r
- s=this_sf\r
- \r
- ongoing=int(argtab["ongoing"])\r
- if(ongoing>0)\r
- {\r
- statefile= datapath argtab["story"]"/ongstate"\r
- getline temp < statefile\r
- close(statefile)\r
- \r
- split(temp, temptab, " ")\r
- state=int(temptab[1])\r
- last=int(temptab[2])\r
- nextong=int(temptab[3])\r
- ongfailcount=int(temptab[4])\r
- }\r
- else\r
- {\r
- last=int(argtab["last"])\r
- state=3\r
- nextong=0\r
- ongfailcount=0\r
- }\r
- first=int(argtab["first"])\r
- \r
- if(frame=="")\r
- {\r
- if(ongoing>0)\r
- {\r
- f=last\r
- onlyframe=1\r
- }\r
- else\r
- {\r
- f=first\r
- onlyframe=""\r
- }\r
- }\r
- \r
- if(f<first && argtab["cfrt"]=="")\r
- f=first\r
- \r
- if(f>last && argtab["cfrt"]=="")\r
- f=last\r
- \r
- if(argtab["special"] != "")\r
- {\r
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],f,s)\r
- line=""\r
- undertext=""\r
- \r
- while((getline line < specialfile)>0)\r
- {\r
- gsub(/[\r\n]/, "", line)\r
- \r
- if (line == "" && !undertext)\r
- {\r
- undertext=1\r
- argtab["text"]=""\r
- continue\r
- }\r
- \r
- if (undertext)\r
- {\r
- argtab["text"] = argtab["text"] line "\n"\r
- }\r
- else\r
- {\r
- \r
- eq=index(line, "=")\r
- argtab[substr(line, 1, eq-1)]=substr(line, eq+1)\r
- }\r
- }\r
- close (specialfile)\r
- }\r
- \r
- framedir= (argtab["framedir"]!="" ? argtab["framedir"] : "/aftertime/"argtab["story"]"/")\r
- # if(sf!="")\r
- # {\r
- frame= framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f,s)\r
- if (system("[ -f " framepath frame" ]")!=0)\r
- frame= framedir sprintf(argtab["frame"],f,s)\r
- # }\r
- # else\r
- # {\r
- # s=""\r
- # frame= framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f)\r
- # if (system("[ -f " framepath frame" ]")!=0)\r
- # frame=framedir sprintf(argtab["frame"],f)\r
- # }\r
- \r
- if(f==last && state==1)\r
- {\r
- print "2 "f" "nextong" "ongfailcount > statefile\r
- close (statefile)\r
- }\r
- \r
- if((f>last || f<first || (this_sf!="" && s>this_sf)) || state==0 && argtab["cfrt"]!="")\r
- frame= framedir argtab["cfrt"]\r
- \r
- if(state==0 && argtab["cfrt"]=="")\r
- {\r
- print "Status: 404 Not Found"\r
- print ""\r
- }\r
- \r
- print "Status: 302 Temporal Relocation"\r
- print "Location: "frame\r
- print ""\r
-\r
-}\r
+++ /dev/null
-// frame.c (1190.bicyclesonthemoon.info/aftertime/frame)
-// Dynamic frame for the viewer
-// 21.06.2018
-//
-// Copyright (C) 2015, 2018 Balthasar Szczepański
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Affero General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Affero General Public License for more details.
-//
-// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-#define STORYDEF_PRINTF "/eizm/data/aftertime/%s/settings"
-#define MAWK_PATH "/usr/bin/mawk"
-#define AWK_FRAME "/eizm/pro/aftertime/frame.awk"
-
-#include <cgi.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/wait.h>
-
-s_cgi *cgi;
-
-int main (int argc, char *argv[])
-{
- s_cgi *cgi;
- pid_t sub;
- int r;
-
- char *story;
- char *f;
- char *enh;
-
- char arg1[256];
- char arg2[256];
- char arg3[256];
- char storydef[256];
-
- cgi=cgiInit();
-
- //setvbuf(stdout, NULL, _IONBF, 0);
- // dup2(fileno(stdout),fileno(stderr));
-
- story=cgiGetValue(cgi,"story");
- f=cgiGetValue(cgi,"f");
- enh=cgiGetValue(cgi,"e");
-
- snprintf(arg1,256,"story=%s",story!=NULL ? story : "");
- snprintf(arg2,256,"frame=%s",f!=NULL ? f : "");
- snprintf(arg3,256,"enhance=%s",enh!=NULL ? enh : "");
-
- sprintf(storydef,STORYDEF_PRINTF,story!=NULL ? story : "time");
-
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_FRAME,"-v",arg1,"-v",arg2,"-v",arg3,storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- if(r)
- {
- sprintf(storydef,STORYDEF_PRINTF,"default");
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_FRAME,"-v",arg1,"-v",arg2,"-v",arg3,storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- }
-
- return 0;
-}
+++ /dev/null
-#// info.awk
-#// Info about an aftertime story.
-#// 10.03.2019
-#//
-#// Copyright (C) 2015-2016, 2018-2019 Balthasar Szczepański
-#//
-#// This program is free software: you can redistribute it and/or modify
-#// it under the terms of the GNU Affero General Public License as
-#// published by the Free Software Foundation, either version 3 of the
-#// License, or (at your option) any later version.
-#//
-#// This program is distributed in the hope that it will be useful,
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-#// GNU Affero General Public License for more details.
-#//
-#// You should have received a copy of the GNU Affero General Public License
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-BEGIN{
- #print"INTERFACE IS BEING DEBUGGED. WAIT FOR IT."
- noticepath="/eizm/mem/aftertime/mpost/"
- framepath="/eizm/www/time/"
- datapath="/eizm/data/aftertime/"
- timecmd="date -u +\"%Y%m%d%H\""
- botcastleurl="http://1190.bicyclesonthemoon.info"
-
- # for(i=0;i<256;++i)
- # {
- # ch=sprintf("%c",i)
- # hex=sprintf("%02X",i)
- # dec=sprintf("%u",i)
- # ch2hex[ch]=hex
- # ch2dec[ch]=dec
- # }
-
- listfile = datapath "stories"
- stories=0
- line=""
- while((getline line < listfile)>0)
- {
- gsub(/[\r\n]/,"",line)
- eq=index(line,"=")
-
- storytab[stories]=substr(line, 1, eq-1)
- storyname[stories]=substr(line, eq+1)
- ++stories
- }
- close(listfile)
-
- if(frame !~ /^[0-9]+[a-z]?$/){
- noframe=1
- }
- else if(frame ~ /[a-zA-Z]$/)
- {
- f=int(substr(frame,1,length(frame)-1))
- s=substr(frame, length(frame))
- }
- else
- {
- f=int(frame)
- s=""
- }
- e=int(enhance)
- if(notice~/^[0-9]+$/)
- n=int(notice)
- timecmd | getline thistime
- close(timecmd)
-
- lastalt=0
-
- ch2num[0]=""
- num2ch[""]=0
- for(i=1;i<=26;++i)
- {
- ch=sprintf("%c",i+96)
- num2ch[i]=ch
- ch2num[ch]=i
- }
- alttabsize=0
- argtabsize=0
-}
-{
- file=1
- gsub(/[\r\n]/, "", $0)
- eq=index($0, "=")
- if($0 ~ /^[0-9]+=/)
- {
- i=int(substr($0, 1, eq-1))
- alttab[alttabsize]=substr($0, eq+1)
- alttabn[alttabsize]=i
- ++alttabsize
-
- # i=int(substr($0, 1, eq-1))
- # if(f>=i && i>=lastalt)
- # {
- # alt=substr($0, eq+1)
- # lastalt=i
- # }
- }
- else if($0 ~ /^sf-[0-9]+=/)
- {
- sf=1
- i=int(substr($0, 4, eq-4))
- if(i==f)
- this_sf= tolower(substr($0, eq+1))
- if(i==f-1)
- prev_sf=tolower(substr($0, eq+1))
-
- }
- if (!(substr($0, 1, eq-1) in argtab))
- {
- argtabind[argtabsize]=substr($0, 1, eq-1)
- ++argtabsize
- }
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)
-}
-END{
-
- if (story=="" && f=="")
- {
- for (i=0; i<stories; ++i)
- print storytab[i]"="storyname[i]
- exit 0
- }
-
-
- if (file=="")
- exit 1
-
- ongoing=int(argtab["ongoing"])
- if(ongoing>0)
- {
- statefile= datapath argtab["story"]"/ongstate"
- getline temp < statefile
- close(statefile)
-
- split(temp, temptab, " ")
- state=int(temptab[1])
- last=int(temptab[2])
- nextong=int(temptab[3])
- ongfailcount=int(temptab[4])
- }
- else
- {
- last=int(argtab["last"])
- state=3
- }
- first=int(argtab["first"])
-
- if(noframe!=""){
- if(ongoing>0)
- {
- print "state="state
- print "last="last
- print "nextong="nextong
- print "ongfailcount="ongfailcount
- }
- for (i=0; i< argtabsize; ++i)
- {
- if((argtabind[i] ~ /^[0-9]+$/)&&(ongoing>0))
- {
- j=int(argtabind[i])
- if(j<=last)
- print argtabind[i]"="argtab[argtabind[i]]
- }
- else if((argtabind[i] ~ /^sf-[0-9]+$/)&&(ongoing>0))
- {
- j=int(substr(argtabind[i],3))
- if(j<=last)
- print argtabind[i]"="argtab[argtabind[i]]
- }
- else if((argtabind[i] ~ /^(last|finalreplacetime|finalreplaceframe)$/)&&(ongoing>0))
- {
- }
- else
- print argtabind[i]"="argtab[argtabind[i]]
- }
- }
- else{
- if(f>last || f<first || (this_sf!="" && s>this_sf))
- exit 0
-
- if(this_sf=="")
- s=""
-
- if (s!="")
- {
- if(argtab[s] != "")
- s2=argtab[s]
- else
- s2=s
- n=-1
- }
-
- if(n>0)
- {
- noticepost=noticepath argtab["story"]"-"sprintf("%04u",f)"-"sprintf("%02u",n)
- noticetabsize=0
- for(j=0;(getline line < noticepost)>0;++j)
- {
- gsub(/[\r\n]/,"",line)
- eq=index(line,"=")
- noticeind=substr(line, 1, eq-1)
- noticeval=substr(line, eq+1)
-
- if (!(noticeind in noticetab))
- {
- noticetabind[noticetabsize]=noticeind
- ++noticetabsize
- }
- noticetab[noticeind]=noticeval
-
- }
- if(j==0)
- exit 0
- nposttime=noticetab["y"]noticetab["m"]noticetab["d"]noticetab["h"]
- if (thistime<nposttime)
- exit 0
-
- for(j=0; j<noticetabsize; ++j)
- {
- if(noticetabind[j] !~ /^(timenumber|key|brtext|BBHTML|BB|message|HTML|debug|username_h|subject_h|h|d|m|y)$/)
- print noticetabind[j]"="noticetab[noticetabind[j]]
- }
- if("subject_h"in noticetab)
- print"subject="unhtml(noticetab["subject_h"])
- print "posttime="sprintf("%04u%02u%02u%02u00",noticetab["y"],noticetab["m"],noticetab["d"],noticetab["h"])
- print ""
- if("brtext" in noticetab)
- {
- gsub(/\[br\]/,"\n",noticetab["brtext"])
- print noticetab["brtext"]
- }
- else if ("BB" in noticetab)
- print unhtml(noticetab["BB"])
- exit 0
- }
-
- if(argtab["special"] != "")
- {
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],f,s)
- line=""
- undertext=""
-
- while((getline line < specialfile)>0)
- {
- gsub(/[\r\n]/, "", line)
-
- if (line == "" && !undertext)
- {
- undertext=1
- argtab["text"]=""
- continue
- }
-
- if (undertext)
- {
- argtab["text"] = argtab["text"] line "\n"
- }
- else
- {
- eq=index(line, "=")
- argtab[substr(line, 1, eq-1)]=substr(line, eq+1)
- }
- }
- close (specialfile)
- }
-
- ongtimefile= datapath argtab["story"]"/ongtime"
-
- while((getline line < ongtimefile)>0)
- {
- ongind=index(line," ")
- ongft=substr(line,1,ongind-1)
- ongt=substr(line,ongind+1,4) substr(line,ongind+6,2) substr(line,ongind+9,2) substr(line,ongind+12,2) substr(line,ongind+15,2)
- if(ongft ~ /^[0-9]+[a-z]$/)
- ongf=int(substr(ongft,1,ongind-2)) substr(ongft,ongind-1,1)
- else
- ongf=int(ongft)
-
- if(ongf==(f s) && ongt ~ /^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/)
- ongtime=ongt
- }
- close(ongtimefile)
-
- if ("alt" in argtab)
- alt=argtab["alt"]
- else
- {
- for(i=0; i<alttabsize; ++i)
- {
- if(f>=alttabn[i] && alttabn[i]>=lastalt)
- {
- alt=alttab[i]
- lastalt=alttabn[i]
- }
- }
- }
-
- if(argtab["number"]!="")
- numberformat=argtab["number"]
- else
- {
- # if (sf!="")
- numberformat="%u%s"
- # else
- # numberformat="%u"
- }
-
- framedir= "/aftertime/"argtab["story"]"/"
- # if(sf!="")
- # {
- title=sprintf(argtab["title"(e>0 ? "-"e : "")],f,s2)
- frame=framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f,s)
- otherviewerurl=sprintf(argtab["otherviewerurl"], f+int(argtab["othervieweroffset"]),s2)
- # }
- # else
- # {
- # s=""
- # title=sprintf(argtab["title"(e>0 ? "-"e : "")],f)
- # frame= framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f)
- # otherviewerurl=sprintf(argtab["otherviewerurl"], f+int(argtab["othervieweroffset"]))
- # }
-
- if (system("[ -f " framepath frame" ]")!=0)
- exit 0
-
- print "story="argtab["story"]
- print "f="f s
- print "e="e
- print "frame="frame
- print "alt="alt
- print "title="title
- if(ongtime!="")
- print "ongtime="ongtime
-
- max_enhance=int(argtab["enhance"])
-
-
- if(max_enhance>0)
- {
- for(i=0;i<=max_enhance;++i)
- {
- # if(sf!="")
- enhancedframe = framedir sprintf(argtab["frame"(i>0?"-"i:"")],f,s)
- # else
- # enhancedframe = framedir sprintf(argtab["frame"(i>0?"-"i:"")],f)
-
- if (system("[ -f " framepath enhancedframe" ]")==0)
- print "enhance-"i"="argtab["enhance-"i]
- }
- }
-
- for(i=1; i<=99; ++i)
- {
- noticepost=noticepath argtab["story"]"-"sprintf("%04u",f)"-"sprintf("%02u",i)
- for(j=0;(getline line < noticepost)>0;++j)
- {
- gsub(/[\r\n]/,"",line)
- eq=index(line,"=")
- noticetab[substr(line, 1, eq-1)]=substr(line, eq+1)
- }
- if(j==0)
- break;
- nposttime=noticetab["y"]noticetab["m"]noticetab["d"]noticetab["h"]
- if (thistime<nposttime)
- break;
- print "notice-"i"=yes"
- }
-
- if(argtab["otherviewerurl"]!="")
- print "otherviewerurl="otherviewerurl
-
- if(argtab["BBHTML"]!="")
- print "BBHTML="argtab["BBHTML"]
- if(argtab["HTML"]!="")
- print "HTML="argtab["HTML"]
-
- if (argtab["text"] != "")
- {
- print""
- print argtab["text"]
- }
- }
-
-}
-
-function unhtml(ht ,i,j,un,num)
-{
- gsub(/<br[ \t]*\/?>/,"\n",ht)
- while ((i=match(ht, /&#[0-9]+;/))!=0)#
- {
- un=un substr(ht, 1, i-1)
- ht=substr(ht, i)
- j=index(ht, ";")
- num=int(substr(ht, 3, j-3))
- un=un sprintf("%c",num)
- ht=substr(ht, j+1)
- }
- un=un ht
- return un
-}
+++ /dev/null
-// info.c (1190.bicyclesonthemoon.info/aftertime/info)
-// Info about an aftertime story.
-// 3.01.2019
-//
-// Copyright (C) 2016, 2019 Balthasar Szczepański
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Affero General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Affero General Public License for more details.
-//
-// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-#define STORYDEF_PRINTF "/eizm/data/aftertime/%s/settings"
-#define MAWK_PATH "/usr/bin/mawk"
-#define AWK_INFO "/eizm/pro/aftertime/info.awk"
-
-#include <cgi.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/wait.h>
-
-s_cgi *cgi;
-
-void escape(char *text);
-
-int main (int argc, char *argv[])
-{
- s_cgi *cgi;
- pid_t sub;
- int r;
-
- char *story;
- char *f;
- char *enh;
- char *notic;
-
- char arg1[256];
- char arg2[256];
- char arg3[256];
- char arg4[256];
- char storydef[256];
-
- cgi=cgiInit();
-
- //setvbuf(stdout, NULL, _IONBF, 0);
- //dup2(fileno(stdout),fileno(stderr));
-
- story=cgiGetValue(cgi,"story");
- f=cgiGetValue(cgi,"f");
- enh=cgiGetValue(cgi,"e");
- notic=cgiGetValue(cgi,"n");
-
- if(story!=NULL)
- escape(story);
-
- snprintf(arg1,256,"story=%s",story!=NULL ? story : "");
- snprintf(arg2,256,"frame=%s",f!=NULL ? f : "");
- snprintf(arg3,256,"enhance=%s",enh!=NULL ? enh : "");
- snprintf(arg4,256,"notice=%s",notic!=NULL ? notic : "");
-
- sprintf(storydef,STORYDEF_PRINTF,story!=NULL ? story : "time");
-
- printf("Content-type: text/plain; charset=utf-8\n\n");
-
- // if((story==NULL)&&(f==NULL)){
- // fputs("time\nprickly\npotm\nlucky\nbeany\nbean2\nt1i\nzodiac\nbftf\nt-1\nphys\n",stdout);
- // return 0;
- // }
-
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_INFO,"-v",arg1,"-v",arg2,"-v",arg3,"-v",arg4,storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- //if(r)
- //{
- // sprintf(storydef,STORYDEF_PRINTF,"default");
- // fflush(stdout);
- // sub=fork();
- // if(sub==0)
- // {
- // r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_INFO,"-v",arg1,"-v",arg1,"-v",arg1,storydef,(char *)0);
- // exit(r);
- // }
- // waitpid(sub,&r,0);
- //}
-
- return 0;
-}
-
-void escape(char *text){
- unsigned short i, len;
-
- len=strlen(text);
- for (i=0;i<len;++i)
- {
- if(text[i]=='/')
- text[i]='_';
- }
-}
LF=-lIL\r
LF2=-lcgi\r
\r
-all: frame mpview pleaseong post posted remove upload viewer info remapt-1 compare enable\r
-\r
-remove: remove.c verify.awk\r
- $(CC) $(CF) -o remove remove.c $(LF2)\r
-\r
-mpview: mpview.c mview.awk verify.awk makefile\r
- $(CC) $(CF) -o mpview mpview.c $(LF2)\r
-\r
-posted: posted.c posted.awk makefile\r
- $(CC) $(CF) -o posted posted.c $(LF2)\r
-\r
-post: post.cpp preview.awk bb2html.awk verify.awk makefile\r
- $(CC2) $(CF) -o post post.cpp $(LF2)\r
-\r
-viewer: viewer.c viewer.awk makefile\r
- $(CC) $(CF) -o viewer viewer.c $(LF2)\r
-\r
-info: info.c info.awk makefile\r
- $(CC) $(CF) -o info info.c $(LF2)\r
-\r
-frame: frame.c frame.awk makefile\r
- $(CC) $(CF) -o frame frame.c $(LF2)\r
-\r
-upload: upload.c upload.awk makefile\r
- $(CC) $(CF) -o upload upload.c $(LF2)\r
-\r
-pleaseong: pleaseong.c bot4.awk post.awk mpost.awk makefile\r
- $(CC) $(CF) -o pleaseong pleaseong.c $(LF2)\r
+all: mremapt-1 compare\r
\r
remapt-1: remapt-1.c makefile\r
$(CC) $(CF) $(LF) -o remapt-1 remapt-1.c\r
\r
compare: compare.c makefile\r
$(CC) $(CF) $(LF) -o compare compare.c\r
-\r
-enable: frame mpview pleaseong post posted remove upload viewer info\r
- chmod u+s,g+s frame mpview pleaseong post posted remove upload viewer info\r
+++ /dev/null
-#// mpost.awk\r
-#// The tool to post to the mirror\r
-#// 08.04.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-BEGIN{\r
- FS="="\r
- fora="http://1190.bicyclesonthemoon.info/ott"\r
- useragent="\"bothasar_p (http://1190.bicyclesonthemoon.info/aftertime; time after Time post bot)\""\r
-};\r
-{\r
- argtab[$1]=$2\r
-};\r
-END{\r
- printf ("username=%s",argtab["username"])>postfile\r
- printf ("&password=%s",argtab["password"])>>postfile\r
- printf ("&subject=%s",argtab["subject"])>>postfile\r
- if("&addbbcode20" in argtab)\r
- printf ("&addbbcode20=%s",argtab["addbbcode20"])>>postfile\r
- printf ("&message=%s",argtab["message"])>>postfile\r
- printf ("&post=%s","Submit")>>postfile\r
- if("disable_bbcode" in argtab)\r
- printf ("&disable_bbcode=%s",argtab["disable_bbcode"])>>postfile\r
- if("disable_smilies" in argtab)\r
- printf ("&disable_smilies=%s",argtab["disable_smilies"])>>postfile\r
- if("disable_magic_url" in argtab)\r
- printf ("&disable_magic_url=%s",argtab["disable_magic_url"])>>postfile\r
- if("attach_sig" in argtab)\r
- printf ("&attach_sig=%s",argtab["attach_sig"])>>postfile\r
- if("notify" in argtab)\r
- printf ("¬ify=%s",argtab["notify"])>>postfile\r
- printf ("&creation_time=%s",argtab["creation_time"])>>postfile\r
- printf ("&form_token=%s",argtab["form_token"])>>postfile\r
- close(postfile)\r
- \r
- if(system("wget -q -t 3 --connect-timeout=60 --post-file=" postfile " -U " useragent " -O " tempfile " \""fora "/post\""))\r
- {\r
- print "Submit fail."\r
- exit 1\r
- }\r
- \r
- while((getline temp < tempfile)>0)\r
- {\r
- if (temp ~ /<p class=.error/)\r
- {\r
- print temp\r
- print "POST IMPOSSIBLE!"\r
- exit 2\r
- }\r
- if (tolower(temp) ~ /<h2>information/)\r
- {\r
- success=1\r
- }\r
- }\r
- close(tempfile)\r
- \r
- if (success!=1)\r
- {\r
- print "Sent back to preview!"\r
- exit INDELIVERABLE\r
- }\r
-}\r
+++ /dev/null
-// mpview.c (1190.bicyclesonthemoon.info/aftertime/view)\r
-// Display one post\r
-// 28.03.2015\r
-// \r
-// Copyright (C) 2015 Balthasar Szczepański\r
-// \r
-// This program is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU Affero General Public License as\r
-// published by the Free Software Foundation, either version 3 of the\r
-// License, or (at your option) any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-// GNU Affero General Public License for more details.\r
-// \r
-// You should have received a copy of the GNU Affero General Public License\r
-// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-#include <cgi.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <unistd.h>\r
-#include <sys/wait.h>\r
-\r
-#define RM_PATH "/bin/rm"\r
-#define CAT_PATH "/bin/cat"\r
-#define MAWK_PATH "/usr/bin/mawk"\r
-\r
-#define POST_PATH "/eizm/mem/aftertime/mpost/"\r
-\r
-#define AWK_MVIEW "/eizm/pro/aftertime/mview.awk"\r
-#define TEMP_PATH "/eizm/tmp/aftertime/mpview."\r
-\r
-int main()\r
-{\r
- s_cgi *cgi;\r
- pid_t sub;\r
- int r;\r
- \r
- char line[32];\r
- // char filename[32];\r
- char postpath[256];\r
- // char cat[8];\r
- \r
- char *arg;\r
- char key[64];\r
- \r
- char path2[256];\r
- \r
- cgi=cgiInit();\r
- \r
- printf("Content-type: text/html\n\n");\r
- \r
- arg=cgiGetValue(cgi,"v");\r
- sprintf(line,"%s",arg?arg:"???");\r
- \r
- arg=cgiGetValue(cgi,"key");\r
- sprintf(key,"key=%s",arg?arg:"???");\r
- \r
- // sprintf(filename,"%s",line);\r
- sprintf(postpath,"%s%s",POST_PATH,line);//UNSAFE! (2019)\r
-\r
- \r
- sprintf(path2,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
- \r
- printf("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"\">\n");\r
- printf("<html lang=\"en\"><head>\n");\r
- printf("<title>time after Time • Bicycles on the Moon</title>\n");\r
- printf("<meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\">\n");\r
- printf("<link rel=\"icon\" type=\"image/png\" href=\"/img/favicon.png\">\n");\r
- printf("<link rel=\"stylesheet\" href=\"/css/botm.css\">\n");\r
- printf("<script type=\"text/javascript\" src=\"/ott/prosilver/template/forum_fn.js\"></script>\n");\r
- printf("</head><body><a href=\"/\"><img src=\"/img/botmlogo2.png\" alt=\"1190.bicyclesonthemoon.info\" border=\"0\"></a>\n");\r
- printf("<h1>time after Time</h1>\n");\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_MVIEW,"-v","bg=1","-v","s=1","-v",key,postpath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- {\r
- printf("<div id=\"%s\" class=\"post bg1\">\n",line);\r
- printf("<div class=\"inner\"><span class=\"corners-top\"><span></span></span>\n");\r
- printf("%s %s POST NOT FOUND.\n",AWK_MVIEW,postpath);\r
- printf("<span class=\"corners-bottom\"><span></span></span>\n</div></div>\n");\r
- printf("<hr class=\"divider\"></hr>\n");\r
- }\r
- \r
- printf("<a href=\"/aftertime/list\">back to the list</a><br>\n");\r
- printf("<br><a href=\"/\">1190.bicyclesonthemoon.info</a></body></html>\n");\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",path2,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- printf("<p>Ch*rpin* M*stard! file not deleted!</p>");\r
- \r
- return 0;\r
-}\r
+++ /dev/null
-#// mview.awk\r
-#// Display one post\r
-#// 31.04.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- FS="="\r
-};\r
-{\r
- eq=index($0,"=")\r
- argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
-};\r
-END{\r
- if(key!=argtab["key"])\r
- {\r
- print"<b class=\"br\">Invalid key.</b><br><br>"\r
- exit\r
- }\r
- print "<div id=\""argtab["timenumber"]"\" class=\"pl\">"\r
- print "<div class=\"pls\">"argtab["story"]"-"argtab["frame"]"-"argtab["round"]" • "argtab["subject_h"]"</div>"\r
- print "<div class=\"plt\">"argtab["username_h"]" • "argtab["y"]"-"argtab["m"]"-"argtab["d"]" "argtab["h"]":00 <div class=\"pr\"><a class=\"bi\" href=\"/aftertime/post?q="argtab["timenumber"]"&key="argtab["key"]"\">quote</a> <a class=\"bi\" href=\"/aftertime/post?e="argtab["timenumber"]"&key="argtab["key"]"\">edit</a> <a class=\"bi\" href=\"/aftertime/remove?r="argtab["timenumber"]"&key="argtab["key"]"\">remove</a>"(argtab["ID"]!=""?" <a class=\"bi\" href=\"http://forums.xkcd.com/viewtopic.php?p="argtab["ID"]"#p"argtab["ID"]"\">OTT</a>":"")"</div></div>"\r
- print "<div class=\"plw\">"((argtab["HTML"]!="")?argtab["HTML"]:argtab["BBHTML"])"</div>"\r
- print "</div>"\r
-}\r
+++ /dev/null
-#// ong-bsta.awk
-#// The bot to ketchup frames from the bsta viewer
-#// 6.09.2019
-#//
-#// Copyright (C) 2019 Balthasar Szczepański
-#//
-#// This program is free software: you can redistribute it and/or modify
-#// it under the terms of the GNU Affero General Public License as
-#// published by the Free Software Foundation, either version 3 of the
-#// License, or (at your option) any later version.
-#//
-#// This program is distributed in the hope that it will be useful,
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-#// GNU Affero General Public License for more details.
-#//
-#// You should have received a copy of the GNU Affero General Public License
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.
-#//
-
-BEGIN{
- FS=""
- framepath="/eizm/www/time/"
- datapath="/eizm/data/aftertime/"
- temppath="/eizm/tmp/aftertime/"
- passpath="/eizm/mem/aftertime/pass/"
-
- bstapath="/eizm/data/bsta/"
- bstaviewpath="/eizm/www/time/bsta/"
-
- timecmd="date -u +%Y%m%d%H%s"
- timecmd2="date -u +\"%Y-%m-%d %H:%M:%S\""
- ongtimecmd1="date -u -d@"
- ongtimecmd2=" +\"%Y-%m-%d %H:%M:%S\""
-
- botcastleurl="http://1190.bicyclesonthemoon.info"
-
- cp="/bin/cp"
- mawk="/usr/bin/mawk"
- chmod="/bin/chmod"
-
- # wget="/usr/bin/wget"
- # remap="/eizm/pro/aftertime/remapt-1"
- npb="/eizm/pro/ong1/npb"
- # bot4awk="/eizm/pro/aftertime/bot4.awk"
- # uploadawk="/eizm/pro/aftertime/upload.awk"
-
- timecmd2 | getline thistime2
- close(timecmd2)
-
- for(i=0;i<256;++i)
- {
- ch=sprintf("%c",i)
- hex=sprintf("%02X",i)
- dec=sprintf("%u",i)
- ch2hex[ch]=hex
- ch2dec[ch]=dec
- }
-}
-{
- file=1
- gsub(/[\r\n]/, "", $0)
- eq=index($0, "=")
-
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)
-}
-END{
- print ""
- print thistime2" "argtab ["story"]
-
- if (file=="")
- {
- print "No data."
- exit 1
- }
-
- if(argtab["ongoing"]!="2")
- {
- print "Story is not externally onged."
- exit 1
- }
-
- framedir = "aftertime/"argtab["story"]"/"
-
- temp=""
- statefile= datapath argtab["story"]"/ongstate"
- getline temp < statefile
- getline alt < statefile
- close(statefile)
-
- split(temp, temptab, " ")
- state=int(temptab[1])
- last=int(temptab[2])
- nextong=int(temptab[3])
- ongfailcount=int(temptab[4])
-
- if(state==4)
- {
- print "Time to start onging."
- f=int(argtab["first"])
- }
- else if (state==2 || state==1)
- f=last+1
- else
- {
- print "Onging not avtive."
- exit 1
- }
-
- bstasettingsfile = bstapath "settings"
- bstastatefile = bstapath "state"
- bstadefaultfile = bstapath "default"
-
- bstaargtab[0]=""
- specialtab[0]=""
- attachtab[0]=""
-
- timefile= datapath argtab["story"]"/ongtime"
-
- while(1)
- {
- bstaspecialfile = bstapath f
- specialfile = datapath argtab["story"]"/"sprintf(argtab["special"],f)
-
- for (i in bstaargtab)
- delete bstaargtab[i]
-
- readdatafile(bstasettingsfile,bstaargtab)
- readdatafile(bstastatefile,bstaargtab)
- readdatafile(bstadefaultfile,bstaargtab)
- readdatafile(bstaspecialfile,bstaargtab)
-
- # for (i in bstaargtab)
- # print i": "bstaargtab[i]
-
- if (f > int(bstaargtab["last"])) {
- print "Wait for frame "f"."
- exit 0
- }
-
- print "ONG frame "f"."
-
- for (i in specialtab)
- delete specialtab[i]
-
- #skip NPB frame
-
- specialtab["title"]=bstaargtab["title"]
- # specialtab["alt"]=bstaargtab["title"]
- specialtab["frame"]=sprintf(bstaargtab["frame"],f,bstaargtab["ext"])
- specialtab["text"]=bstaargtab["content"]
-
- inframe = bstaviewpath specialtab["frame"]
- frame= framepath framedir specialtab["frame"]
-
-
- text_HTML=""
- text_BB=""
- text=specialtab["text"]
-
- while (text!="")
- {
- eq=match(text,/(###([^#;]*);)/)
-
- if(eq)
- {
- text_HTML=text_HTML substr(text, 1, RSTART - 1)
- text_BB = text_BB substr(text, 1, RSTART - 1)
- tag = substr(text, RSTART +3, RLENGTH -4)
- text= substr(text, RSTART + RLENGTH)
-
- if (match(tag,/^fr&([0-9]+)$/))
- {
- id=int(substr(tag,4))
-
- tag="/aftertime/frame?story="arrtab["story"]"&f="id
- text_HTML=text_HTML tag
- text_BB=text_BB botcastleurl tag
- }
- else if (match(tag,/^vw&([0-9]+)$/))
- {
- id=int(substr(tag,4))
-
- tag="/aftertime/viewer?story="arrtab["story"]"&f="id
- text_HTML=text_HTML tag
- text_BB=text_BB botcastleurl tag
-
- }
- else if (match(tag,/^att&([0-9]+)$/))
- {
- id=int(substr(tag,5))
-
- print "ONG attachment "id"."
-
- attachfile=bstapath"a"id
- for (i in attachtab)
- delete attachtab[i]
- readdatafile(attachfile, attachtab)
-
- outfile=framepath framedir attachtab["filename"]
- infile= bstapath attachtab["filename"]
-
- cpcmd = cp" "infile" "outfile
- chmodcmd = chmod" +r "outfile
-
- if (attachtab["content"]!="")
- {
- printf("%s",attachtab["content"]) > outfile
- close(outfile)
- }
- else if(system(cpcmd)!=0)
- {
- print "Attachment upload failed."
- exit 1
- }
-
- if(system(chmodcmd)!=0)
- {
- print "Attachment chmod failed."
- exit 1
- }
-
- tag="/aftertime/"argtab["story"]"/"attachtab["filename"]
- text_HTML=text_HTML tag
- text_BB=text_BB botcastleurl tag
- }
- else
- {
-
- }
-
- }
-
- else
- {
- text_HTML = text_HTML text
- text_BB = text_BB text
- text = ""
- }
-
- }
-
- # print text_HTML
- # print text_BB
-
- debug=""
- specialtab["HTML"]=bb2html(text_HTML)
- specialtab["BBHTML"]=bb2bb(text_BB)
-
- cpcmd = cp" "inframe" "frame
- chmodcmd = chmod" +r "frame
-
- ongtimecmd= ongtimecmd1 bstaargtab["ongtime"] ongtimecmd2
- ongtimecmd | getline ongtime
- close(ongtimecmd)
-
- print ongtime
-
- if (state==4)
- print sprintf("%04u ",f)ongtime > timefile
- else
- print sprintf("%04u ",f)ongtime >> timefile
- close(timefile)
-
- if(system(cpcmd)!=0)
- {
- print "Frame upload failed."
- exit 1
- }
-
- if(system(chmodcmd)!=0)
- {
- print "Frame chmod failed."
- exit 1
- }
-
- # print debug
-
- for (i in specialtab)
- {
- if (i!="text")
- print i"="specialtab[i] > specialfile
- }
- print "" > specialfile
- if (specialtab["text"]!="")
- printf("%s",specialtab["text"]) > specialfile
- close (specialfile)
-
-
- print sprintf("%u %u %u %u",2,f,0,0) > statefile
- close (statefile)
-
- state=2
- ++f
-
- # exit 0
- }
-}
-
-#limited compatibility with bsta data file format
-function readdatafile (datafile, argtab, line,undertext,eq)
-{
- line=""
- while((getline line < datafile)>0)
- {
- \r gsub(/[\r\n]/, "", line)
-
- if (line == "" && !undertext)
- {
- undertext=1
- argtab["content"]=""
- }
- else if (undertext)
- {
- argtab["content"] = argtab["content"] line "\n"
- }
- else
- {
- eq = match(line, /(: |=)/)
-
- if (eq!=0) {
- argtab[substr(line, 1, RSTART - 1)]=substr(line, RSTART + RLENGTH)
- }
- }
- }
- close (datafile)
-
- # return bstaargtab
-}
-
-function bb2bb (text)
-{
- gsub(/\[(fq|tq)\]/, "[quote]", text)
- gsub(/\[\/(fq|tq)\]/, "[/quote]", text)
- gsub(/\[br\]/, "[color=#BB6622]", text)
- gsub(/\[ni\]/, "[color=#0057AF]", text)
- gsub(/\[po\]/, "[color=#FF8800]", text)
- gsub(/\[\/(br|ni|po)\]/, "[/color]", text)
-
- return htmlescape(text,"","br")
-}
-
-function bb2html(text, depth,count,bbtree,html,tag,tagstart,taglength,elm,tagv,tagname,tagvalue,matchname)
-{
- depth=0
- count[0]=1
- bbtree["0"]=""
- bbtree["0.n"]=0
- bbtree["0.t"]="post"
- bbtree["0.v"]=argtab["subject"]
- html=""
- # gsub(/=/,"=",text)
- debug = debug "\n\nBuild BBcode tree:"
- while(length(text)!=0)
- {
- tag=match(text, /\[\/?[a-z0-9\*]+(=(([^\[<>\"\]]*)|(\"[^\"<>]*\")))?\]/)
- #"#\""
- if (tag==0)
- {
- debug = debug "\ntext: " text
- bbtree[ind(count,depth)]=text
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- text=""
- break;
- }
- tagstart=RSTART
- taglength=RLENGTH
- if(tagstart>1)
- {
- elm=substr(text,1,tagstart-1)
- debug = debug "\ntext: " elm
- bbtree[ind(count,depth)]=elm
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- }
- tag=substr(text,tagstart,taglength)
- text=substr(text,tagstart+taglength)
- debug = debug "\ntag: " tag
- if(tag!~/^\[\//)
- {
- tagv=index(tag,"=")
- if(tagv<2)
- {
- tagname=substr(tag,2,length(tag)-2)
- tagvalue=""
- }
- else
- {
- tagname=substr(tag,2,tagv-2)
- tagvalue=substr(tag,tagv+1,length(tag)-tagv-1)
- }
- if(tagname !~ /^((fq)|(tq)|(ni)|(po)|(quote)|b|i|u|(code)|(img)|(url)|(size)|(color)|(center)|(right)|(sub)|(sup)|(s)|(spoiler)|(list)|(br)|(\*))$/)
- {
- debug = debug "\nunknown tag"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||bbtree[indt(count,depth)".t"] == "img"||(bbtree[indt(count,depth)".t"] == "spoiler" && tagname=="spoiler")||(bbtree[indt(count,depth)".t"] == "size" && tagname=="size"))
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if(tagname=="*")
- {
- if(bbtree[indt(count,depth)".t"]==tagname)
- {
- debug = debug "\nimplied tag: [/"tagname"]"
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]="[/"tagname"]"
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]=tagname
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- else if(bbtree[indt(count,depth)".t"]!="list")
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- }
- debug = debug "\nname: " tagname " value: " tagvalue
- bbtree[ind(count,depth)]=tagname" "tagvalue
- bbtree[ind(count,depth)".k"]="s"
- bbtree[indt(count,depth)".n"]=count[depth]
- ++depth
- count[depth]=1
- bbtree[indt(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=0
- bbtree[indt(count,depth)".t"]=tagname
- bbtree[indt(count,depth)".v"]=tagvalue
-
- # if(tagname=="br") #or other single tags in the future
- # {
- # debug = debug "\nmatched"
- # bbtree[ind(count,depth)]=tag
- # bbtree[ind(count,depth)".k"]="e"
- # bbtree[ind(count,depth)".m"]=1
- # bbtree[ind(count,depth)".t"]=tagname
- # bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- # bbtree[indt(count,depth)".n"]=count[depth]
- # bbtree[indt(count,depth)".m"]=1
- # count[depth]=""
- # --depth
- # ++count[depth]
- # }
- }
- else
- {
- if(depth<=0)
- {
- debug = debug "\n""unmatched"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- tagname=substr(tag,3,length(tag)-3)
- if(tagname=="list"&&bbtree[indt(count,depth)".t"]=="*")
- {
- debug = debug "\nimplied tag: [/*]"
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]="[/*]"
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]="*"
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- debug = debug "\nname: " tagname
- matchname=bbtree[indt(count,depth)".t"]
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||(bbtree[indt(count,depth)".t"] == "img" && tagname != "img"))
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if(tagname!=matchname)
- {
- debug = debug "\nmismatched: " matchname
- # bbtree[ind(count,depth)]=tag
- # bbtree[indt(count,depth)".n"]=count[depth]
- # ++count[depth]
- # continue
- bbtree[ind(count,depth)]=tag
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".t"]=bbtree[indt(count,depth)".t"]
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- count[depth]=""
- --depth
- ++count[depth]
- continue
- }
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]=tag
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]=tagname
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- }
- if(depth>0)
- debug = debug "\nunclosed tags: " depth
-
- debug = debug "\n\n""generate HTML:"
- depth=0
- count[0]=0
- while(count[0]<=bbtree["0.n"]&&depth>=0)
- {
- if(count[depth]==0)
- {
- tag=bbtree[indt(count,depth)]
- tagname=bbtree[indt(count,depth)".t"]
- tagvalue=bbtree[indt(count,depth)".v"]
- debug = debug "\nname: "tagname" value: "tagvalue" elements: "bbtree[indt(count,depth)".n"]
- if(tagname == "post")
- {
- }
- else if(bbtree[indt(count,depth)".m"]=="")
- {
- debug = debug "\nunmatched"
- html = html htmlescape(tag)
- }
- else if(tagname == "quote")
- {
- if (tagvalue=="")
- {
- html = html "<blockquote class=\"pq\"><div>"
- }
- else
- {
- if(tagvalue !~ /^\".*\"$/)
- #"#\""
- tagvalue="You forgot about the quote marks, "htmlescape(tagvalue)
- else
- tagvalue=bb2html(substr(tagvalue,2,length(tagvalue)-2))
- html = html "<blockquote class=\"pq\"><div><cite class=\"pq\"><b class=\"br\">"tagvalue"</b> wrote:</cite><br>"
- }
- }
- else if (tagname == "fq")
- {
- html = html"<div class=\"fq\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "tq")
- {
- html = html"<div class=\"tq\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "br")
- {
- html = html"<span class=\"br\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "ni")
- {
- html = html"<span class=\"ni\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "po")
- {
- html = html"<span class=\"po\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "b")
- {
- html = html"<span style=\"font-weight: bold\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "i")
- {
- html = html"<span style=\"font-style: italic\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "u")
- {
- html = html"<span style=\"text-decoration: underline\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "code")
- {
- if(bbtree[indtu(count,depth)".t"] == "code")
- {
- html=html htmlescape(tag)
- debug = debug "\nnot a tag, actually"
- }
- else
- {
- html=html"<dl class=\"pq\"><dt class=\"pq\">Code: <a href=\"#\" onclick=\"selectCode(this); return false;\">Select all</a></dt><dd><code class=\"pq\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- }
- else if (tagname == "img")
- html=html"<img src=\""
- else if (tagname == "url")
- {
- if(tagvalue=="")
- {
- ++count[depth]
- tagvalue=bbtree[ind(count,depth)]
- --count[depth]
- debug = debug "\nimplied value: " tagvalue
- }
- html=html"<a href=\""htmlescape(tagvalue)"\" class=\"postlink\">"
- }
- else if (tagname == "size")
- {
- if (tagvalue==""||(tagvalue !~ /^[0-9]+$/)||(tagvalue+0)>200)
- html=html"<span style=\"font-size: 130%; line-height: 116%;\"> This tag should have a correct value. "
- else
- html=html"<span style=\"font-size: "htmlescape(tagvalue)"%; line-height: 116%;\">"
- }
- else if (tagname == "color")
- {
- if (tagvalue==""||tagvalue !~ /^#[0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]$/) #for some reason /^([0-9A-F]{6})$/ doesn't work.
- html=html"<span style=\"color: #EE0000\"> This tag should have a correct value. "
- else
- html=html"<span style=\"color: "htmlescape(tagvalue)"\">"
- }
- else if (tagname ~ /^((center)|(right))$/)
- {
- html=html"<div align=\""tagname"\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="s")
- {
- html=html"<strike>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="sub")
- {
- html=html"<sub>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="sup")
- {
- html=html"<sup>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname=="spoiler")
- {
- html=html"<div style=\"margin:20px; margin-top:5px\"><div class=\"quotetitle\"><b>Spoiler:</b> <input type=\"button\" class=\"pk\" value=\"Show\" style=\"width:45px;font-size:10px;margin:0px;padding:0px;\" onclick=\"if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }\" /></div><div class=\"quotecontent\"><div style=\"display: none;\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname=="list")
- {
- if(tagvalue=="")
- html=html"<ul>"
- else
- {
- if (tagvalue=="1")
- tagvalue="decimal"
- else if (tagvalue=="i")
- tagvalue="lower-roman"
- else if (tagvalue=="I")
- tagvalue="upper-roman"
- else if (tagvalue=="a")
- tagvalue="lower-alpha"
- else if (tagvalue=="A")
- tagvalue="upper-alpha"
- else
- {
- html=html"This tag should have a correct value. "
- tagvalue="decimal"
- }
- html=html"<ol style=\"list-style-type: "tagvalue"\">"
- }
- }
- else if (tagname=="*")
- {
- html=html"<li>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- # else if (tagname == "br")
- # {
- # html = html"<br>"
- # if(tagvalue!="")
- # html=html"This tag shouldn't have any value. "
- # }
- else
- {
- debug = debug "\nunknown tag"
- html = html htmlescape(tag)
- }
- ++count[depth]
- }
- else if(bbtree[ind(count,depth)".k"]=="s")
- {
- debug = debug "\nentering tag:"
- ++depth
- count[depth]=0
- }
- else if(bbtree[ind(count,depth)".k"]=="e")
- {
- debug = debug "\nleaving tag:"
- tag=bbtree[ind(count,depth)]
- tagname=bbtree[ind(count,depth)".t"]
- tagvalue=bbtree[ind(count,depth)".v"]
- debug = debug "\nname: "tagname" value: "tagvalue
- if (tagname == "post")
- {
- }
- else if(bbtree[ind(count,depth)".m"]=="")
- {
- debug = debug "\nunmatched"
- html = html htmlescape(tag)
- }
- else if(tagname == "quote")
- html = html "</div></blockquote>"
- else if (tagname ~/^(b|i|u|(size)|(color)|(br)|(ni)|(po))$/)
- html = html"</span>"
- else if (tagname == "code")
- {
- if(bbtree[indtu(count,depth)".t"] == "code")
- {
- html=html htmlescape(tag)
- debug = debug "\nnot a tag, actually"
- }
- else
- html = html"</code></dd></dl>"
- }
- else if (tagname == "img")
- {
- html = html"\" alt=\"Image\" />"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if(tagname=="url")
- html=html"</a>"
- else if (tagname ~ /^((center)|(right)|(fq)|(tq))$/)
- html=html"</div>"
- else if (tagname =="s")
- html=html"</strike>"
- else if (tagname =="sub")
- html=html"</sub>"
- else if (tagname =="sup")
- html=html"</sup>"
- else if (tagname=="spoiler")
- html=html"</div></div></div>"
- else if (tagname=="list")
- {
- if (tagvalue=="")
- html=html"</ul>"
- else
- html=html"</ol>"
- }
- else if (tagname=="*")
- html=html"</li>"
- # else if (tagname == "br") #
- # {
- # #
- # }
- else
- {
- debug = debug "\nunknown tag"
- html = html htmlescape(tag)
- }
- count[depth]=""
- --depth
- ++count[depth]
- }
- else if(count[depth]>bbtree[indt(count,depth)".n"])
- {
- debug = debug "\nrun out of elements in this tag; leaving"
- count[depth]=""
- --depth
- ++count[depth]
- }
- else
- {
- tag=bbtree[ind(count,depth)]
- debug = debug "\ntext: "tag
-
- tag=htmlescape(tag,"","br")
-
- if(bbtree[indt(count,depth)".t"] == "code")
- {
- gsub(/ /,"\\ ",tag)
- gsub(/\t/,"\\ \\ ",tag)
- }
- else{
- gsub(/ /,"\\ ",tag)
- gsub(/ /," \\ ",tag)
- # gsub(/<br> /,"<br>\\ ",tag)
- }
-
-
- if(nourl==""&& bbtree[indt(count,depth)".t"] !~ /^((code)|(img)|(url))$/)
- gsub(/https?:\/\/[^\n\r\t<> ]+/,"<a href=\"&\" class=\"postlink\">&</a>",tag)
- # if(nosmil=="" && bbtree[indt(count,depth)".t"] !~ /^((code)|(img))$/)
- # {
- # gsub(/(^|[\n\r\t ]):D($|[\n\r\t ])/," <img title=\"Very Happy\" alt=\":D\" src=\"http://forums.xkcd.com/images/smilies/icon_biggrin.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\)($|[\n\r\t ])/," <img title=\"Smile\" alt=\":)\" src=\"http://forums.xkcd.com/images/smilies/icon_smile.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\(($|[\n\r\t ])/," <img title=\"Sad\" alt=\":(\" src=\"http://forums.xkcd.com/images/smilies/icon_sad.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):o($|[\n\r\t ])/," <img title=\"Surprised\" alt=\":o\" src=\"http://forums.xkcd.com/images/smilies/icon_surprised.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):shock:($|[\n\r\t ])/," <img title=\"Shocked\" alt=\":shock:\" src=\"http://forums.xkcd.com/images/smilies/icon_eek.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\?($|[\n\r\t ])/," <img title=\"Confused\" alt=\":?\" src=\"http://forums.xkcd.com/images/smilies/icon_confused.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ])8-\)($|[\n\r\t ])/," <img title=\"Cool\" alt=\"8-)\" src=\"http://forums.xkcd.com/images/smilies/icon_cool.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):lol:($|[\n\r\t ])/," <img title=\"Laughing\" alt=\":lol:\" src=\"http://forums.xkcd.com/images/smilies/icon_lol.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):x($|[\n\r\t ])/," <img title=\"Mad\" alt=\":x\" src=\"http://forums.xkcd.com/images/smilies/icon_mad.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):P($|[\n\r\t ])/," <img title=\"Razz\" alt=\":P\" src=\"http://forums.xkcd.com/images/smilies/icon_razz.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):oops:($|[\n\r\t ])/," <img title=\"Embarassed\" alt=\":oops:\" src=\"http://forums.xkcd.com/images/smilies/icon_redface.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):cry:($|[\n\r\t ])/," <img title=\"Crying or Very Sad\" alt=\":cry:\" src=\"http://forums.xkcd.com/images/smilies/icon_cry.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):evil:($|[\n\r\t ])/," <img title=\"Evil or Very Mad\" alt=\":evil:\" src=\"http://forums.xkcd.com/images/smilies/icon_evil.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):twisted:($|[\n\r\t ])/," <img title=\"Twisted Evil\" alt=\":twisted:\" src=\"http://forums.xkcd.com/images/smilies/icon_twisted.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):roll:($|[\n\r\t ])/," <img title=\"Rolling Eyes\" alt=\":roll:\" src=\"http://forums.xkcd.com/images/smilies/icon_rolleyes.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):wink:($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]);\)($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):!:($|[\n\r\t ])/," <img title=\"Exclamation\" alt=\":!:\" src=\"http://forums.xkcd.com/images/smilies/icon_exclaim.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\?:($|[\n\r\t ])/," <img title=\"Question\" alt=\":?:\" src=\"http://forums.xkcd.com/images/smilies/icon_question.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):idea:($|[\n\r\t ])/," <img title=\"Idea\" alt=\":idea:\" src=\"http://forums.xkcd.com/images/smilies/icon_idea.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):arrow:($|[\n\r\t ])/," <img title=\"Arrow\" alt=\":arrow:\" src=\"http://forums.xkcd.com/images/smilies/icon_arrow.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\|($|[\n\r\t ])/," <img title=\"Neutral\" alt=\":|\" src=\"http://forums.xkcd.com/images/smilies/icon_neutral.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):mrgreen:($|[\n\r\t ])/," <img title=\"Mr. Green\" alt=\":mrgreen:\" src=\"http://forums.xkcd.com/images/smilies/icon_mrgreen.gif\" /> ",tag)
- # }
-
- html = html tag
- ++count[depth]
- }
- }
- debug = debug "\ndone\n"
- return html
-}
-
-function ind(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<=depth;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- # debug = debug "\n" iindex
- return iindex
-}
-function indt(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<depth;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- if(depth>0)
- iindex=iindex"."
- iindex = iindex "0"
- # debug = debug "\n" iindex
- return iindex
-}
-function indtu(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<depth-1;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- if(depth>0)
- iindex=iindex"."
- iindex = iindex "0"
- # debug = debug "\n" iindex
- return iindex
-}
-function htmlescape(name,less,br, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1);
- if(ch == "\n")
- escaped = escaped ((br!="")?"<br>":"&#"ch2dec[ch]";")
- else if(ch =="\r")
- escaped = escaped ((br!="")?"":"&#"ch2dec[ch]";")
- else if(ch == "\"" && less=="")
- escaped = escaped "&#"ch2dec[ch]";"
- else if(ch ~ /[=<>&]/)
- escaped = escaped "&#"ch2dec[ch]";"
- else
- escaped = escaped ch
- }
- return escaped
-}
-function hexencode(name, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1)
- escaped = escaped ch2hex[ch]
- }
- return escaped
-}
-
+++ /dev/null
-#// ong-mscha-t-1.awk\r
-#// The bot to ketchup frames from the mschaviewer, and enhance by remapping\r
-#// 12.02.2019\r
-#// \r
-#// Copyright (C) 2015, 2019 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-#//\r
-BEGIN{\r
- FS=""\r
- framepath="/eizm/www/time/"\r
- datapath="/eizm/data/aftertime/"\r
- temppath="/eizm/tmp/aftertime/"\r
- passpath="/eizm/mem/aftertime/pass/"\r
- \r
- timecmd="date -u +%Y%m%d%H%s"\r
- \r
- cp="/bin/cp"\r
- mawk="/usr/bin/mawk"\r
- wget="/usr/bin/wget"\r
- remap="/eizm/pro/aftertime/remapt-1"\r
- npb="/eizm/pro/ong1/npb"\r
- bot4awk="/eizm/pro/aftertime/bot4.awk"\r
- uploadawk="/eizm/pro/aftertime/upload.awk"\r
-}\r
-{\r
- file=1\r
- gsub(/[\r\n]/, "", $0)\r
- eq=index($0, "=")\r
- \r
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)\r
-}\r
-END{\r
- \r
- if (file=="")\r
- {\r
- print "No data."\r
- exit 1\r
- }\r
- \r
- if(argtab["ongoing"]!="2")\r
- {\r
- print "Story is not externally onged."\r
- exit 1\r
- }\r
- \r
- # timecmd | getline thistime\r
- # close(timecmd)\r
- \r
- statefile= datapath argtab["story"]"/ongstate"\r
- passfile= passpath argtab["story"]\r
- getline temp < statefile\r
- getline alt < statefile\r
- close(statefile)\r
- \r
- split(temp, temptab, " ")\r
- state=int(temptab[1])\r
- last=int(temptab[2])\r
- \r
- f=last+1\r
- \r
- nextstate="2"\r
- \r
- tempfile = temppath "ongmscha-"argtab["story"]"--1"\r
- tempfile2 = temppath "ongmscha-"argtab["story"]"--2"\r
- optionfile = datapath argtab["story"]"/settings"\r
- framedir = "aftertime/"argtab["story"]"/"\r
- \r
- # system("sleep 15")\r
- while(1)\r
- {\r
- \r
- \r
- timecmd | getline thistime\r
- close(timecmd)\r
- \r
- timetext = substr(thistime,1,10);\r
- timenumber = substr(thistime,11);\r
- \r
- print f" "timetext" "timenumber\r
- \r
- newalt=""\r
- frameurl= sprintf(argtab["otherviewerframe"],f)\r
- viewerurl= sprintf(argtab["otherviewerurl"],f)\r
- \r
- frame= framepath framedir sprintf(argtab["frame"],f)\r
- npbframe= framepath framedir sprintf(argtab["npbframe"],f)\r
- \r
- remapframe= framepath framedir sprintf(argtab["frame-1"],f)\r
- npbremapframe= framepath framedir sprintf(argtab["npbframe-1"],f)\r
- \r
- getfcmd= wget " -q -O " frame " "frameurl\r
- getvcmd= wget " -q -O " tempfile " "viewerurl\r
- npbcmd= sprintf(npb " %s %s q",frame,npbframe)\r
- ongcmd= mawk" -f " bot4awk" -v story="argtab["story"]" -v frame="last" "optionfile\r
- ongremapcmd= mawk" -f " bot4awk" -v story="argtab["story"]" -v frame="last" -v enhance=1 "optionfile\r
- npbremapcmd= sprintf(npb " %s %s q",remapframe,npbremapframe)\r
- addhashcmd= mawk" -f "uploadawk" -v timenumber="timenumber" -v timetext="timetext" -v tempfile="tempfile" "tempfile2\r
- \r
- if(system(getfcmd)!=0)\r
- {\r
- print "Frame download failed: "getfcmd\r
- break\r
- }\r
- system("sleep 2")\r
- \r
- if(system(getvcmd)!=0)\r
- {\r
- print "Viewer download failed: "getvcmd\r
- break\r
- }\r
- system("sleep 1")\r
- \r
- foundalt=""\r
- foundpal=""\r
- while ((getline temp < tempfile) > 0)\r
- {\r
- if(index(temp,frameurl)!=0 && foundalt=="")\r
- {\r
- newalt=substr(temp,index(temp,"title=\"")+7)\r
- newalt=substr(newalt,1,index(newalt,"\"")-1)\r
- foundalt=1\r
- print "alt: "newalt\r
- }\r
- if(index(temp,"class=\"hash\"")!=0 && foundpal=="" )\r
- {\r
- pal=substr(temp,index(temp,">")+1)\r
- pal=substr(pal,1,index(pal,".")-1)\r
- foundpal=1\r
- print "pal: "pal\r
- }\r
- if(foundalt!="" && foundpal!="")\r
- break;\r
- }\r
- close(tempfile)\r
- # if(newalt=="")\r
- # break\r
- \r
- remapcmd= remap " "frame" "remapframe" "pal\r
- \r
- if(newalt!=alt)\r
- {\r
- print f"="newalt >> optionfile\r
- close(optionfile)\r
- }\r
- \r
- if(system(npbcmd)!=0)\r
- break\r
- \r
- last=f\r
- print "ONG "f" "((alt==newalt)?"":""newalt)\r
- \r
- if(system(remapcmd)==0)\r
- {\r
- if(system(npbremapcmd)!=0)\r
- break\r
- }\r
- \r
- if(foundpal){\r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- if(namef!="" &&passf !="")\r
- {\r
- print namef > tempfile2\r
- print passf > tempfile2\r
- print "" > tempfile2\r
- print argtab["story"]"#"f"#1" > tempfile2\r
- print "su" > tempfile2\r
- print substr(timetext,1,4)"-"substr(timetext,5,2)"-"substr(timetext,7,2)" "substr(timetext,9,2) > tempfile2\r
- print "Original filename" > tempfile2\r
- print "[code]"pal".png[/code]"> tempfile2\r
- print "" > tempfile2\r
- close (tempfile2)\r
- \r
- system(addhashcmd)\r
- }\r
- }\r
- \r
- # must be changed!\r
- # if (post!="")\r
- # {\r
- # system(ongcmd)\r
- # system("sleep 5")\r
- # system(ongremapcmd)\r
- # }\r
- \r
- alt=newalt\r
- \r
- print nextstate" "f > statefile\r
- print newalt > statefile\r
- close(statefile)\r
- \r
- ++f\r
- }\r
-}\r
+++ /dev/null
-#// ong-mscha.awk\r
-#// The bot to ketchup frames from the mshcaviewer\r
-#// 14.09.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- FS=""\r
- framepath="/eizm/www/time/"\r
- datapath="/eizm/data/aftertime/"\r
- temppath="/eizm/tmp/aftertime/"\r
- \r
- # timecmd="date +\"%H\""\r
- \r
- cp="/bin/cp"\r
- mawk="/usr/bin/mawk"\r
- wget="/usr/bin/wget"\r
- bot4awk="/eizm/pro/aftertime/bot4.awk"\r
-}\r
-{\r
- file=1\r
- gsub(/[\r\n]/, "", $0)\r
- eq=index($0, "=")\r
- \r
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)\r
-}\r
-END{\r
- \r
- if (file=="")\r
- exit 1\r
- \r
- if(argtab["ongoing"]!="2")\r
- exit 1\r
- \r
- # timecmd | getline thistime\r
- # close(timecmd)\r
- \r
- statefile= datapath argtab["story"]"/ongstate"\r
- getline temp < statefile\r
- getline alt < statefile\r
- close(statefile)\r
- \r
- split(temp, temptab, " ")\r
- state=int(temptab[1])\r
- last=int(temptab[2])\r
- \r
- f=last+1\r
- \r
- nextstate="2"\r
- \r
- tempfile = temppath "ongmscha-"argtab["story"]\r
- optionfile = datapath argtab["story"]"/settings"\r
- framedir = "aftertime/"argtab["story"]"/"\r
- \r
- while(1)\r
- {\r
- newalt=""\r
- frameurl= sprintf(argtab["otherviewerframe"],f)\r
- viewerurl= sprintf(argtab["otherviewerurl"],f)\r
- \r
- frame= framepath framedir sprintf(argtab["frame"],f)\r
- npbframe= framepath framedir sprintf(argtab["npbframe"],f)\r
- \r
- getfcmd= wget " -q -O " frame " "frameurl\r
- getvcmd= wget " -q -O " tempfile " "viewerurl\r
- npbcmd= sprintf("/eizm/pro/ong1/npb %s %s q",frame,npbframe)\r
- ongcmd = mawk" -f " bot4awk" -v story="argtab["story"]" -v frame="last" "optionfile\r
- \r
- # print getfcmd\r
- if(system(getfcmd)!=0)\r
- break\r
- \r
- \r
- # print getvcmd\r
- if(system(getvcmd)!=0)\r
- break\r
- \r
- while ((getline temp < tempfile) > 0)\r
- {\r
- if(index(temp,frameurl)!=0)\r
- {\r
- newalt=substr(temp,index(temp,"title=\"")+7)\r
- newalt=substr(newalt,1,index(newalt,"\"")-1)\r
- break\r
- }\r
- }\r
- close(tempfile)\r
- # if(newalt=="")\r
- # break\r
- \r
- \r
- if(newalt!=alt)\r
- {\r
- print f"="newalt >> optionfile\r
- close(optionfile)\r
- }\r
- \r
- # print npbcmd\r
- if(system(npbcmd)!=0)\r
- break\r
- \r
- last=f\r
- print "ONG "f" "((alt==newalt)?"":""newalt)\r
- \r
- if (post!="")\r
- system(ongcmd)\r
- \r
- alt=newalt\r
- \r
- print nextstate" "f > statefile\r
- print newalt > statefile\r
- close(statefile)\r
- \r
- ++f\r
- }\r
-}\r
+++ /dev/null
-#// ong.awk\r
-#// The bot to ONG new frames to the viewer.\r
-#// 28.08.2020\r
-#// \r
-#// Copyright (C) 2015, 2018-2020 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-BEGIN{\r
- FS=""\r
- framepath="/eizm/www/time/"\r
- datapath="/eizm/data/aftertime/"\r
- \r
- # timecmd="date +\"%H\""\r
- timecmd2="date -u +\"%Y-%m-%d %H:%M:%S\""\r
- timecmd3="date -u +\"%s\""\r
- \r
- cp="/bin/cp"\r
- mawk="/usr/bin/mawk"\r
- bot4awk="/eizm/pro/aftertime/bot4.awk"\r
- chmod="/bin/chmod"\r
- npb="/eizm/pro/ong1/npb"\r
- \r
- timecmd2 | getline thistime2\r
- close(timecmd2)\r
- timecmd3 | getline thistime3\r
- close(timecmd3)\r
- # timecmd | getline thistime\r
- # close(timecmd)\r
- \r
- thistime3 -= thistime3%3600\r
- \r
- for(i=0;i<256;++i)\r
- {\r
- ch=sprintf("%c",i)\r
- hex=sprintf("%02X",i)\r
- dec=sprintf("%u",i)\r
- ch2hex[ch]=hex\r
- ch2dec[ch]=dec\r
- }\r
-}\r
-{\r
- file=1\r
- gsub(/[\r\n]/, "", $0)\r
- eq=index($0, "=")\r
- \r
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)\r
-}\r
-END{\r
- \r
- print ""\r
- print thistime2" "argtab ["story"]\r
- \r
- if (file=="")\r
- {\r
- print "No data."\r
- exit 1\r
- }\r
- \r
- if(int(argtab["ongoing"])!=1)\r
- {\r
- print "story is not onged from here."\r
- exit 1\r
- }\r
- \r
- # # replace with actual better conditions\r
- # if(int(thistime) % int(argtab["ongtime"]) != 0)\r
- # {\r
- # print "Not ongtime yet."\r
- # exit 1\r
- # }\r
- \r
- framedir = "aftertime/"argtab["story"]"/"\r
- \r
- temp=""\r
- statefile= datapath argtab["story"]"/ongstate"\r
- getline temp < statefile\r
- close(statefile)\r
- \r
- split(temp, temptab, " ")\r
- state=int(temptab[1])\r
- last=int(temptab[2])\r
- nextong=int(temptab[3])\r
- ongfailcount=int(temptab[4])\r
- enhance=int(argtab["enhance"])\r
- \r
- specialtab[0]=""\r
- effectivetab[0]=""\r
- \r
- # temp=""\r
- # updatefile= datapath argtab["story"]"/update"\r
- # getline temp < updatefile\r
- # close(updatefile)\r
- \r
- timefile= datapath argtab["story"]"/ongtime"\r
- \r
- if (state == 1 || state ==2)\r
- {\r
- updatefail=""\r
- temp=""\r
- updatefile= datapath argtab["story"]"/update"\r
- # timefile= datapath argtab["story"]"/ongtime"\r
- \r
- updated=""\r
- \r
- while((getline temp < updatefile)>0)\r
- {\r
- if (temp !~ /^([0-9]+[a-z]?)|(c)$/)\r
- continue\r
- \r
- if(timeread=="")\r
- {\r
- while((getline line < timefile)>0)\r
- {\r
- ongind=index(line," ")\r
- ongft=substr(line,1,ongind-1)\r
- ongt=substr(line,ongind+1)\r
- \r
- if(ongft ~ /^[0-9]+[a-z]$/)\r
- ongf=int(substr(ongft,1,ongind-2)) substr(ongft,ongind-1,1)\r
- else\r
- ongf=int(ongft)\r
- \r
- timetab[ongft]=ongt\r
- }\r
- close(timefile)\r
- timeread=1\r
- }\r
- \r
- if(temp=="c")\r
- {\r
- print "Update CFRT."\r
- if (argtab["cfrt"]=="")\r
- {\r
- print "There is no cfrt frame."\r
- continue\r
- }\r
- inframe[0]= datapath argtab["story"]"/"argtab["cfrt"]\r
- \r
- frame[0]= framepath framedir argtab["cfrt"]\r
- \r
- cpcmd[0] = cp" "inframe[0]" "frame[0]\r
- chmodcmd[0] = chmod" +r "frame[0]\r
- }\r
- else\r
- {\r
- if (temp ~ /[a-z]$/)\r
- {\r
- i=int(substr(temp,1,length(temp)-1))\r
- j=substr(temp, length(temp))\r
- }\r
- else\r
- {\r
- i = int(temp)\r
- j = ""\r
- }\r
- \r
- print "Update frame "i j"."\r
- \r
- if(argtab["special"] != "")\r
- {\r
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],i,j)\r
- readspecialfile(specialfile,argtab,specialtab,effectivetab)\r
- }\r
- else\r
- {\r
- readspecialfile("",argtab,specialtab,effectivetab)\r
- }\r
- if ((i < int(argtab["first"]))||(i > last)) \r
- {\r
- print (i j" not onged yet.")\r
- continue\r
- }\r
- \r
- if(j!="")\r
- {\r
- if(argtab["sf-"i]=="")\r
- {\r
- print (i" doesn't have meteor frames.")\r
- continue\r
- }\r
- else if(j > argtab["sf-"i])\r
- {\r
- print (j" is not a meteor frame of "i".")\r
- continue\r
- }\r
- \r
- }\r
- for (k=0; k<=enhance; ++k)\r
- {\r
- k2=(k>0)?("-"k):""\r
- inframe[k]= datapath argtab["story"]"/"sprintf(effectivetab["inframe"k2],i,j)\r
- \r
- frame[k]= framepath framedir sprintf(effectivetab["frame"k2],i,j)\r
- npbframe[k]= framepath framedir sprintf(effectivetab["npbframe"k2],i,j)\r
- \r
- npbcmd[k]= npb" "inframe[k]" "npbframe[k]" q"\r
- cpcmd[k] = cp" "inframe[k]" "frame[k]\r
- chmodcmd[k] = chmod" +r "frame[k]\r
- }\r
- if (specialtab["text"]!="")\r
- {\r
- specialtab["HTML"]=bb2html(specialtab["text"])\r
- writespecialfile(specialfile,specialtab)\r
- # print debug\r
- }\r
- }\r
- \r
- if(temp!="c" && timetab[sprintf("%04u%s",i,j)]=="")\r
- {\r
- print sprintf("%04u%s",i,j)" "thistime2 >> timefile\r
- close(timefile)\r
- timetab[sprintf("%04u%s",i,j)]=thistime2\r
- }\r
- \r
- for(k=0; k<=enhance; ++k)\r
- {\r
- k2=(k>0)?("-"k):""\r
- \r
- if ((system("[ -f " inframe[k]" ]")!=0)&&(k>0))\r
- continue\r
- \r
- if((argtab["npbframe"]!="") && (temp!="c"))\r
- {\r
- if(system(npbcmd[k])!=0)\r
- {\r
- print i j k2" NewpixbOTTification failed."\r
- updatefail=1\r
- break\r
- }\r
- }\r
- if(system(cpcmd[k])!=0)\r
- {\r
- print i j k2" Upload failed."\r
- updatefail=1\r
- break\r
- }\r
- if(system(chmodcmd[k])!=0)\r
- {\r
- print "Chmod failed."\r
- updatefail=1\r
- break\r
- }\r
- if(temp=="c")\r
- {\r
- break\r
- }\r
- }\r
- if (updatefail)\r
- {\r
- break #come up with other aproach\r
- }\r
- updated=1\r
- print "Updated."\r
- }\r
- close(updatefile)\r
- if (!updatefail && updated)\r
- {\r
- print "" > updatefile\r
- close(updatefile)\r
- }\r
- }\r
- \r
- firstong=""\r
- if (state==4) {\r
- print "Time to start onging."\r
- firstong=1\r
- nextong=0\r
- } \r
- else if(state<1 || state>2)\r
- {\r
- print "Onging not active."\r
- exit 1\r
- }\r
- else if(thistime3<nextong)\r
- {\r
- print sprintf("Wait until %s.",nextong)\r
- exit 1\r
- }\r
- else if (state==1) {\r
- # nextong = thistime3 + int(argtab["ongtime"])*3600\r
- nextong = getnextongtime()\r
- print sprintf("1 %u %u %u",last,nextong,ongfailcount) > statefile\r
- close(statefile)\r
- print "Nobody saw frame "last" yet. Wait until "nextong"."\r
- exit 1\r
- }\r
- \r
- if(thistime3<nextong)\r
- {\r
- print sprintf("Wait until %s.",nextong)\r
- exit 1\r
- }\r
- \r
- if (firstong)\r
- f = int(argtab["first"])\r
- else\r
- f=last+1\r
- if(argtab["last"]!="")\r
- {\r
- if (f==int(argtab["last"]))\r
- {\r
- print "T** **d."\r
- nextstate="3"\r
- }\r
- else\r
- nextstate="1"\r
- }\r
- else\r
- nextstate="1"\r
- \r
- if(firstong && argtab["cfrt"]!="")\r
- {\r
- inframe[0]= datapath argtab["story"]"/"argtab["cfrt"]\r
- frame[0]= framepath framedir argtab["cfrt"]\r
- \r
- cpcmd[0] = cp" "inframe[0]" "frame[0]\r
- chmodcmd[0] = chmod" +r "frame[0]\r
- \r
- if(system(cpcmd[0])!=0)\r
- {\r
- print "CFRT upload failed."\r
- exit 1\r
- }\r
- if(system(chmodcmd[0])!=0)\r
- {\r
- print "CFRT chmod failed."\r
- exit 1\r
- }\r
- print "CFRT onged."\r
- }\r
- \r
- print "ONG frame "f"."\r
- \r
- if(argtab["special"] != "")\r
- {\r
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],f,"")\r
- readspecialfile(specialfile,argtab,specialtab,effectivetab)\r
- }\r
- else\r
- {\r
- readspecialfile("",argtab,specialtab,effectivetab)\r
- }\r
- \r
- for(k=0; k<=enhance; ++k)\r
- {\r
- k2=(k>0)?("-"k):""\r
- \r
- inframe[k]= datapath argtab["story"]"/"sprintf(effectivetab["inframe"k2],f,"")\r
- \r
- if (system("[ -f " inframe[k] " ]")!=0)\r
- {\r
- if(k>0) #we only care about missing original frame\r
- {\r
- continue\r
- }\r
- ++ongfailcount\r
- print "Frame "f" doesnt't exist. (#"ongfailcount")"\r
- \r
- print sprintf("%u %u %u %u",state,last,nextong,ongfailcount) > statefile\r
- close(statefile)\r
- \r
- if((argtab["finalreplaceframe"]!="") && (argtab["finalreplacetime"]!=""))\r
- {\r
- if(((thistime3 - nextong) >= int(argtab["finalreplacetime"])*3600) && (ongfailcount>=int(argtab["finalreplacetime"])))\r
- {\r
- print "Time to stop trying."\r
- print "ONG final replacement frame."\r
- inframe[0]= datapath argtab["story"]"/"argtab["finalreplaceframe"]\r
- nextstate=3\r
- }\r
- else\r
- exit 1\r
- }\r
- else\r
- exit 1\r
- }\r
- \r
- frame[k]= framepath framedir sprintf(effectivetab["frame"k2],f,"")\r
- npbframe[k]= framepath framedir sprintf(effectivetab["npbframe"k2],f,"")\r
- \r
- \r
- npbcmd[k]= npb" "inframe[k]" "npbframe[k]" q"\r
- cpcmd[k] = cp" "inframe[k]" "frame[k]\r
- chmodcmd[k] = chmod" +r "frame[k]\r
- }\r
- ongcmd = mawk" -f " bot4awk" -v story="argtab["story"]" -v frame="last" "datapath argtab["story"]"/settings"\r
-# nextong = thistime3 + int(argtab["ongtime"])*3600\r
- nextong = getnextongtime()\r
- ### replace this with actual onging!!!\r
- # system("/eizm/pro/ong1/bot4")\r
- \r
- if (specialtab["text"]!="")\r
- {\r
- specialtab["HTML"]=bb2html(specialtab["text"])\r
- writespecialfile(specialfile,specialtab)\r
- }\r
- \r
- # timefile= datapath argtab["story"]"/ongtime"\r
- print sprintf("%04u ",f)thistime2 >> timefile\r
- close(timefile)\r
- \r
- for(k=0; k<=enhance; ++k)\r
- {\r
- k2=(k>0)?("-"k):""\r
- \r
- if ((system("[ -f " inframe[k]" ]")!=0)&&(k>0))\r
- continue\r
- \r
- if(argtab["npbframe"]!="")\r
- {\r
- if(system(npbcmd[k])!=0)\r
- {\r
- print "NewpixbOTTification"k2" failed."\r
- exit 1\r
- }\r
- }\r
- \r
- if(system(cpcmd[k])!=0)\r
- {\r
- print "Frame"k2" upload failed."\r
- exit 1\r
- }\r
- \r
- if(system(chmodcmd[k])!=0)\r
- {\r
- print "Frame"k2" chmod failed."\r
- exit 1\r
- }\r
- }\r
- print sprintf("%u %u %u 0",nextstate,f,nextong) > statefile\r
- close(statefile)\r
- \r
- print sprintf("ONGed. Next ong %u.",nextong)\r
- \r
- # add condition here.\r
- # Ok, done.\r
- \r
- if (!firstong)\r
- {\r
- ongbotfile= datapath argtab["story"] "/" ((argtab["ongbot"]!="")?argtab["ongbot"]:"ongbot")\r
- if (system("[ -f " ongbotfile " ]")==0)\r
- system(ongcmd)\r
- }\r
-}\r
-\r
-function getnextongtime( schedulefile,temp,i)\r
-{\r
- schedulefile= datapath argtab["story"]"/schedule"\r
- \r
- while((getline temp < schedulefile)>0)\r
- {\r
- if (temp !~ /^[0-9]+$/)\r
- continue\r
- \r
- i = int(temp)\r
- # print i\r
- \r
- if(i>thistime3)\r
- {\r
- close(schedulefile)\r
- print "ok"\r
- return i\r
- }\r
- }\r
- close(schedulefile)\r
- return thistime3 + int(argtab["ongtime"])*3600\r
-}\r
-\r
-function readspecialfile (datafile, argtab, specialtab, effectivetab, line,undertext,eq,i)\r
-{\r
- for (i in specialtab)\r
- delete specialtab[i]\r
- \r
- for (i in effectivetab)\r
- delete effectivetab[i]\r
- \r
- if (datafile=="")\r
- return\r
- \r
- line=""\r
- while((getline line < datafile)>0)\r
- {\r
- gsub(/[\r\n]/, "", line)\r
- \r
- if (line == "" && !undertext)\r
- {\r
- undertext=1\r
- specialtab["text"]=""\r
- }\r
- else if (undertext)\r
- {\r
- specialtab["text"] = specialtab["text"] line "\n"\r
- }\r
- else\r
- {\r
- eq=index(line, "=")\r
- specialtab[substr(line, 1, eq-1)]=substr(line, eq+1)\r
- }\r
- }\r
- \r
- for (i in argtab)\r
- effectivetab[i]=argtab[i]\r
- \r
- for (i in specialtab)\r
- effectivetab[i]=specialtab[i]\r
- \r
- \r
- close (datafile)\r
- \r
-}\r
-\r
-function writespecialfile (datafile, specialtab, i)\r
-{\r
- for (i in specialtab)\r
- {\r
- if (i!="text")\r
- print i"="specialtab[i] > specialfile\r
- }\r
- \r
- print "" > specialfile\r
- if (specialtab["text"]!="")\r
- printf("%s",specialtab["text"]) > specialfile\r
- close (specialfile)\r
-}\r
-\r
-#HTML STUFF FROM HERE\r
-function bb2html(text, depth,count,bbtree,html,tag,tagstart,taglength,elm,tagv,tagname,tagvalue,matchname)\r
-{\r
- depth=0\r
- count[0]=1\r
- bbtree["0"]=""\r
- bbtree["0.n"]=0\r
- bbtree["0.t"]="post"\r
- bbtree["0.v"]=argtab["subject"]\r
- html=""\r
- # gsub(/=/,"=",text)\r
- debug = debug "\n\nBuild BBcode tree:"\r
- while(length(text)!=0)\r
- {\r
- tag=match(text, /\[\/?[a-z0-9\*]+(=(([^\[<>\"\]]*)|(\"[^\"<>]*\")))?\]/)\r
- #"#\""\r
- if (tag==0)\r
- {\r
- debug = debug "\ntext: " text\r
- bbtree[ind(count,depth)]=text\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- text=""\r
- break;\r
- }\r
- tagstart=RSTART\r
- taglength=RLENGTH\r
- if(tagstart>1)\r
- {\r
- elm=substr(text,1,tagstart-1)\r
- debug = debug "\ntext: " elm\r
- bbtree[ind(count,depth)]=elm\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- }\r
- tag=substr(text,tagstart,taglength)\r
- text=substr(text,tagstart+taglength)\r
- debug = debug "\ntag: " tag\r
- if(tag!~/^\[\//)\r
- {\r
- tagv=index(tag,"=")\r
- if(tagv<2)\r
- {\r
- tagname=substr(tag,2,length(tag)-2)\r
- tagvalue=""\r
- }\r
- else\r
- {\r
- tagname=substr(tag,2,tagv-2)\r
- tagvalue=substr(tag,tagv+1,length(tag)-tagv-1)\r
- }\r
- if(tagname !~ /^((fq)|(tq)|(ni)|(po)|(quote)|b|i|u|(code)|(img)|(url)|(size)|(color)|(center)|(right)|(sub)|(sup)|(s)|(spoiler)|(list)|(br)|(\*))$/)\r
- {\r
- debug = debug "\nunknown tag"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||bbtree[indt(count,depth)".t"] == "img"||(bbtree[indt(count,depth)".t"] == "spoiler" && tagname=="spoiler")||(bbtree[indt(count,depth)".t"] == "size" && tagname=="size"))\r
- {\r
- debug = debug "\nthis tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if(tagname=="*")\r
- {\r
- if(bbtree[indt(count,depth)".t"]==tagname)\r
- {\r
- debug = debug "\nimplied tag: [/"tagname"]"\r
- debug = debug "\nmatched"\r
- bbtree[ind(count,depth)]="[/"tagname"]"\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]=tagname\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else if(bbtree[indt(count,depth)".t"]!="list")\r
- {\r
- debug = debug "\nthis tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- }\r
- debug = debug "\nname: " tagname " value: " tagvalue\r
- bbtree[ind(count,depth)]=tagname" "tagvalue\r
- bbtree[ind(count,depth)".k"]="s"\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++depth\r
- count[depth]=1\r
- bbtree[indt(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=0\r
- bbtree[indt(count,depth)".t"]=tagname\r
- bbtree[indt(count,depth)".v"]=tagvalue\r
- \r
- # if(tagname=="br") #or other single tags in the future\r
- # {\r
- # debug = debug "\nmatched"\r
- # bbtree[ind(count,depth)]=tag\r
- # bbtree[ind(count,depth)".k"]="e"\r
- # bbtree[ind(count,depth)".m"]=1\r
- # bbtree[ind(count,depth)".t"]=tagname\r
- # bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- # bbtree[indt(count,depth)".n"]=count[depth]\r
- # bbtree[indt(count,depth)".m"]=1\r
- # count[depth]=""\r
- # --depth\r
- # ++count[depth]\r
- # }\r
- }\r
- else\r
- {\r
- if(depth<=0)\r
- {\r
- debug = debug "\n""unmatched"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- tagname=substr(tag,3,length(tag)-3)\r
- if(tagname=="list"&&bbtree[indt(count,depth)".t"]=="*")\r
- {\r
- debug = debug "\nimplied tag: [/*]"\r
- debug = debug "\nmatched"\r
- bbtree[ind(count,depth)]="[/*]"\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]="*"\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- debug = debug "\nname: " tagname\r
- matchname=bbtree[indt(count,depth)".t"]\r
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||(bbtree[indt(count,depth)".t"] == "img" && tagname != "img"))\r
- {\r
- debug = debug "\nthis tag forbidden here"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- ++count[depth]\r
- continue\r
- }\r
- if(tagname!=matchname)\r
- {\r
- debug = debug "\nmismatched: " matchname\r
- # bbtree[ind(count,depth)]=tag\r
- # bbtree[indt(count,depth)".n"]=count[depth]\r
- # ++count[depth]\r
- # continue\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".t"]=bbtree[indt(count,depth)".t"]\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- continue\r
- }\r
- debug = debug "\nmatched"\r
- bbtree[ind(count,depth)]=tag\r
- bbtree[ind(count,depth)".k"]="e"\r
- bbtree[ind(count,depth)".m"]=1\r
- bbtree[ind(count,depth)".t"]=tagname\r
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]\r
- bbtree[indt(count,depth)".n"]=count[depth]\r
- bbtree[indt(count,depth)".m"]=1\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- }\r
- if(depth>0)\r
- debug = debug "\nunclosed tags: " depth\r
- \r
- debug = debug "\n\n""generate HTML:"\r
- depth=0\r
- count[0]=0\r
- while(count[0]<=bbtree["0.n"]&&depth>=0)\r
- {\r
- if(count[depth]==0)\r
- {\r
- tag=bbtree[indt(count,depth)]\r
- tagname=bbtree[indt(count,depth)".t"]\r
- tagvalue=bbtree[indt(count,depth)".v"]\r
- debug = debug "\nname: "tagname" value: "tagvalue" elements: "bbtree[indt(count,depth)".n"]\r
- if(tagname == "post")\r
- {\r
- }\r
- else if(bbtree[indt(count,depth)".m"]=="")\r
- {\r
- debug = debug "\nunmatched"\r
- html = html htmlescape(tag)\r
- }\r
- else if(tagname == "quote")\r
- {\r
- if (tagvalue=="")\r
- {\r
- html = html "<blockquote class=\"pq\"><div>"\r
- }\r
- else\r
- {\r
- if(tagvalue !~ /^\".*\"$/)\r
- #"#\""\r
- tagvalue="You forgot about the quote marks, "htmlescape(tagvalue)\r
- else\r
- tagvalue=bb2html(substr(tagvalue,2,length(tagvalue)-2))\r
- html = html "<blockquote class=\"pq\"><div><cite class=\"pq\"><b class=\"br\">"tagvalue"</b> wrote:</cite><br>"\r
- }\r
- }\r
- else if (tagname == "fq")\r
- {\r
- html = html"<div class=\"fq\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "tq")\r
- {\r
- html = html"<div class=\"tq\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "br")\r
- {\r
- html = html"<span class=\"br\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "ni")\r
- {\r
- html = html"<span class=\"ni\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "po")\r
- {\r
- html = html"<span class=\"po\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "b")\r
- {\r
- html = html"<span style=\"font-weight: bold\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "i")\r
- {\r
- html = html"<span style=\"font-style: italic\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "u")\r
- {\r
- html = html"<span style=\"text-decoration: underline\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. " \r
- }\r
- else if (tagname == "code")\r
- {\r
- if(bbtree[indtu(count,depth)".t"] == "code")\r
- {\r
- html=html htmlescape(tag)\r
- debug = debug "\nnot a tag, actually"\r
- }\r
- else\r
- {\r
- html=html"<dl class=\"pq\"><dt class=\"pq\">Code: <a href=\"#\" onclick=\"selectCode(this); return false;\">Select all</a></dt><dd><code class=\"pq\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- }\r
- else if (tagname == "img")\r
- html=html"<img src=\""\r
- else if (tagname == "url")\r
- {\r
- if(tagvalue=="")\r
- {\r
- ++count[depth]\r
- tagvalue=bbtree[ind(count,depth)]\r
- --count[depth]\r
- debug = debug "\nimplied value: " tagvalue\r
- }\r
- html=html"<a href=\""htmlescape(tagvalue)"\" class=\"postlink\">"\r
- }\r
- else if (tagname == "size")\r
- {\r
- if (tagvalue==""||(tagvalue !~ /^[0-9]+$/)||(tagvalue+0)>200)\r
- html=html"<span style=\"font-size: 130%; line-height: 116%;\"> This tag should have a correct value. "\r
- else\r
- html=html"<span style=\"font-size: "htmlescape(tagvalue)"%; line-height: 116%;\">"\r
- }\r
- else if (tagname == "color")\r
- {\r
- if (tagvalue==""||tagvalue !~ /^#[0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]$/) #for some reason /^([0-9A-F]{6})$/ doesn't work.\r
- html=html"<span style=\"color: #EE0000\"> This tag should have a correct value. "\r
- else\r
- html=html"<span style=\"color: "htmlescape(tagvalue)"\">"\r
- }\r
- else if (tagname ~ /^((center)|(right))$/)\r
- {\r
- html=html"<div align=\""tagname"\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="s")\r
- {\r
- html=html"<strike>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="sub")\r
- {\r
- html=html"<sub>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname =="sup")\r
- {\r
- html=html"<sup>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname=="spoiler")\r
- {\r
- html=html"<div style=\"margin:20px; margin-top:5px\"><div class=\"quotetitle\"><b>Spoiler:</b> <input type=\"button\" class=\"pk\" value=\"Show\" style=\"width:45px;font-size:10px;margin:0px;padding:0px;\" onclick=\"if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }\" /></div><div class=\"quotecontent\"><div style=\"display: none;\">"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if (tagname=="list")\r
- {\r
- if(tagvalue=="")\r
- html=html"<ul>"\r
- else\r
- {\r
- if (tagvalue=="1")\r
- tagvalue="decimal"\r
- else if (tagvalue=="i")\r
- tagvalue="lower-roman"\r
- else if (tagvalue=="I")\r
- tagvalue="upper-roman"\r
- else if (tagvalue=="a")\r
- tagvalue="lower-alpha"\r
- else if (tagvalue=="A")\r
- tagvalue="upper-alpha"\r
- else\r
- {\r
- html=html"This tag should have a correct value. "\r
- tagvalue="decimal"\r
- }\r
- html=html"<ol style=\"list-style-type: "tagvalue"\">"\r
- }\r
- }\r
- else if (tagname=="*")\r
- {\r
- html=html"<li>"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- # else if (tagname == "br")\r
- # {\r
- # html = html"<br>"\r
- # if(tagvalue!="")\r
- # html=html"This tag shouldn't have any value. " \r
- # }\r
- else\r
- {\r
- debug = debug "\nunknown tag"\r
- html = html htmlescape(tag)\r
- }\r
- ++count[depth]\r
- }\r
- else if(bbtree[ind(count,depth)".k"]=="s")\r
- {\r
- debug = debug "\nentering tag:"\r
- ++depth\r
- count[depth]=0\r
- }\r
- else if(bbtree[ind(count,depth)".k"]=="e")\r
- {\r
- debug = debug "\nleaving tag:"\r
- tag=bbtree[ind(count,depth)]\r
- tagname=bbtree[ind(count,depth)".t"]\r
- tagvalue=bbtree[ind(count,depth)".v"]\r
- debug = debug "\nname: "tagname" value: "tagvalue\r
- if (tagname == "post")\r
- {\r
- }\r
- else if(bbtree[ind(count,depth)".m"]=="")\r
- {\r
- debug = debug "\nunmatched"\r
- html = html htmlescape(tag)\r
- }\r
- else if(tagname == "quote")\r
- html = html "</div></blockquote>"\r
- else if (tagname ~/^(b|i|u|(size)|(color)|(br)|(ni)|(po))$/)\r
- html = html"</span>"\r
- else if (tagname == "code")\r
- {\r
- if(bbtree[indtu(count,depth)".t"] == "code")\r
- {\r
- html=html htmlescape(tag)\r
- debug = debug "\nnot a tag, actually"\r
- }\r
- else\r
- html = html"</code></dd></dl>"\r
- }\r
- else if (tagname == "img")\r
- {\r
- html = html"\" alt=\"Image\" />"\r
- if(tagvalue!="")\r
- html=html"This tag shouldn't have any value. "\r
- }\r
- else if(tagname=="url")\r
- html=html"</a>"\r
- else if (tagname ~ /^((center)|(right)|(fq)|(tq))$/)\r
- html=html"</div>"\r
- else if (tagname =="s")\r
- html=html"</strike>"\r
- else if (tagname =="sub")\r
- html=html"</sub>"\r
- else if (tagname =="sup")\r
- html=html"</sup>"\r
- else if (tagname=="spoiler")\r
- html=html"</div></div></div>"\r
- else if (tagname=="list")\r
- {\r
- if (tagvalue=="")\r
- html=html"</ul>"\r
- else\r
- html=html"</ol>"\r
- }\r
- else if (tagname=="*")\r
- html=html"</li>"\r
- # else if (tagname == "br") #\r
- # {\r
- # #\r
- # }\r
- else\r
- {\r
- debug = debug "\nunknown tag"\r
- html = html htmlescape(tag)\r
- }\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else if(count[depth]>bbtree[indt(count,depth)".n"])\r
- {\r
- debug = debug "\nrun out of elements in this tag; leaving"\r
- count[depth]=""\r
- --depth\r
- ++count[depth]\r
- }\r
- else\r
- {\r
- tag=bbtree[ind(count,depth)]\r
- debug = debug "\ntext: "tag\r
- \r
- tag=htmlescape(tag,"","br")\r
- \r
- if(bbtree[indt(count,depth)".t"] == "code")\r
- {\r
- gsub(/ /,"\\ ",tag)\r
- gsub(/\t/,"\\ \\ ",tag)\r
- }\r
- else{\r
- gsub(/ /,"\\ ",tag)\r
- gsub(/ /," \\ ",tag)\r
- # gsub(/<br> /,"<br>\\ ",tag)\r
- }\r
- \r
- \r
- if(nourl==""&& bbtree[indt(count,depth)".t"] !~ /^((code)|(img)|(url))$/)\r
- gsub(/https?:\/\/[^\n\r\t<> ]+/,"<a href=\"&\" class=\"postlink\">&</a>",tag)\r
- # if(nosmil=="" && bbtree[indt(count,depth)".t"] !~ /^((code)|(img))$/)\r
- # {\r
- # gsub(/(^|[\n\r\t ]):D($|[\n\r\t ])/," <img title=\"Very Happy\" alt=\":D\" src=\"http://forums.xkcd.com/images/smilies/icon_biggrin.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):\)($|[\n\r\t ])/," <img title=\"Smile\" alt=\":)\" src=\"http://forums.xkcd.com/images/smilies/icon_smile.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):\(($|[\n\r\t ])/," <img title=\"Sad\" alt=\":(\" src=\"http://forums.xkcd.com/images/smilies/icon_sad.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):o($|[\n\r\t ])/," <img title=\"Surprised\" alt=\":o\" src=\"http://forums.xkcd.com/images/smilies/icon_surprised.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):shock:($|[\n\r\t ])/," <img title=\"Shocked\" alt=\":shock:\" src=\"http://forums.xkcd.com/images/smilies/icon_eek.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):\?($|[\n\r\t ])/," <img title=\"Confused\" alt=\":?\" src=\"http://forums.xkcd.com/images/smilies/icon_confused.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ])8-\)($|[\n\r\t ])/," <img title=\"Cool\" alt=\"8-)\" src=\"http://forums.xkcd.com/images/smilies/icon_cool.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):lol:($|[\n\r\t ])/," <img title=\"Laughing\" alt=\":lol:\" src=\"http://forums.xkcd.com/images/smilies/icon_lol.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):x($|[\n\r\t ])/," <img title=\"Mad\" alt=\":x\" src=\"http://forums.xkcd.com/images/smilies/icon_mad.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):P($|[\n\r\t ])/," <img title=\"Razz\" alt=\":P\" src=\"http://forums.xkcd.com/images/smilies/icon_razz.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):oops:($|[\n\r\t ])/," <img title=\"Embarassed\" alt=\":oops:\" src=\"http://forums.xkcd.com/images/smilies/icon_redface.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):cry:($|[\n\r\t ])/," <img title=\"Crying or Very Sad\" alt=\":cry:\" src=\"http://forums.xkcd.com/images/smilies/icon_cry.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):evil:($|[\n\r\t ])/," <img title=\"Evil or Very Mad\" alt=\":evil:\" src=\"http://forums.xkcd.com/images/smilies/icon_evil.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):twisted:($|[\n\r\t ])/," <img title=\"Twisted Evil\" alt=\":twisted:\" src=\"http://forums.xkcd.com/images/smilies/icon_twisted.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):roll:($|[\n\r\t ])/," <img title=\"Rolling Eyes\" alt=\":roll:\" src=\"http://forums.xkcd.com/images/smilies/icon_rolleyes.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):wink:($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]);\)($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):!:($|[\n\r\t ])/," <img title=\"Exclamation\" alt=\":!:\" src=\"http://forums.xkcd.com/images/smilies/icon_exclaim.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):\?:($|[\n\r\t ])/," <img title=\"Question\" alt=\":?:\" src=\"http://forums.xkcd.com/images/smilies/icon_question.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):idea:($|[\n\r\t ])/," <img title=\"Idea\" alt=\":idea:\" src=\"http://forums.xkcd.com/images/smilies/icon_idea.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):arrow:($|[\n\r\t ])/," <img title=\"Arrow\" alt=\":arrow:\" src=\"http://forums.xkcd.com/images/smilies/icon_arrow.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):\|($|[\n\r\t ])/," <img title=\"Neutral\" alt=\":|\" src=\"http://forums.xkcd.com/images/smilies/icon_neutral.gif\" /> ",tag)\r
- # gsub(/(^|[\n\r\t ]):mrgreen:($|[\n\r\t ])/," <img title=\"Mr. Green\" alt=\":mrgreen:\" src=\"http://forums.xkcd.com/images/smilies/icon_mrgreen.gif\" /> ",tag)\r
- # }\r
- \r
- html = html tag\r
- ++count[depth]\r
- }\r
- }\r
- debug = debug "\ndone\n"\r
- return html\r
-}\r
-\r
-function ind(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<=depth;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- # debug = debug "\n" iindex\r
- return iindex\r
-}\r
-function indt(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<depth;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- if(depth>0)\r
- iindex=iindex"."\r
- iindex = iindex "0"\r
- # debug = debug "\n" iindex\r
- return iindex\r
-}\r
-function indtu(count,depth, ii,iindex)\r
-{\r
- iindex = ""\r
- for(ii=0;ii<depth-1;++ii)\r
- {\r
- if(ii!=0)\r
- iindex = iindex "."\r
- iindex = iindex count[ii]\r
- }\r
- if(depth>0)\r
- iindex=iindex"."\r
- iindex = iindex "0"\r
- # debug = debug "\n" iindex\r
- return iindex\r
-}\r
-function htmlescape(name,less,br, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1);\r
- if(ch == "\n")\r
- escaped = escaped ((br!="")?"<br>":"&#"ch2dec[ch]";")\r
- else if(ch =="\r")\r
- escaped = escaped ((br!="")?"":"&#"ch2dec[ch]";")\r
- else if(ch == "\"" && less=="")\r
- escaped = escaped "&#"ch2dec[ch]";"\r
- else if(ch ~ /[=<>&]/)\r
- escaped = escaped "&#"ch2dec[ch]";"\r
- else\r
- escaped = escaped ch\r
- }\r
- return escaped\r
-}\r
-function hexencode(name, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1)\r
- escaped = escaped ch2hex[ch]\r
- }\r
- return escaped\r
-}\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+++ /dev/null
-// pleaseong.c (1190.bicyclesonthemoon.info/aftertime/pleaseongthis)
-// Ask the bot to post the frame
-// 16.09.2015
-//
-// Copyright (C) 2015 Balthasar Szczepański
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Affero General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Affero General Public License for more details.
-//
-// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#define STORYDEF_PRINTF "/eizm/data/aftertime/%s/settings"
-#define MAWK_PATH "/usr/bin/mawk"
-#define AWK_BOT4 "/eizm/pro/aftertime/bot4.awk"
-
-#include <cgi.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/wait.h>
-
-s_cgi *cgi;
-
-int main (int argc, char *argv[])
-{
- s_cgi *cgi;
- pid_t sub;
- int r;
-
- char *story;
- char *e;
- char arg1[256];
- char arg2[256];
- char storydef[256];
-
- cgi=cgiInit();
-
- setvbuf(stdout, NULL, _IONBF, 0);
- dup2(fileno(stdout),fileno(stderr));
-
- story=cgiGetValue(cgi,"story");
- e=cgiGetValue(cgi,"e");
-
- snprintf(arg1,256,"story=%s",story!=NULL ? story : "");
- snprintf(arg2,256,"enhance=%s",e!=NULL ? e : "");
-
-
- sprintf(storydef,STORYDEF_PRINTF,story!=NULL ? story : "");
-
- printf("Content-type: text\n\n");
-
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_BOT4,"-v",arg1,"-v",arg2,"-v","please=1",storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- return 0;
-}
+++ /dev/null
-#// post.awk\r
-#// The tool to post to the OTT\r
-#// 08.04.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- FS="="\r
- fora="http://forums.xkcd.com"\r
- useragent="\"bothasar_p (http://1190.bicyclesonthemoon.info/aftertime; time after Time post bot)\""\r
- timecmd="date -u +\"%d %b %Y, %k:%M UTC\""\r
- \r
- for(i=0;i<256;++i)\r
- {\r
- ch=sprintf("%c",i)\r
- hex=sprintf("%02X",i);\r
- ch2hex[ch]=hex\r
- hex2ch[hex]=ch\r
- }\r
-};\r
-{\r
- eq=index($0,"=")\r
- argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
-};\r
-END{\r
- if(entitydecode(user)!=urldecode(argtab["username"]))\r
- edit=""\r
- \r
- if(system("wget -q -t 3 --connect-timeout=60 --save-cookies=" cookiefile " -U " useragent " -O " tempfile " " fora "/ucp.php?mode=login"))\r
- {\r
- print "Pre-login fail."\r
- exit 1\r
- }\r
- while((getline cookie < cookiefile)>0)\r
- {\r
- if(cookie ~ /_sid/)\r
- {\r
- split(cookie,arr,"_sid[ \t]*")\r
- SID=arr[2]\r
- }\r
- }\r
- close(cookiefile)\r
- print "username=" argtab["username"] "&password=" argtab["password"] "&sid=" SID "&login=Login" > postfile\r
- close(postfile)\r
- if(system("wget -q -t 3 --connect-timeout=60 --save-cookies=" cookiefile " --post-file=" postfile " -U " useragent " -O " tempfile " \"" fora "/ucp.php?mode=login\""))\r
- {\r
- print "Login fail."\r
- exit 1\r
- }\r
- \r
- while((getline temp < tempfile)>0)\r
- {\r
- if (temp ~ /<div class=.error/)\r
- {\r
- print temp\r
- print "LOGIN IMPOSSIBLE!"\r
- exit 2\r
- }\r
- }\r
- close(tempfile)\r
- \r
- if(system("wget -q -t 3 --connect-timeout=60 --load-cookies=" cookiefile " --save-cookies=" cookiefile " -U " useragent " -O " tempfile " \"" fora "/posting.php?mode="((edit!="")?"edit&f=7&p="edit:"reply&f=7&t=101043")"\""))\r
- {\r
- print "Postreply fail."\r
- exit 1\r
- }\r
- \r
- # extract info from form\r
- att_inp=0\r
- while((getline line < tempfile)>0)\r
- {\r
- if (tolower(line) ~ /<h2>information/)\r
- {\r
- print "Unexpected h2: information\n"\r
- getline line < tempfile\r
- print line\r
- exit 1\r
- }\r
- \r
- while (line!="")\r
- {\r
- i=match(line, /</)\r
- if(i!=0)\r
- {\r
- text=substr(line,1,i-1)\r
- line=substr(line,i)\r
- }\r
- else\r
- {\r
- text=line\r
- line=""\r
- }\r
- if(textarea!="")\r
- argtab["old_message"] = argtab["old_message"] urlencode(entitydecode(text)"\n")\r
- \r
- i=match(line, />/)\r
- if(i!=0)\r
- {\r
- tag=substr(line,1,i)\r
- line=substr(line,i+1)\r
- }\r
- else #oh no tag doesn't end on this line - whatever, I don't care.\r
- {\r
- tag=line\r
- line=""\r
- }\r
- \r
- \r
- if(tag ~ /^<textarea.*id=\"message\"/) #"\r
- textarea="1"\r
- else if(tag ~ /<\/textarea/)\r
- textarea=""\r
- \r
- else if(tag ~ /name=\"form_token/)\r
- #\"#"\r
- {\r
- value=substr(tag, index(tag, "value=\"")+7)\r
- value=substr(value, 1, index(value, "\"")-1)\r
- argtab["form_token"]=urlencode(entitydecode(value))\r
- }\r
- else if(tag ~ /name=\"creation_time/)\r
- #\"#"\r
- {\r
- value=substr(tag, index(tag, "value=\"")+7)\r
- value=substr(value, 1, index(value, "\"")-1)\r
- argtab["creation_time"]=urlencode(entitydecode(value))\r
- }\r
- else if(tag ~ /name=\"subject/)\r
- #\"#"\r
- {\r
- value=substr(tag, index(tag, "value=\"")+7)\r
- value=substr(value, 1, index(value, "\"")-1)\r
- argtab["old_subject"]=urlencode(entitydecode(value))\r
- }\r
- \r
- #may have to extend it to other things. NNot now.\r
- else if(tag ~ /^<input.*name="attachment/) #")\r
- {\r
- value=substr(tag, index(tag, "value=\"")+7)\r
- value=substr(value, 1, index(value, "\"")-1)\r
- \r
- tagname=substr(tag, index(tag, "name=\"")+6)\r
- tagname=substr(tagname, 1, index(tagname, "\"")-1)\r
- \r
- nam_tab[att_inp]=urlencode(entitydecode(tagname))\r
- val_tab[att_inp]=urlencode(entitydecode(value))\r
- ++att_inp\r
- }\r
- }\r
- }\r
- close(tempfile)\r
- \r
- if(edit!="")\r
- {\r
- timecmd | getline posttime\r
- close(timecmd)\r
- }\r
- \r
- printf ("subject=%s",argtab[(edit!="")?"old_subject":"subject"])>postfile\r
- if("&addbbcode20" in argtab)\r
- printf ("&addbbcode20=%s",argtab["addbbcode20"])>>postfile\r
- if(edit!="")\r
- printf ("&message=%s",argtab["old_message"] "%0A%5Bsize%3D110%5D%5Bb%5D" argtab["subject"] "%5B%2Fb%5D%5B%2Fsize%5D%0A%5Bsize%3D80%5D" urlencode(posttime) "%5B%2Fsize%5D%0A" argtab["message"])>>postfile\r
- else\r
- printf ("&message=%s",argtab["message"])>>postfile\r
- printf ("&post=%s","Submit")>>postfile\r
- if("disable_bbcode" in argtab)\r
- printf ("&disable_bbcode=%s",argtab["disable_bbcode"])>>postfile\r
- if("disable_smilies" in argtab)\r
- printf ("&disable_smilies=%s",argtab["disable_smilies"])>>postfile\r
- if("disable_magic_url" in argtab)\r
- printf ("&disable_magic_url=%s",argtab["disable_magic_url"])>>postfile\r
- if("attach_sig" in argtab)\r
- printf ("&attach_sig=%s",argtab["attach_sig"])>>postfile\r
- if("notify" in argtab)\r
- printf ("¬ify=%s",argtab["notify"])>>postfile\r
- printf ("&creation_time=%s",argtab["creation_time"])>>postfile\r
- printf ("&form_token=%s",argtab["form_token"])>>postfile\r
- for(i=0; i<att_inp; ++i)\r
- printf("&%s=%s",nam_tab[i],val_tab[i])>>postfile\r
- \r
- close(postfile)\r
- \r
- system("sleep 1")\r
- if(system("wget -q -t 3 --connect-timeout=60 --load-cookies=" cookiefile " --save-cookies=" cookiefile " --post-file=" postfile " -U " useragent " -O " tempfile " \"" fora "/posting.php?mode="((edit!="")?"edit&f=7&p="edit:"reply&f=7&t=101043")"\""))\r
- {\r
- print "Submit fail."\r
- exit 1\r
- }\r
- \r
- while((getline temp < tempfile)>0)\r
- {\r
- if (temp ~ /<p class=.error/)\r
- {\r
- print temp\r
- print "POST IMPOSSIBLE!"\r
- exit 2\r
- }\r
- if (tolower(temp) ~ /<h2>information/)\r
- {\r
- success=1\r
- }\r
- }\r
- close(tempfile)\r
- \r
- if (success!=1)\r
- {\r
- print "Sent back to preview!"\r
- exit INDELIVERABLE\r
- }\r
- \r
- while((getline cookie < cookiefile)>0)\r
- {\r
- if(cookie ~ /_sid/)\r
- {\r
- split(cookie,arr,"_sid[ \t]*")\r
- SID=arr[2]\r
- break\r
- }\r
- }\r
- close(cookiefile)\r
- if(system("wget -q -t 3 --connect-timeout=60 -U " useragent " -O " tempfile " \"" fora "/ucp.php?mode=logout&sid=" SID"\""))\r
- {\r
- print "Logout fail."\r
- }\r
- \r
- \r
-}\r
-function urlencode(name,all, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1);\r
- if ((ch ~ /[a-zA-Z0-9\.\-_~]/)&&(all==""))\r
- escaped = escaped ch\r
- else\r
- escaped = escaped "%" ch2hex[ch]\r
- }\r
- return escaped\r
-}\r
-function entitydecode(ht ,i,j,un,num)\r
-# quot, amp, lt, gt, nbsp, and decimal numbered.\r
-{\r
- while ((i=match(ht, /&((#[0-9]+)|([a-zA-Z]+));/))!=0)#\r
- {\r
- un=un substr(ht, 1, i-1)\r
- ht=substr(ht, i)\r
- j=index(ht, ";")\r
- \r
- if(ht~/^&#/)\r
- {\r
- num=int(substr(ht, 3, j-3))\r
- un=un sprintf("%c",num)\r
- }\r
- else\r
- {\r
- num=tolower(substr(ht, 2, j-2))\r
- if(num == "quot")\r
- un=un "\""\r
- else if(num == "amp")\r
- un=un "&"\r
- else if(num == "lt")\r
- un=un "<"\r
- else if(num == "gt")\r
- un=un ">"\r
- else if(num == "nbsp")\r
- un=un "\xA0"\r
- else\r
- un = un ht\r
- }\r
- ht=substr(ht, j+1)\r
- }\r
- un=un ht\r
- return un\r
-}\r
-function urldecode(ht ,i,j,un,num)\r
-# quot, amp, lt, gt, nbsp, and decimal numbered.\r
-{\r
- while ((i=match(ht, /%[0-9a-fA-F][0-9a-fA-F]/))!=0)#\r
- {\r
- un=un substr(ht, 1, i-1)\r
- ht=substr(ht, i)\r
- num=toupper(substr(ht, 2, 2))\r
- un=un hex2ch[num]\r
- ht=substr(ht, 4)\r
- }\r
- un=un ht\r
- return un\r
-}\r
+++ /dev/null
-// post.cpp (1190.bicyclesonthemoon.info/aftertime/post)\r
-// The post edit interface\r
-// 15.04.2019\r
-// \r
-// Copyright (C) 2015, 2019 Balthasar Szczepański\r
-// \r
-// This program is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU Affero General Public License as\r
-// published by the Free Software Foundation, either version 3 of the\r
-// License, or (at your option) any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-// GNU Affero General Public License for more details.\r
-// \r
-// You should have received a copy of the GNU Affero General Public License\r
-// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-#include <cgi.h>\r
-#include <time.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <unistd.h>\r
-#include <string.h>\r
-#include <sys/wait.h>\r
-\r
-#define RM_PATH "/bin/rm"\r
-#define MV_PATH "/bin/mv"\r
-#define CAT_PATH "/bin/cat"\r
-#define MAWK_PATH "/usr/bin/mawk"\r
-\r
-#define POST_PATH "/eizm/www/time/aftertime/post.htm"\r
-#define INFO_PATH "/eizm/www/time/aftertime/info.htm"\r
-#define MPOST_PATH "/eizm/mem/aftertime/mpost/"\r
-\r
-#define AWK_PREVIEW "/eizm/pro/aftertime/preview.awk"\r
-#define AWK_VIEW "/eizm/pro/aftertime/view.awk"\r
-#define TEMP_PATH "/eizm/tmp/aftertime/preview."\r
-#define AWK_B2H "/eizm/pro/aftertime/bb2html.awk"\r
-#define AWK_VERIFY "/eizm/pro/aftertime/verify.awk"\r
-\r
-s_cgi *cgi;\r
-pid_t sub;\r
-int r;\r
-FILE *tempfile;\r
-FILE *postfile;\r
-bool tf=false;\r
-bool pf=false;\r
-char temppath[256]="";\r
-char temppath2[256]="";\r
-char postpath[512]="";\r
-\r
-char zero='\0';\r
-char *username = &zero;\r
-char *password = &zero;\r
-char *message = &zero;\r
-char *y = &zero;\r
-char *m = &zero;\r
-char *d = &zero;\r
-char *h = &zero;\r
-char *disable_bbcode = &zero;\r
-char *disable_smilies = &zero;\r
-char *disable_magic_url = &zero;\r
-char *Preview = &zero;\r
-char *post =&zero;\r
-char *addquote =&zero;\r
-char *edit =&zero;\r
-char *forceID =&zero;\r
-char *silent =&zero;\r
-char *story =&zero;\r
-char *frame =&zero;\r
-char *round =&zero;\r
-char *subject =&zero;\r
-char *key =&zero;\r
-char *forcekey =&zero;\r
-char *ID =&zero;\r
-bool special=false;\r
-\r
-char wrong[256];\r
-\r
-void submit();\r
-void preview (const char *text);\r
-void writeArg(FILE *file,const char *name,const char *value, bool all);\r
-void writeArg(FILE *file,const char *name,const char *value, const char *insert);\r
-void writeArgH(FILE *file,const char *name,const char *value, unsigned char br);\r
-void writeArgH(FILE *file,const char *value);\r
-// void writeArgBR(FILE *file,const char *name, const char *value);\r
-void end(int m);\r
-void id(char *timenumber, char *story, unsigned short frame, char *subframe, unsigned char round);\r
-void specialid(char *timenumber, char *story, char frame);\r
-\r
-void end(int m)\r
-{\r
- if(tf)\r
- fclose(tempfile);\r
- if(pf)\r
- fclose(postfile);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",temppath2,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(pf)\r
- {\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",postpath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- }\r
- exit(m);\r
-}\r
-\r
-void writeArg(FILE *file,const char *name,const char *value, bool all=false)\r
-{\r
- unsigned short length, i, v;\r
- fprintf(file,"%s=",name);\r
- for(i=0, length=strlen(value);i<length;++i)\r
- {\r
- v=((unsigned short)value[i])&0x00ff;\r
- if(((value[i]>='0'&&value[i]<='9')||(value[i]>='A'&&value[i]<='Z')||(value[i]>='a'&&value[i]<='z')\r
- ||value[i]=='.'||value[i]=='~'||value[i]=='-'||value[i]=='_')&&(!all))\r
- fputc(v,file);\r
- else\r
- fprintf(file,"%%%02X",v);\r
- }\r
- fputc('\n',file);\r
-}\r
-\r
-void writeArg(FILE *file,const char *name,const char *value, const char *insert)\r
-{\r
- unsigned short length, i, v;\r
- fprintf(file,"%s=",name);\r
- for(i=0, length=strlen(value);i<length;++i)\r
- {\r
- v=((unsigned short)value[i])&0x00ff;\r
- if((value[i]>='0'&&value[i]<='9')||(value[i]>='A'&&value[i]<='Z')||(value[i]>='a'&&value[i]<='z')\r
- ||value[i]=='.'||value[i]=='~'||value[i]=='-'||value[i]=='_')\r
- fputc(v,file);\r
- else\r
- fprintf(file,"%%%02X",v);\r
- }\r
- for(i=0, length=strlen(insert);i<length;++i)\r
- {\r
- v=((unsigned short)insert[i])&0x00ff;\r
- if((insert[i]>='0'&&insert[i]<='9')||(insert[i]>='A'&&insert[i]<='Z')||(insert[i]>='a'&&insert[i]<='z')\r
- ||insert[i]=='.'||insert[i]=='~'||insert[i]=='-'||insert[i]=='_')\r
- fputc(v,file);\r
- else\r
- fprintf(file,"%%%02X",v);\r
- }\r
- fputc('\n',file);\r
-}\r
-\r
-void writeArgH(FILE *file,const char *name,const char *value, unsigned char br=0)\r
-{\r
- unsigned short length, i, v;\r
- fprintf(file,"%s=",name);\r
- for(i=0, length=strlen(value);i<length;++i)\r
- {\r
- v=((unsigned short)value[i])&0x00ff;\r
- switch (value[i])\r
- {\r
- case '\"':\r
- case ' ':\r
- if(br&0x02)\r
- {\r
- fputc(v,file);\r
- break;\r
- }\r
- else\r
- {\r
- fprintf(file,"&#%hu;",v);\r
- break;\r
- }\r
- case '\n':\r
- if(br&0x01)\r
- fprintf(file,"<br>");\r
- case '\r':\r
- if(br&0x01)\r
- break;\r
- case '=':\r
- case '<':\r
- case '>':\r
- case '&':\r
- fprintf(file,"&#%hu;",v);\r
- break;\r
- default:\r
- fputc(v,file);\r
- }\r
- }\r
- fputc('\n',file);\r
-}\r
-\r
-void writeArgH(FILE *file,const char *value)\r
-{\r
- unsigned short length, i, v;\r
- for(i=0, length=strlen(value);i<length;++i)\r
- {\r
- v=((unsigned short)value[i])&0x00ff;\r
- switch (value[i])\r
- {\r
- case '\"':\r
- case '&':\r
- case '<':\r
- case '>':\r
- case ' ':\r
- case '\r':\r
- case '\n':\r
- case '=':\r
- fprintf(file,"&#%hu;",v);\r
- break;\r
- default:\r
- fputc(v,file);\r
- }\r
- }\r
-}\r
-\r
-// void writeArgBR(FILE *file,const char *name, const char *value)\r
-// {\r
- // unsigned short length, i, v;\r
- // fprintf(file,"%s=",name);\r
- // for(i=0, length=strlen(value);i<length;++i)\r
- // {\r
- // v=((unsigned short)value[i])&0x00ff;\r
- // switch (value[i])\r
- // {\r
- // case '\n':\r
- // fprintf(file,"%s","[br]");\r
- // case '\r':\r
- // break;\r
- // default:\r
- // fputc(v,file);\r
- // }\r
- // }\r
-// }\r
-\r
-void submit()\r
-{\r
- // time_t posttime;\r
- // struct tm *nowS;\r
- char timenumber[256];\r
- char forcepath[512];\r
- char yy[8];\r
- char ff[8];\r
- char rr[4]; \r
- char mm[4];\r
- char dd[4];\r
- char hh[4];\r
- char sf[2]={0,0};\r
- \r
- char arg1[256];\r
- char arg2[256];\r
- char arg3[256];\r
- char arg4[256];\r
- \r
- char newkey[33];\r
- \r
- unsigned char tm, td, th, tr;\r
- unsigned short ty, tf;\r
- \r
- // dup2(fileno(stdout),fileno(stderr));\r
- // printf("Content-type: text/plain\n\n");\r
-\r
-\r
- // posttime=time(NULL);\r
- // nowS=gmtime(&posttime);\r
- \r
- if(forcekey[0]=='\0')\r
- snprintf(newkey,33,"%04X%04X%04X%04X%04X%04X%04X%04X",\r
- (unsigned short)rand(),(unsigned short)rand(),(unsigned short)rand(),(unsigned short)rand(),\r
- (unsigned short)rand(),(unsigned short)rand(),(unsigned short)rand(),(unsigned short)rand());\r
- else\r
- snprintf(newkey,33,"%s",forcekey);\r
- \r
- if(y[0]!='\0')\r
- {\r
- sscanf(y,"%hu",&ty);\r
- snprintf(yy,8,"%04hu",ty);\r
- }\r
- if(m[0]!='\0')\r
- {\r
- sscanf(m,"%hhu",&tm);\r
- snprintf(mm,4,"%02hhu",tm);\r
- }\r
- if(d[0]!='\0')\r
- {\r
- sscanf(d,"%hhu",&td);\r
- snprintf(dd,4,"%02hhu",td);\r
- }\r
- if(h[0]!='\0')\r
- {\r
- sscanf(h,"%hhu",&th);\r
- snprintf(hh,4,"%02hhu",th);\r
- }\r
- if(frame[0]!='\0')\r
- {\r
- if(special)\r
- {\r
- snprintf(ff,8,"%c",frame[0]);\r
- }\r
- else\r
- {\r
- sscanf(frame,"%hu%c",&tf,sf);\r
- snprintf(ff,8,"%04hu%s",tf,sf);\r
- }\r
- }\r
- if(round[0]!='\0')\r
- {\r
- if(special)\r
- snprintf(rr,4,"");\r
- else\r
- {\r
- sscanf(round,"%hhu",&tr);\r
- snprintf(rr,4,"%02hhu",tr);\r
- }\r
- }\r
- \r
- if((ty>0x0fff)||(tm>0x0f)||(td>0x1f)||(th>0x1f))\r
- preview("Time too long");\r
- // I accept invalid time as long as it's not too long\r
- \r
- if (special)\r
- specialid(timenumber,story,frame[0]);\r
- else\r
- id(timenumber,story,tf,sf,tr);\r
- snprintf(postpath,512,"%s%s",MPOST_PATH,timenumber);\r
- if(forceID[0]!='\0')\r
- snprintf(forcepath,512,"%s%s",MPOST_PATH,forceID);\r
- \r
- tempfile=fopen(temppath,"wt");\r
- if(tempfile==NULL)\r
- preview("Couldn't create file.");\r
- tf=true;\r
- writeArgH(tempfile,"timenumber",timenumber);\r
- writeArgH(tempfile,"key",newkey);\r
- writeArgH(tempfile,"username_h",username);\r
- writeArgH(tempfile,"subject_h",subject);\r
- writeArgH(tempfile,"story",story);\r
- if(frame[0]!='\0')writeArgH(tempfile,"frame",ff);\r
- if(round[0]!='\0')writeArgH(tempfile,"round",rr);\r
- writeArgH(tempfile,"BBHTML",message,1);\r
- writeArgH(tempfile,"BB",message,3);\r
- if(h[0]!='\0')writeArgH(tempfile,"h",hh);\r
- if(d[0]!='\0')writeArgH(tempfile,"d",dd);\r
- if(m[0]!='\0')writeArgH(tempfile,"m",mm);\r
- if(y[0]!='\0')writeArgH(tempfile,"y",yy);\r
- if(disable_bbcode[0]!='\0')\r
- writeArg(tempfile,"disable_bbcode",disable_bbcode);\r
- if(disable_smilies[0]!='\0')\r
- writeArg(tempfile,"disable_smilies",disable_smilies);\r
- if(disable_magic_url[0]!='\0')\r
- writeArg(tempfile,"disable_magic_url",disable_magic_url);\r
- if(ID[0]!='\0')\r
- writeArgH(tempfile,"ID",ID);\r
- fclose(tempfile);\r
- tf=false;\r
- \r
- snprintf(arg1,256,"outfile=%s",temppath);\r
- snprintf(arg2,256,"tempfile=%s",temppath2);\r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- setvbuf(stdout, NULL, _IONBF, 0);\r
- dup2(fileno(stdout),fileno(stderr));\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_B2H,"-v",arg1,"-v",arg2,temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- snprintf(arg1,256,"name=%s",username);\r
- snprintf(arg2,256,"pass=%s",password);\r
- snprintf(arg3,256,"story=%s",story);\r
- snprintf(arg4,256,"file=%s",(forceID[0]!='\0')?forcepath:postpath);\r
- \r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VERIFY,"-v",arg1,"-v",arg2,"-v",arg3,"-v",arg4,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- // printf("r=%d\n",r);\r
- \r
- if(r)\r
- preview("Can't submit this post. Not yours or wrong password?");\r
- \r
- if(forceID[0]!='\0')\r
- {\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,forcepath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- }\r
- \r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MV_PATH,MV_PATH,temppath,postpath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- // preview("Couldn't add post to queue.");\r
- preview(postpath);\r
- \r
- printf("Content-type: text/html\n\n");\r
- snprintf(arg1,256,"info=<p>This message has been sent successfully.<br><br><a href=\"/aftertime/view?v=%s&key=%s\">View your submitted message</a><br><br><a href=\"/aftertime/list/\">Return to the list</a></p>",timenumber,newkey);\r
- // printf("Content-type: text/html\n\n");\r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VIEW,"-v",arg1,INFO_PATH,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- printf("<HTML><body>%s</body></html>",arg1);\r
- end(0);\r
-}\r
-void preview (const char *text)\r
-{\r
- char arg1[256];\r
- char arg2[256];\r
- char yy[8];\r
- char ff[8];\r
- char rr[4];\r
- char mm[4];\r
- char dd[4];\r
- char hh[4];\r
- char sf[2]={0,0};\r
- unsigned short ty, tf;\r
- unsigned char tm,td,th, tr;\r
- if(y[0]!='\0')\r
- {\r
- sscanf(y,"%hu",&ty);\r
- ty&=0x0fff;\r
- snprintf(yy,8,"%04hu",ty);\r
- }\r
- if(m[0]!='\0')\r
- {\r
- sscanf(m,"%hhu",&tm);\r
- tm&= 0x0f;\r
- snprintf(mm,4,"%02hhu",tm);\r
- }\r
- if(d[0]!='\0')\r
- {\r
- sscanf(d,"%hhu",&td);\r
- td&= 0x1f;\r
- snprintf(dd,4,"%02hhu",td);\r
- }\r
- if(h[0]!='\0')\r
- {\r
- sscanf(h,"%hhu",&th);\r
- th&= 0x1f;snprintf(hh,4,"%02hhu",th);\r
- }\r
- if(frame[0]!='\0')\r
- {\r
- if(special)\r
- {\r
- snprintf(ff,8,"%c",frame[0]);\r
- }\r
- else\r
- {\r
- sscanf(frame,"%hu%c",&tf,sf);\r
- snprintf(ff,8,"%04hu%s",tf,sf);\r
- }\r
- }\r
- if(round[0]!='\0')\r
- {\r
- if(special)\r
- snprintf(rr,4,"");\r
- else\r
- {\r
- sscanf(round,"%hhu",&tr);\r
- snprintf(rr,4,"%02hhu",tr);\r
- }\r
- }\r
- \r
- tempfile=fopen(temppath,"wt");\r
- if(tempfile==NULL)\r
- end(1);\r
- tf=true;\r
- \r
- writeArgH(tempfile,"message",message);\r
- writeArgH(tempfile,"subject",(subject[0]!='\0')?subject:"Did you notice …");\r
- writeArgH(tempfile,"wrong",text);\r
- writeArgH(tempfile,"username",username);\r
- writeArgH(tempfile,"message",message);\r
- writeArgH(tempfile,"BB",message,3);\r
- if(h[0]!='\0')writeArgH(tempfile,"h",hh);\r
- if(d[0]!='\0')writeArgH(tempfile,"d",dd);\r
- if(m[0]!='\0')writeArgH(tempfile,"m",mm);\r
- if(y[0]!='\0')writeArgH(tempfile,"y",yy);\r
- writeArgH(tempfile,"story",story);\r
- if(frame[0]!='\0')writeArgH(tempfile,"frame",ff);\r
- writeArgH(tempfile,"round",(round[0]!='\0')?rr:"1");\r
- writeArgH(tempfile,"disable_bbcode",disable_bbcode);\r
- writeArgH(tempfile,"disable_smilies",disable_smilies);\r
- writeArgH(tempfile,"disable_magic_url",disable_magic_url);\r
- writeArgH(tempfile,"addquote",addquote);\r
- writeArgH(tempfile,"edit",edit);\r
- writeArgH(tempfile,"forceID",forceID);\r
- writeArgH(tempfile,"key",forcekey);\r
- writeArgH(tempfile,"ID",ID);\r
- fclose(tempfile);\r
- tf=false;\r
- \r
- printf("Content-type: text/html\n\n");\r
- \r
- snprintf(arg1,256,"outfile=%s",temppath);\r
- snprintf(arg2,256,"tempfile=%s",temppath2);\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- setvbuf(stdout, NULL, _IONBF, 0);\r
- dup2(fileno(stdout),fileno(stderr));\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_B2H,"-v",arg1,"-v",arg2,temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- // printf("Content-type: text/html\n\n");\r
- snprintf(arg1,256,"argfile=%s",temppath);\r
- snprintf(arg2,256,"key=%s",key[0]?key:"???");\r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- // setvbuf(stdout, NULL, _IONBF, 0);\r
- // dup2(fileno(stdout),fileno(stderr));\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_PREVIEW,"-v",arg1,"-v",arg2,POST_PATH,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- printf("<HTML><body><p>Ch*rpin* M*stard</p></body></html>");\r
- end(0);\r
-}\r
-\r
-int main()\r
-{\r
- bool missing=false;\r
- \r
- char *arg;\r
- \r
- // printf("Content-type: text/plain\n\n");\r
- \r
- cgi=cgiInit();\r
- srand (time (NULL) + getpid());\r
- \r
- \r
- snprintf(temppath,256,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
- snprintf(temppath2,256,"%s_%lu",TEMP_PATH,(unsigned long)getpid());\r
- \r
- arg=cgiGetValue(cgi,"password");\r
- if(arg!=NULL)\r
- password=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Password is missing.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"username");\r
- if(arg!=NULL)\r
- username=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Name is missing.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"story");\r
- if(arg!=NULL)\r
- {\r
- story=arg;\r
- if(!strcmp(story,"time")); //really shouldn't be hardcoded!\r
- else if(!strcmp(story,"prickly"));
- else if(!strcmp(story,"potm"));\r
- else if(!strcmp(story,"lucky"));\r
- else if(!strcmp(story,"beany"));\r
- else if(!strcmp(story,"bean2"));\r
- else if(!strcmp(story,"t1i"));\r
- else if(!strcmp(story,"zodiac"));\r
- else if(!strcmp(story,"bftf"));\r
- else if(!strcmp(story,"t-1"));\r
- else if(!strcmp(story,"bsta"));\r
- else if(!strcmp(story,"advent"));\r
- else if(!strcmp(story,"phys"));\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Wrong story name.");\r
- }\r
- }\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Story name is missing.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"frame");\r
- if(arg!=NULL)\r
- {\r
- frame=arg;\r
- if((frame[0]>='a')&&(frame[0]<='z'))\r
- special=true;\r
- }\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Frame number is missing.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"round");\r
- if(arg!=NULL)\r
- round=arg;\r
- else\r
- {\r
- if(!special)\r
- {\r
- missing=true;\r
- strcpy(wrong,"Round number was missing. Replaced with default value.");\r
- }\r
- }\r
- arg=cgiGetValue(cgi,"subject");\r
- if(arg!=NULL)\r
- subject=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Subject was missing. Replaced with default value.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"message");\r
- if(arg!=NULL)\r
- message=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Post is empty.");\r
- }\r
- \r
- \r
- arg=cgiGetValue(cgi,"y");\r
- if(arg!=NULL)\r
- y=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Time not specified.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"m");\r
- if(arg!=NULL)\r
- m=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Time not specified.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"d");\r
- if(arg!=NULL)\r
- d=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Time not specified.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"h");\r
- if(arg!=NULL)\r
- h=arg;\r
- else\r
- {\r
- missing=true;\r
- strcpy(wrong,"Time not specified.");\r
- }\r
- \r
- arg=cgiGetValue(cgi,"disable_bbcode");\r
- if(arg!=NULL)\r
- disable_bbcode=arg;\r
- \r
- arg=cgiGetValue(cgi,"disable_smilies");\r
- if(arg!=NULL)\r
- disable_smilies=arg;\r
- \r
- arg=cgiGetValue(cgi,"disable_magic_url");\r
- if(arg!=NULL)\r
- disable_magic_url=arg;\r
- \r
- arg=cgiGetValue(cgi,"Preview");\r
- if(arg!=NULL)\r
- Preview=arg;\r
- \r
- arg=cgiGetValue(cgi,"post");\r
- if(arg!=NULL)\r
- post=arg;\r
- \r
- arg=cgiGetValue(cgi,"q");\r
- if(arg!=NULL)\r
- addquote=arg;\r
- \r
- arg=cgiGetValue(cgi,"e");\r
- if(arg!=NULL)\r
- edit=arg;\r
- \r
- arg=cgiGetValue(cgi,"forceID");\r
- if(arg!=NULL)\r
- forceID=arg;\r
- \r
- arg=cgiGetValue(cgi,"key");\r
- if(arg!=NULL)\r
- key=arg;\r
- \r
- arg=cgiGetValue(cgi,"forcekey");\r
- if(arg!=NULL)\r
- forcekey=arg;\r
- \r
- arg=cgiGetValue(cgi,"ID");\r
- if(arg!=NULL)\r
- ID=arg;\r
- \r
- if(strcmp(post,"Submit")==0)\r
- {\r
- if(missing)\r
- preview(wrong);\r
- else\r
- submit();\r
- }\r
- else\r
- preview("");\r
- \r
- return 0;\r
- \r
-}\r
-\r
-void id(char *timenumber, char *story, unsigned short frame, char *subframe, unsigned char round)\r
-{\r
- snprintf(timenumber,256,"%s-%04hu%s-%02hhu",story,frame,subframe,round);\r
-}\r
-void specialid(char *timenumber, char *story, char frame)\r
-{\r
- snprintf(timenumber,256,"%s-%c",story,frame);\r
-} \r
+++ /dev/null
-#// posted.awk\r
-#// Display one entry in the post list\r
-#// 31.03.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-BEGIN{\r
- FS="="\r
- passpath="/eizm/mem/aftertime/pass/"\r
- # for(i=0;i<256;++i)\r
- # {\r
- # ch=sprintf("%c",i)\r
- # hex=sprintf("%02X",i);\r
- # ch2hex[ch]=hex\r
- # }\r
-};\r
-{\r
- gsub(/[\r\n]/,"",$0)\r
- eq=index($0,"=")\r
- argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
-};\r
-END{\r
- passfile = passpath argtab["story"]\r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
- \r
- if(namef!=name||passf!=pass)\r
- exit 1;\r
- if (r2==0)\r
- class="plw"\r
- else\r
- class="plv"\r
- print "<tr class=\""class"\"><td class=\"plk\">"argtab["timenumber"]"</td><td class=\"plk\">"argtab["y"]"-"argtab["m"]"-"argtab["d"]" "argtab["h"]":00</td><td class=\"plk\">"argtab["subject_h"]"</td><td class=\"plk\"><a href=\"/aftertime/view?v="argtab["timenumber"]"&key="argtab["key"]"\">view</a> <a href=\"/aftertime/post?q="argtab["timenumber"]"&key="argtab["key"]"\">quote</a> <a href=\"/aftertime/post?e="argtab["timenumber"]"&key="argtab["key"]"\">edit</a> <a href=\"/aftertime/remove?r="argtab["timenumber"]"&key="argtab["key"]"\">remove</a>"(argtab["ID"]!=""?" <a href=\"http://forums.xkcd.com/viewtopic.php?p="argtab["ID"]"#p"argtab["ID"]"\">OTT</a>":"")"</td></tr>"\r
-}\r
-# function urlencode(name,all, len,iii,escaped,ch)\r
-# {\r
- # len=length(name)\r
- # escaped=""\r
- # for(iii=1;iii<=len;++iii)\r
- # {\r
- # ch=substr(name,iii,1);\r
- # if ((ch ~ /[a-zA-Z0-9\.\-_~]/)&&(all==""))\r
- # escaped = escaped ch\r
- # else\r
- # escaped = escaped "%" ch2hex[ch]\r
- # }\r
- # return escaped\r
-# }
\ No newline at end of file
+++ /dev/null
-// posted.c (1190.bicyclesonthemoon.info/aftertime/list)\r
-// Display the post list\r
-// 29.03.2015\r
-// \r
-// Copyright (C) 2015 Balthasar Szczepański\r
-// \r
-// This program is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU Affero General Public License as\r
-// published by the Free Software Foundation, either version 3 of the\r
-// License, or (at your option) any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-// GNU Affero General Public License for more details.\r
-// \r
-// You should have received a copy of the GNU Affero General Public License\r
-// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-#include <cgi.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <unistd.h>\r
-#include <sys/wait.h>\r
-\r
-#define TEMP_PATH "/eizm/tmp/aftertime/posted."\r
-#define POST_PATH "/eizm/mem/aftertime/mpost/"\r
-#define LS_PATH "/bin/ls"\r
-#define RM_PATH "/bin/rm"\r
-#define MAWK_PATH "/usr/bin/mawk"\r
-#define AWK_POSTED "/eizm/pro/aftertime/posted.awk"\r
-\r
-s_cgi *cgi;\r
-pid_t sub;\r
-int r;\r
-\r
-int main(int argc, char **argv)\r
-{\r
- char temppath[256]="";\r
- char line[512];\r
- char filename[512];\r
- char postpath[512];\r
- char argp1[256];\r
- char argp2[256];\r
- FILE *tempfile;\r
- // FILE *postfile;\r
- unsigned char i;\r
- // unsigned char sent;\r
- char zero='\0';\r
- char *value;\r
- char *username;\r
- char *password;\r
- // dup2(fileno(stdout),fileno(stderr));\r
- cgi=cgiInit();\r
- \r
- username=((value=cgiGetValue(cgi,"username"))?value:&zero);\r
- password=((value=cgiGetValue(cgi,"password"))?value:&zero);\r
- // sent=cgiGetValue(cgi,"sent");\r
- sprintf(argp1,"name=%s",username);\r
- sprintf(argp2,"pass=%s",password);\r
- \r
- \r
- sprintf(temppath,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
- \r
- printf("Content-type: text/html\n\n");\r
- printf("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"\">\n");\r
- printf("<html lang=\"en\"><head>\n");\r
- printf("<title>time after Time • Bicycles on the Moon</title>\n");\r
- printf("<meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\">\n");\r
- printf("<link rel=\"icon\" type=\"image/png\" href=\"/img/favicon.png\">\n");\r
- printf("<link rel=\"stylesheet\" href=\"/css/botm.css\">\n");\r
- printf("</head><body><a href=\"/\"><img src=\"/img/botmlogo2.png\" alt=\"1190.bicyclesonthemoon.info\" border=\"0\"></a>\n");\r
- printf("<h1>time after Time</h1>\n");\r
- // printf("(<a href=\"/silentbot/view?v=st0_1\">some explanation</a>)<br>\n");\r
- printf("<form method=\"post\" action=\"/aftertime/list\"><table>\n");\r
- printf("<tr><td><b>Username: </b></td><td><input type=\"text\" name=\"username\" class=\"pt\" value=\"%s\"></td></tr>\n",username);\r
- printf("<tr><td><b>Password: </b></td><td><input type=\"text\" name=\"password\" class=\"pt\"></td></tr>\n");\r
- printf("<tr><td></td><td><input type=\"submit\" class=\"pk\" value=\"Reload list\"></td></tr></table></form>\n");\r
- printf("<b><a href=\"/aftertime/post\">Write a post</a></b><br><br>\n");\r
- printf("<form action=\"/aftertime/upload\" method=\"post\" enctype=\"multipart/form-data\">\n");\r
- printf("<input type=\"submit\" class=\"pk\" value=\"Upload a file:\"><input type=\"file\" name=\"up\"><br><!-- (<a href=\"#\">file format</a> - <b class=\"br\">23.03.2015</b>) --></form><br><br>\n");\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- if(freopen(temppath,"wt",stdout)==NULL)\r
- exit(255);\r
- r=execl(LS_PATH,LS_PATH,"-1","--color=never",POST_PATH,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- printf("No messages.<br>\n");\r
- else\r
- {\r
- printf("<table class=\"pl\"><tr class=\"pls\"><td colspan=\"4\">Waiting</td></tr>\n");\r
- printf("<tr class=\"plt\"><td class=\"plk\">ID</td><td class=\"plk\">post time</td><td class=\"plk\">subject</td><td class=\"plk\">action</td></tr>\n");\r
- \r
- if(password!=NULL)\r
- {\r
- tempfile=fopen(temppath,"rt");\r
- if(tempfile!=NULL)\r
- {\r
- for(i=0; fgets(line,511,tempfile)!=NULL; ++i)\r
- {\r
- sscanf(line,"%s",filename);\r
- sprintf(postpath,"%s%s",POST_PATH,filename);\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(!sub)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_POSTED,"-v",i&0x1?"r2=1":"r2=0","-v",argp1,"-v",argp2,postpath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- --i;\r
- \r
- }\r
- fclose(tempfile);\r
- }\r
- }\r
- printf("</table><br>\n");\r
-\r
- }\r
- \r
- printf("<br><a href=\"/\">1190.bicyclesonthemoon.info</a></body></html>\n");\r
- \r
- fflush(stdout);\r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- return 0;\r
-}\r
+++ /dev/null
-#// preview.awk\r
-#// Preview a post in the post edit interface\r
-#// 25.05.2021\r
-#// \r
-#// Copyright (C) 2015, 2021 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- postpath="/eizm/mem/aftertime/mpost/"\r
- \r
- HTML="<div class=\"pl\"><div class=\"pls\">Preview: %s</div><div class=\"plw\">%s</div></div><br>"\r
- wrong="<div class=\"plt\"><b>%s</b></div>\n"\r
- postid="<input tabindex=\"1\" name=\"story\" id=\"story\" size=\"6\" value=\"%s\" class=\"pt\" type=\"text\"><b> frame: </b><input tabindex=\"2\" name=\"frame\" id=\"frame\" size=\"4\" value=\"%s\" class=\"pt\" type=\"text\"><b> round: </b><input tabindex=\"3\" name=\"round\" id=\"round\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
- subject="<input type=\"text\" name=\"subject\" id=\"subject\" size=\"40\" maxlength=\"60\" tabindex=\"4\" value=\"%s\" class=\"pt\">\n"\r
- username="<input tabindex=\"5\" name=\"username\" id=\"username\" size=\"40\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
- time="<b>Y: </b><input tabindex=\"7\" name=\"y\" id=\"year\" size=\"4\" value=\"%s\" class=\"pt\" type=\"text\"><b> M: </b><input tabindex=\"8\" name=\"m\" id=\"month\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> D: </b><input tabindex=\"9\" name=\"d\" id=\"day\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> H: </b><input tabindex=\"10\" name=\"h\" id=\"hour\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
- \r
- ottid="<input tabindex=\"11\" name=\"ID\" id=\"ID\" size=\"7\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
- message="<textarea name=\"message\" id=\"message\" rows=\"17\" tabindex=\"12\" class=\"pt\" >%s%s</textarea>\n"\r
- back="<a href=\"/aftertime/list%s\">back to the list</a>\n"\r
- \r
- disable_bbcode="<input class=\"pt\" type=\"checkbox\" name=\"disable_bbcode\" id=\"disable_bbcode\" %s > <b>Disable BBcode</b><br>\n"\r
- disable_smilies="<input class=\"pt\" type=\"checkbox\" name=\"disable_smilies\" id=\"disable_smilies\" %s > <b>Disable smilies</b><br>\n"\r
- disable_magic_url="<input class=\"pt\" type=\"checkbox\" name=\"disable_magic_url\" id=\"disable_magic_url\" %s > <b>Do not automatically parse URLs</b><br>\n"\r
- \r
- \r
- forceID="<input type=\"hidden\" name=\"forceID\" value=\"%s\">\n"\r
- forcekey="<input type=\"hidden\" name=\"forcekey\" value=\"%s\">\n"\r
- \r
- addquote=""\r
- \r
- # print "<!--preview.awk:\nargfile=" argfile\r
- while((getline argline < argfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",argline)\r
- eq=index(argline,"=")\r
- argtab[substr(argline,1,eq-1)]=substr(argline,eq+1)\r
- # print substr(argline,1,eq-1) "=" argtab[substr(argline,1,eq-1)]\r
- }\r
- # print "-->"\r
- close(argfile)\r
- if(argtab["edit"] ~ /^[a-zA-Z0-9]+\-(([0-9]+[a-z]?\-[0-9]+)|([a-z]))$/)\r
- {\r
- argtab["forceID"]=argtab["edit"] ### reused from where it made more sense\r
- argfile= postpath argtab["forceID"]\r
- \r
- while((getline argline < argfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",argline)\r
- eq=index(argline,"=")\r
- if(argline ~ /^key=/)\r
- {\r
- if(substr(argline,eq+1)!=key)\r
- {\r
- argtab["wrong"]="Invalid key."\r
- break;\r
- }\r
- argtab["key"]=substr(argline,eq+1)\r
- }\r
- else if(argline ~ /^((username)|(subject))_h=/)\r
- argtab[substr(argline,1,eq-3)]=substr(argline,eq+1)\r
- else if(argline ~ /^BBHTML=/)\r
- {\r
- argtab["message"]=substr(argline,eq+1)\r
- gsub(/<br>/,"\n",argtab["message"])\r
- }\r
- else if(argline ~ /^((BB)|(username)|(subject)|(message)|(HTML)|(debug))=/)\r
- {}\r
- else\r
- argtab[substr(argline,1,eq-1)]=substr(argline,eq+1)\r
- }\r
- close(argfile)\r
- }\r
- else if(argtab["addquote"] ~ /^[a-zA-Z0-9]+\-(([0-9]+[a-z]?\-[0-9]+)|([a-z]))$/)\r
- {\r
- argfile= postpath argtab["addquote"]\r
- while((getline argline < argfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",argline)\r
- eq=index(argline,"=")\r
- if(argline ~ /^key=/)\r
- {\r
- if(substr(argline,eq+1)!=key)\r
- {\r
- argtab["wrong"]="Invalid key."\r
- break;\r
- }\r
- }\r
- else if(argline ~ /^BBHTML=/)\r
- {\r
- addquotehtml=substr(argline,eq+1)\r
- gsub(/<br>/,"\n",addquotehtml)\r
- }\r
- if(argline ~ /^username_h=/)\r
- addquotename=substr(argline,eq+1)\r
- if(argline ~ /^subject_h/)\r
- {\r
- addquotesub=substr(argline,eq+1)\r
- if(addquotesub ~ /^Re:/)\r
- argtab["subject"]=addquotesub\r
- else\r
- argtab["subject"]="Re: "addquotesub\r
- }\r
- if(argline ~ /^y=/)\r
- {\r
- argtab["y"]=substr(argline,eq+1)\r
- }\r
- if(argline ~ /^d=/)\r
- {\r
- argtab["d"]=substr(argline,eq+1)\r
- }\r
- if(argline ~ /^m=/)\r
- {\r
- argtab["m"]=substr(argline,eq+1)\r
- }\r
- if(argline ~ /^h=/)\r
- {\r
- argtab["h"]=substr(argline,eq+1)\r
- }\r
- }\r
- close(argfile)\r
- if(addquotehtml!="")\r
- addquote="[quote=""addquotename""]"addquotehtml"[/quote]"\r
- }\r
-};\r
-{\r
- if ($0 ~ /^###HTML/)\r
- {\r
- if((argtab["HTML"]!="")&&(argtab["wrong"]==""))\r
- printf(HTML,(argtab["story"]!=""?argtab["story"]:"???")"-"(argtab["frame"]!=""?argtab["frame"]:"???")"-"(argtab["round"]!=""?argtab["round"]:"???")" • "argtab["subject"],argtab["HTML"])\r
- }\r
- else if ($0 ~ /^###wrong/)\r
- {\r
- if(argtab["wrong"]!="")\r
- printf(wrong,argtab["wrong"])\r
- }\r
- else if ($0 ~ /^###subject/)\r
- printf(subject,argtab["subject"])\r
- else if ($0 ~ /^###username/)\r
- printf(username,argtab["username"])\r
- else if ($0 ~ /^###message/)\r
- printf(message,argtab["message"],addquote)\r
- else if ($0 ~ /^###time/)\r
- printf(time,argtab["y"],argtab["m"],argtab["d"],argtab["h"])\r
- else if ($0 ~ /^###postid/)\r
- printf(postid,argtab["story"],argtab["frame"],argtab["round"])\r
- else if ($0 ~ /^###future/)\r
- {\r
- #\r
- }\r
- else if ($0 ~ /^###forceID/)\r
- {\r
- if(argtab["forceID"]!="")\r
- printf(forceID,argtab["forceID"])\r
- }\r
- else if ($0 ~ /^###ottid/)\r
- printf(ottid,argtab["ID"])\r
- else if ($0 ~ /^###forcekey/)\r
- {\r
- if(argtab["key"]!="")\r
- printf(forcekey,argtab["key"])\r
- }\r
- else if ($0 ~ /^###img/)\r
- {\r
- print img\r
- }\r
- else if ($0 ~ /^###back/)\r
- {\r
- printf(back,"")\r
- }\r
- else if ($0 ~ /^###debug/)\r
- {\r
- gsub(/###nl;/,"\n",argtab["debug"])\r
- gsub(/-/," - ",argtab["debug"])\r
- print "<!-- "argtab["debug"]" -->"\r
- }\r
- else if ($0 ~ /^###disable_bbcode/)\r
- printf(disable_bbcode,(argtab["disable_bbcode"]=="on")?"checked=\"checked\"":"")\r
- else if ($0 ~ /^###disable_smilies/)\r
- printf(disable_smilies,(argtab["disable_smilies"]=="on")?"checked=\"checked\"":"")\r
- else if ($0 ~ /^###disable_magic_url/)\r
- printf(disable_magic_url,(argtab["disable_magic_url"]=="on")?"checked=\"checked\"":"")\r
- \r
- else\r
- print $0\r
-};\r
+++ /dev/null
-// remove.c (1190.bicyclesonthemoon.info/aftertime/remove)\r
-// remove a post\r
-// 15.04.2019\r
-// \r
-// Copyright (C) 2015, 2019 Balthasar Szczepański\r
-// \r
-// This program is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU Affero General Public License as\r
-// published by the Free Software Foundation, either version 3 of the\r
-// License, or (at your option) any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-// GNU Affero General Public License for more details.\r
-// \r
-// You should have received a copy of the GNU Affero General Public License\r
-// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-#include <cgi.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <unistd.h>\r
-#include <sys/wait.h>\r
-\r
-#define POST_PATH "/eizm/mem/aftertime/mpost/"\r
-#define RMOV_PATH "/eizm/mem/aftertime/mpost/rm/"\r
-#define MV_PATH "/bin/mv"\r
-#define MAWK_PATH "/usr/bin/mawk"\r
-#define AWK_VERIFY "/eizm/pro/aftertime/verify.awk"\r
-\r
-int main(int argc, char **argv)\r
-{\r
- s_cgi *cgi;\r
- pid_t sub;\r
- int r;\r
- \r
- char zero='\0';\r
- char *rmov = &zero;\r
- char *arg;\r
- char *username;\r
- char *password;\r
- char inpath[256];\r
- char outpath[256];\r
- char argp1[256];\r
- char argp2[256];\r
- char argp3[256];\r
- \r
- cgi=cgiInit();\r
- \r
- // dup2(fileno(stdout),fileno(stderr));\r
- // printf("Content-type: text/plain\n\n");\r
- \r
- rmov=((arg=cgiGetValue(cgi,"r"))?arg:&zero);\r
- \r
- username=((arg=cgiGetValue(cgi,"username"))?arg:&zero);\r
- password=((arg=cgiGetValue(cgi,"password"))?arg:&zero);\r
- if(username[0]=='\0'||password[0]=='\0')\r
- {\r
- arg=cgiGetValue(cgi,"r");\r
- if(arg!=NULL)\r
- rmov=arg;\r
- printf("Content-type: text/html\n\n");\r
- printf("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"\">\n");\r
- printf("<html lang=\"en\"><head>\n");\r
- printf("<title>time after Time • Bicycles on the Moon</title>\n");\r
- printf("<meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\">\n");\r
- printf("<link rel=\"icon\" type=\"image/png\" href=\"/img/favicon.png\">\n");\r
- printf("<link rel=\"stylesheet\" href=\"/css/botm.css\">\n");\r
- printf("</head><body>\n");\r
- printf("<img src=\"/img/botmlogo2.png\" alt=\"1190.bicyclesonthemoon.info\" border=\"0\">\n");\r
- printf("<h1>time after Time</h1>\n");\r
- printf("<form action=\"/aftertime/remove\" method=\"post\">\n");\r
- printf("<b>Remove post %s?</b><table>\n",rmov);\r
- printf("<tr><td><b>Username: </b></td><td><input type=\"text\" name=\"username\" class=\"pt\" value=\"%s\"></td></tr>\n",username);\r
- printf("<tr><td><b>Password: </b></td><td><input type=\"text\" name=\"password\" class=\"pt\"></td></tr>\n");\r
- printf("<tr><td><input type=\"hidden\" name=\"r\" value=\"%s\"></td><td><input type=\"submit\" class=\"pk\" value=\"Remove\"></td></tr></table></form>\n",rmov);\r
- printf("<br><a href=\"/\">1190.bicyclesonthemoon.info</a></body></html>\n");\r
- return 0;\r
- }\r
- \r
- snprintf(inpath,256,"%s%s",POST_PATH,rmov);\r
- \r
- snprintf(argp1,256,"name=%s",username);\r
- snprintf(argp2,256,"pass=%s",password);\r
- snprintf(argp3,256,"file=%s",inpath);\r
- \r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VERIFY,"-v",argp1,"-v",argp2,"-v",argp3,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- if(r)\r
- {\r
- cgiRedirect("/aftertime/list");\r
- return(0);\r
- }\r
- snprintf(outpath,256,"%s%s",RMOV_PATH,rmov);\r
- \r
- sub=fork();\r
- if(sub==0)\r
- {\r
- r=execl(MV_PATH,MV_PATH,inpath,outpath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- cgiRedirect("/aftertime/list");\r
- return 0;\r
-}
\ No newline at end of file
+++ /dev/null
-# // undertext_bb2html.awk
-# // convert undertext bbcode to html
-# // 5.06.2019
-# //
-# // Copyright (C) 2015, 2019 Balthasar Szczepański
-# //
-# // This program is free software: you can redistribute it and/or modify
-# // it under the terms of the GNU Affero General Public License as
-# // published by the Free Software Foundation, either version 3 of the
-# // License, or (at your option) any later version.
-# //
-# // This program is distributed in the hope that it will be useful,
-# // but WITHOUT ANY WARRANTY; without even the implied warranty of
-# // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# // GNU Affero General Public License for more details.
-# //
-# // You should have received a copy of the GNU Affero General Public License
-# // along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-BEGIN{
- FS=""
- for(i=0;i<256;++i)
- {
- ch=sprintf("%c",i)
- hex=sprintf("%02X",i)
- hexl=sprintf("%02x",i)
- dec=sprintf("%u",i)
- ch2hex[ch]=hex
- ch2hexl[ch]=hexl
- ch2dec[ch]=dec
- }
- argtabsize=0
- undertext=""
-}
-{
- file=1
- gsub(/[\r\n]/, "", $0)
-
- if ($0 == "" && !undertext)
- {
- undertext=1
- if (!("text" in argtab))
- {
- argtabind[argtabsize]="text"
- ++argtabsize
- }
- argtab["text"]=""
- }
- else if (undertext)
- {
- argtab["text"] = argtab["text"] $0 "\n"
- }
- else
- {
- eq=index($0, "=")
-
- if (!(substr($0, 1, eq-1) in argtab))
- {
- argtabind[argtabsize]=substr($0, 1, eq-1)
- ++argtabsize
- }
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)
- }
-}
-END{
- if (file=="")
- exit 1
-
- if (argtab["text"]!="")
- {
- if (!("HTML" in argtab))
- {
- argtabind[argtabsize]="HTML"
- ++argtabsize
- }
- argtab["HTML"]=bb2html(argtab["text"])
-
- }
-
- for (i=0; i<argtabsize; ++i)
- {
- if(argtabind[i]!="text")
- print argtabind[i]"="argtab[argtabind[i]]
- }
- print ""
- if (argtab["text"]!="")
- {
- printf ("%s",argtab["text"])
- }
-}
-
-function bb2html(text, depth,count,bbtree,html,tag,tagstart,taglength,elm,tagv,tagname,tagvalue,matchname)
-{
- depth=0
- count[0]=1
- bbtree["0"]=""
- bbtree["0.n"]=0
- bbtree["0.t"]="post"
- bbtree["0.v"]=argtab["subject"]
- html=""
- # gsub(/=/,"=",text)
- debug = debug "\n\nBuild BBcode tree:"
- while(length(text)!=0)
- {
- tag=match(text, /\[\/?[a-z0-9\*]+(=(([^\[<>\"\]]*)|(\"[^\"<>]*\")))?\]/)
- #"#\""
- if (tag==0)
- {
- debug = debug "\ntext: " text
- bbtree[ind(count,depth)]=text
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- text=""
- break;
- }
- tagstart=RSTART
- taglength=RLENGTH
- if(tagstart>1)
- {
- elm=substr(text,1,tagstart-1)
- debug = debug "\ntext: " elm
- bbtree[ind(count,depth)]=elm
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- }
- tag=substr(text,tagstart,taglength)
- text=substr(text,tagstart+taglength)
- debug = debug "\ntag: " tag
- if(tag!~/^\[\//)
- {
- tagv=index(tag,"=")
- if(tagv<2)
- {
- tagname=substr(tag,2,length(tag)-2)
- tagvalue=""
- }
- else
- {
- tagname=substr(tag,2,tagv-2)
- tagvalue=substr(tag,tagv+1,length(tag)-tagv-1)
- }
- if(tagname !~ /^((quote)|b|i|u|(code)|(img)|(url)|(size)|(color)|(center)|(right)|(sub)|(sup)|(s)|(spoiler)|(list)|(br)|(\*))$/)
- {
- debug = debug "\nunknown tag"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||bbtree[indt(count,depth)".t"] == "img"||(bbtree[indt(count,depth)".t"] == "spoiler" && tagname=="spoiler")||(bbtree[indt(count,depth)".t"] == "size" && tagname=="size"))
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if(tagname=="*")
- {
- if(bbtree[indt(count,depth)".t"]==tagname)
- {
- debug = debug "\nimplied tag: [/"tagname"]"
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]="[/"tagname"]"
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]=tagname
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- else if(bbtree[indt(count,depth)".t"]!="list")
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- }
- debug = debug "\nname: " tagname " value: " tagvalue
- bbtree[ind(count,depth)]=tagname" "tagvalue
- bbtree[ind(count,depth)".k"]="s"
- bbtree[indt(count,depth)".n"]=count[depth]
- ++depth
- count[depth]=1
- bbtree[indt(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=0
- bbtree[indt(count,depth)".t"]=tagname
- bbtree[indt(count,depth)".v"]=tagvalue
-
- if(tagname=="br") #or other single tags in the future
- {
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]=tag
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]=tagname
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- }
- else
- {
- if(depth<=0)
- {
- debug = debug "\n""unmatched"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- tagname=substr(tag,3,length(tag)-3)
- if(tagname=="list"&&bbtree[indt(count,depth)".t"]=="*")
- {
- debug = debug "\nimplied tag: [/*]"
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]="[/*]"
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]="*"
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- debug = debug "\nname: " tagname
- matchname=bbtree[indt(count,depth)".t"]
- if((bbtree[indt(count,depth)".t"] == "code" && tagname!="code")||(bbtree[indt(count,depth)".t"] == "img" && tagname != "img"))
- {
- debug = debug "\nthis tag forbidden here"
- bbtree[ind(count,depth)]=tag
- bbtree[indt(count,depth)".n"]=count[depth]
- ++count[depth]
- continue
- }
- if(tagname!=matchname)
- {
- debug = debug "\nmismatched: " matchname
- # bbtree[ind(count,depth)]=tag
- # bbtree[indt(count,depth)".n"]=count[depth]
- # ++count[depth]
- # continue
- bbtree[ind(count,depth)]=tag
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".t"]=bbtree[indt(count,depth)".t"]
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- count[depth]=""
- --depth
- ++count[depth]
- continue
- }
- debug = debug "\nmatched"
- bbtree[ind(count,depth)]=tag
- bbtree[ind(count,depth)".k"]="e"
- bbtree[ind(count,depth)".m"]=1
- bbtree[ind(count,depth)".t"]=tagname
- bbtree[ind(count,depth)".v"]=bbtree[indt(count,depth)".v"]
- bbtree[indt(count,depth)".n"]=count[depth]
- bbtree[indt(count,depth)".m"]=1
- count[depth]=""
- --depth
- ++count[depth]
- }
- }
- if(depth>0)
- debug = debug "\nunclosed tags: " depth
-
- debug = debug "\n\n""generate HTML:"
- depth=0
- count[0]=0
- while(count[0]<=bbtree["0.n"]&&depth>=0)
- {
- if(count[depth]==0)
- {
- tag=bbtree[indt(count,depth)]
- tagname=bbtree[indt(count,depth)".t"]
- tagvalue=bbtree[indt(count,depth)".v"]
- debug = debug "\nname: "tagname" value: "tagvalue" elements: "bbtree[indt(count,depth)".n"]
- if(tagname == "post")
- {
- }
- else if(bbtree[indt(count,depth)".m"]=="")
- {
- debug = debug "\nunmatched"
- html = html htmlescape(tag)
- }
- else if(tagname == "quote")
- {
- if (tagvalue=="")
- {
- html = html "<blockquote class=\"pq\"><div>"
- }
- else
- {
- if(tagvalue !~ /^\".*\"$/)
- #"#\""
- tagvalue="You forgot about the quote marks, "htmlescape(tagvalue)
- else
- tagvalue=bb2html(substr(tagvalue,2,length(tagvalue)-2))
- html = html "<blockquote class=\"pq\"><div><cite class=\"pq\"><b class=\"br\">"tagvalue"</b> wrote:</cite><br>"
- }
- }
- else if (tagname == "b")
- {
- html = html"<span style=\"font-weight: bold\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "i")
- {
- html = html"<span style=\"font-style: italic\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "u")
- {
- html = html"<span style=\"text-decoration: underline\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "code")
- {
- if(bbtree[indtu(count,depth)".t"] == "code")
- {
- html=html htmlescape(tag)
- debug = debug "\nnot a tag, actually"
- }
- else
- {
- html=html"<dl class=\"pq\"><dt class=\"pq\">Code: <a href=\"#\" onclick=\"selectCode(this); return false;\">Select all</a></dt><dd><code class=\"pq\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- }
- else if (tagname == "img")
- html=html"<img src=\""
- else if (tagname == "url")
- {
- if(tagvalue=="")
- {
- ++count[depth]
- tagvalue=bbtree[ind(count,depth)]
- --count[depth]
- debug = debug "\nimplied value: " tagvalue
- }
- html=html"<a href=\""htmlescape(tagvalue)"\" class=\"postlink\">"
- }
- else if (tagname == "size")
- {
- if (tagvalue==""||(tagvalue !~ /^[0-9]+$/)||(tagvalue+0)>200)
- html=html"<span style=\"font-size: 130%; line-height: 116%;\"> This tag should have a correct value. "
- else
- html=html"<span style=\"font-size: "htmlescape(tagvalue)"%; line-height: 116%;\">"
- }
- else if (tagname == "color")
- {
- if (tagvalue==""||tagvalue !~ /^#[0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]$/) #for some reason /^([0-9A-F]{6})$/ doesn't work.
- html=html"<span style=\"color: #EE0000\"> This tag should have a correct value. "
- else
- html=html"<span style=\"color: "htmlescape(tagvalue)"\">"
- }
- else if (tagname ~ /^((center)|(right))$/)
- {
- html=html"<div align=\""tagname"\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="s")
- {
- html=html"<strike>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="sub")
- {
- html=html"<sub>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname =="sup")
- {
- html=html"<sup>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname=="spoiler")
- {
- html=html"<div style=\"margin:20px; margin-top:5px\"><div class=\"quotetitle\"><b>Spoiler:</b> <input type=\"button\" class=\"pk\" value=\"Show\" style=\"width:45px;font-size:10px;margin:0px;padding:0px;\" onclick=\"if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }\" /></div><div class=\"quotecontent\"><div style=\"display: none;\">"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname=="list")
- {
- if(tagvalue=="")
- html=html"<ul>"
- else
- {
- if (tagvalue=="1")
- tagvalue="decimal"
- else if (tagvalue=="i")
- tagvalue="lower-roman"
- else if (tagvalue=="I")
- tagvalue="upper-roman"
- else if (tagvalue=="a")
- tagvalue="lower-alpha"
- else if (tagvalue=="A")
- tagvalue="upper-alpha"
- else
- {
- html=html"This tag should have a correct value. "
- tagvalue="decimal"
- }
- html=html"<ol style=\"list-style-type: "tagvalue"\">"
- }
- }
- else if (tagname=="*")
- {
- html=html"<li>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if (tagname == "br")
- {
- html = html"<br>"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else
- {
- debug = debug "\nunknown tag"
- html = html htmlescape(tag)
- }
- ++count[depth]
- }
- else if(bbtree[ind(count,depth)".k"]=="s")
- {
- debug = debug "\nentering tag:"
- ++depth
- count[depth]=0
- }
- else if(bbtree[ind(count,depth)".k"]=="e")
- {
- debug = debug "\nleaving tag:"
- tag=bbtree[ind(count,depth)]
- tagname=bbtree[ind(count,depth)".t"]
- tagvalue=bbtree[ind(count,depth)".v"]
- debug = debug "\nname: "tagname" value: "tagvalue
- if (tagname == "post")
- {
- }
- else if(bbtree[ind(count,depth)".m"]=="")
- {
- debug = debug "\nunmatched"
- html = html htmlescape(tag)
- }
- else if(tagname == "quote")
- html = html "</div></blockquote>"
- else if (tagname ~/^(b|i|u|(size)|(color))$/)
- html = html"</span>"
- else if (tagname == "code")
- {
- if(bbtree[indtu(count,depth)".t"] == "code")
- {
- html=html htmlescape(tag)
- debug = debug "\nnot a tag, actually"
- }
- else
- html = html"</code></dd></dl>"
- }
- else if (tagname == "img")
- {
- html = html"\" alt=\"Image\" />"
- if(tagvalue!="")
- html=html"This tag shouldn't have any value. "
- }
- else if(tagname=="url")
- html=html"</a>"
- else if (tagname ~ /^((center)|(right))$/)
- html=html"</div>"
- else if (tagname =="s")
- html=html"</strike>"
- else if (tagname =="sub")
- html=html"</sub>"
- else if (tagname =="sup")
- html=html"</sup>"
- else if (tagname=="spoiler")
- html=html"</div></div></div>"
- else if (tagname=="list")
- {
- if (tagvalue=="")
- html=html"</ul>"
- else
- html=html"</ol>"
- }
- else if (tagname=="*")
- html=html"</li>"
- else if (tagname == "br") #
- {
- #
- }
- else
- {
- debug = debug "\nunknown tag"
- html = html htmlescape(tag)
- }
- count[depth]=""
- --depth
- ++count[depth]
- }
- else if(count[depth]>bbtree[indt(count,depth)".n"])
- {
- debug = debug "\nrun out of elements in this tag; leaving"
- count[depth]=""
- --depth
- ++count[depth]
- }
- else
- {
- tag=bbtree[ind(count,depth)]
- debug = debug "\ntext: "tag
-
- tag=htmlescape(tag,"","br")
-
- if(bbtree[indt(count,depth)".t"] == "code")
- {
- gsub(/ /,"\\ ",tag)
- gsub(/\t/,"\\ \\ ",tag)
- }
- else{
- gsub(/ /,"\\ ",tag)
- gsub(/ /," \\ ",tag)
- # gsub(/<br> /,"<br>\\ ",tag)
- }
-
-
- if(nourl==""&& bbtree[indt(count,depth)".t"] !~ /^((code)|(img)|(url))$/)
- gsub(/https?:\/\/[^\n\r\t<> ]+/,"<a href=\"&\" class=\"postlink\">&</a>",tag)
- # if(nosmil=="" && bbtree[indt(count,depth)".t"] !~ /^((code)|(img))$/)
- # {
- # gsub(/(^|[\n\r\t ]):D($|[\n\r\t ])/," <img title=\"Very Happy\" alt=\":D\" src=\"http://forums.xkcd.com/images/smilies/icon_biggrin.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\)($|[\n\r\t ])/," <img title=\"Smile\" alt=\":)\" src=\"http://forums.xkcd.com/images/smilies/icon_smile.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\(($|[\n\r\t ])/," <img title=\"Sad\" alt=\":(\" src=\"http://forums.xkcd.com/images/smilies/icon_sad.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):o($|[\n\r\t ])/," <img title=\"Surprised\" alt=\":o\" src=\"http://forums.xkcd.com/images/smilies/icon_surprised.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):shock:($|[\n\r\t ])/," <img title=\"Shocked\" alt=\":shock:\" src=\"http://forums.xkcd.com/images/smilies/icon_eek.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\?($|[\n\r\t ])/," <img title=\"Confused\" alt=\":?\" src=\"http://forums.xkcd.com/images/smilies/icon_confused.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ])8-\)($|[\n\r\t ])/," <img title=\"Cool\" alt=\"8-)\" src=\"http://forums.xkcd.com/images/smilies/icon_cool.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):lol:($|[\n\r\t ])/," <img title=\"Laughing\" alt=\":lol:\" src=\"http://forums.xkcd.com/images/smilies/icon_lol.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):x($|[\n\r\t ])/," <img title=\"Mad\" alt=\":x\" src=\"http://forums.xkcd.com/images/smilies/icon_mad.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):P($|[\n\r\t ])/," <img title=\"Razz\" alt=\":P\" src=\"http://forums.xkcd.com/images/smilies/icon_razz.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):oops:($|[\n\r\t ])/," <img title=\"Embarassed\" alt=\":oops:\" src=\"http://forums.xkcd.com/images/smilies/icon_redface.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):cry:($|[\n\r\t ])/," <img title=\"Crying or Very Sad\" alt=\":cry:\" src=\"http://forums.xkcd.com/images/smilies/icon_cry.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):evil:($|[\n\r\t ])/," <img title=\"Evil or Very Mad\" alt=\":evil:\" src=\"http://forums.xkcd.com/images/smilies/icon_evil.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):twisted:($|[\n\r\t ])/," <img title=\"Twisted Evil\" alt=\":twisted:\" src=\"http://forums.xkcd.com/images/smilies/icon_twisted.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):roll:($|[\n\r\t ])/," <img title=\"Rolling Eyes\" alt=\":roll:\" src=\"http://forums.xkcd.com/images/smilies/icon_rolleyes.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):wink:($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]);\)($|[\n\r\t ])/," <img title=\"Wink\" alt=\":wink:\" src=\"http://forums.xkcd.com/images/smilies/icon_wink.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):!:($|[\n\r\t ])/," <img title=\"Exclamation\" alt=\":!:\" src=\"http://forums.xkcd.com/images/smilies/icon_exclaim.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\?:($|[\n\r\t ])/," <img title=\"Question\" alt=\":?:\" src=\"http://forums.xkcd.com/images/smilies/icon_question.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):idea:($|[\n\r\t ])/," <img title=\"Idea\" alt=\":idea:\" src=\"http://forums.xkcd.com/images/smilies/icon_idea.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):arrow:($|[\n\r\t ])/," <img title=\"Arrow\" alt=\":arrow:\" src=\"http://forums.xkcd.com/images/smilies/icon_arrow.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):\|($|[\n\r\t ])/," <img title=\"Neutral\" alt=\":|\" src=\"http://forums.xkcd.com/images/smilies/icon_neutral.gif\" /> ",tag)
- # gsub(/(^|[\n\r\t ]):mrgreen:($|[\n\r\t ])/," <img title=\"Mr. Green\" alt=\":mrgreen:\" src=\"http://forums.xkcd.com/images/smilies/icon_mrgreen.gif\" /> ",tag)
- # }
-
- html = html tag
- ++count[depth]
- }
- }
- debug = debug "\ndone\n"
- return html
-}
-
-function ind(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<=depth;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- # debug = debug "\n" iindex
- return iindex
-}
-function indt(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<depth;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- if(depth>0)
- iindex=iindex"."
- iindex = iindex "0"
- # debug = debug "\n" iindex
- return iindex
-}
-function indtu(count,depth, ii,iindex)
-{
- iindex = ""
- for(ii=0;ii<depth-1;++ii)
- {
- if(ii!=0)
- iindex = iindex "."
- iindex = iindex count[ii]
- }
- if(depth>0)
- iindex=iindex"."
- iindex = iindex "0"
- # debug = debug "\n" iindex
- return iindex
-}
-function htmlescape(name,less,br, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1);
- if(ch == "\n")
- escaped = escaped ((br!="")?"<br>":"&#"ch2dec[ch]";")
- else if(ch =="\r")
- escaped = escaped ((br!="")?"":"&#"ch2dec[ch]";")
- else if(ch == "\"" && less=="")
- escaped = escaped "&#"ch2dec[ch]";"
- else if(ch ~ /[=<>&]/)
- escaped = escaped "&#"ch2dec[ch]";"
- else
- escaped = escaped ch
- }
- return escaped
-}
-function hexencode(name, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1)
- escaped = escaped ch2hex[ch]
- }
- return escaped
-}
-
+++ /dev/null
-#// upload.awk\r
-#// The post upload interface\r
-#// 25.05.2021\r
-#// \r
-#// Copyright (C) 2015, 2019, 2021 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- postpath="/eizm/mem/aftertime/mpost/"\r
- passpath="/eizm/mem/aftertime/pass/"\r
- rmpath="/eizm/mem/aftertime/mpost/rm/"\r
- bb2html="/eizm/pro/aftertime/bb2html.awk"\r
- automome="/eizm/pro/ong1/mome.pl"\r
- memepath="/eizm/mem/ong1/mome.txt"\r
- timecmd="date -u +\"%s\""\r
- \r
- timecmd | getline thistime\r
- close(timecmd)\r
- \r
- srand(int(thistime) + int( PROCINFO["pid"]))\r
- \r
- for(i=0;i<256;++i)\r
- {\r
- ch=sprintf("%c",i)\r
- hex=sprintf("%02X",i)\r
- hexl=sprintf("%02x",i)\r
- dec=sprintf("%u",i)\r
- ch2hex[ch]=hex\r
- hex2ch[hex]=ch\r
- ch2hexl[ch]=hexl\r
- ch2dec[ch]=dec\r
- }\r
- \r
- # year=substr(timetext,1,4)\r
- # month=substr(timetext,5,2)\r
- # day=substr(timetext,7,2)\r
- # hour=substr(timetext,9,2)\r
- \r
- # yyy=year+0\r
- # mmm=month+0\r
- # ddd=day+0\r
- # hhh=hour+0\r
- \r
- ln=0\r
-}\r
-{\r
- gsub(/[\r\n]/,"",$0)\r
- if (FNR==1)\r
- {\r
- name=$0\r
- # print "username: "name\r
- next\r
- }\r
- if (FNR==2)\r
- {\r
- pass=$0\r
- gsub(/./,"*", $0)\r
- # print "password: "$0\r
- next\r
- }\r
- \r
- if($0=="")\r
- {\r
- if(ln!=0)\r
- {\r
- post()\r
- ln=0\r
- nobb=""\r
- nosmil=""\r
- nourl=""\r
- quot=""\r
- rmov=""\r
- lst=""\r
- h=""\r
- d=""\r
- m=""\r
- y=""\r
- subject=""\r
- content=""\r
- options=""\r
- story=""\r
- frame=""\r
- round=""\r
- idtab[1]=""\r
- idtab[2]=""\r
- idtab[3]=""\r
- }\r
- next\r
- }\r
- \r
- ++ln\r
- if(ln==1)\r
- {\r
- if($0 ~ /#/)\r
- split($0, idtab, "#")\r
- else\r
- split($0, idtab, "-")\r
- story=idtab[1]\r
- if (idtab[2]~/^[a-z]/)\r
- {\r
- frame=substr(idtab[2],1,1)\r
- subframe=""\r
- }\r
- else if(idtab[2]~/^[0-9]+[a-z]$/)\r
- {\r
- frame=int(substr (idtab[2], 1, length(idtab[2])-1))\r
- subframe=substr (idtab[2], length(idtab[2]), 1)\r
- }\r
- else\r
- {\r
- frame=int(idtab[2])\r
- subframe=""\r
- }\r
- round=int(idtab[3])\r
- }\r
- else if(ln==2)\r
- {\r
- options=tolower($0)\r
- if(options ~ /b/)\r
- nobb=1\r
- if(options ~ /s/)\r
- nosmil=1\r
- if(options ~ /u/)\r
- nourl=1\r
- if(options ~ /r/)\r
- rmov=1\r
- if(options ~ /q/)\r
- quot=1\r
- if(options ~ /l/)\r
- lst=1\r
- }\r
- else if(ln==3)\r
- {\r
- y=substr($0,1,4)\r
- m=substr($0,6,2)\r
- d=substr($0,9,2)\r
- h=substr($0,12,2)\r
- }\r
- \r
- else if(ln==4)\r
- {\r
- subject=$0\r
- }\r
- else\r
- {\r
- if(ln!=5)\r
- content=content "\n" $0\r
- else\r
- content=$0\r
- }\r
-\r
-}\r
-END{\r
- if(ln!=0)\r
- post()\r
-}\r
-\r
-\r
-function makeid(story,frame,subframe,round)\r
-{\r
- if(frame ~ /^[a-z]/)\r
- {\r
- return sprintf("%s-%s",story,frame)\r
- }\r
- else\r
- {\r
- return sprintf("%s-%04u%s-%02u",story,frame,subframe,round)\r
- }\r
-}\r
-\r
-function remove( postid,postfile,rmfile,passfile,temp,f,tn,eq,tv,namef,passf)\r
-{\r
- postid=makeid(story,frame,subframe,round)\r
- postfile=postpath postid\r
- rmfile=rmpath postid\r
- passfile=passpath story\r
- printf("%s",postid" ")\r
- \r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
- \r
- if(name!=namef)\r
- {\r
- print "Can't remove. Wrong username."\r
- return\r
- }\r
- if(pass!=passf)\r
- {\r
- print "Can't remove. Wrong password."\r
- return\r
- }\r
- \r
- if(system("mv -f "postfile" "rmfile)==0)\r
- {\r
- print "removed."\r
- return\r
- }\r
- print "not removed."\r
-}\r
-\r
-function quote( postid,postfile,passfile,temp,f,opt,cont,ongt,subj,eq,tn,tv,id,namef,passf,yy,mm,dd,hh)\r
-{\r
- postid=makeid(story,frame,subframe,round)\r
- postfile=postpath postid\r
- passfile=passpath story\r
- \r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
- \r
- if((name!=namef)||(pass!=passf))\r
- {\r
- print "Can't quote."\r
- return\r
- }\r
- \r
- while((getline temp < postfile)>0)\r
- {\r
- f=1\r
- gsub(/[\r\n]/,"",temp)\r
- eq=index(temp,"=")\r
- tn=substr(temp,1,eq-1)\r
- tv=substr(temp,eq+1)\r
- \r
- if(tn=="BB")\r
- cont=unhtml(tv)\r
- else if(tn=="brtext")\r
- ongt=tv\r
- else if(tn=="y")\r
- yy=tv\r
- else if(tn=="m")\r
- mm=tv\r
- else if(tn=="d")\r
- dd=tv\r
- else if(tn=="h")\r
- hh=tv\r
- else if(tn=="subject_h")\r
- subj=unhtml(tv)\r
- else if(tn=="ID")\r
- id=tv\r
- else if(tn=="disable_bbcode")\r
- {\r
- if(tv=="on")\r
- opt=opt"B"\r
- }\r
- else if(tn=="disable_smilies")\r
- {\r
- if(tv=="on")\r
- opt=opt"S"\r
- }\r
- else if(tn=="disable_magic_url")\r
- {\r
- if(tv=="on")\r
- opt=opt"U"\r
- }\r
- }\r
- if(f!="")\r
- {\r
- close(postfile)\r
- if (opt=="")\r
- opt="_"\r
- print postid" subject "subj\r
- print postid" options "opt\r
- print postid" time "sprintf("%04u-%02u-%02u %02u:00",yy,mm,dd,hh)\r
- print postid" content "((ongt!="")?ongt:cont)\r
- if(id!="")\r
- print postid" ID "id\r
- return\r
- }\r
- \r
- else\r
- print postid " can't quote." #I shouldn't tell why\r
-}\r
-\r
-function list( cmd,id,postfile,passfile,temp,mt,f,eq,tn,tv,namef,passf,yy,mm,dd,hh)\r
-{\r
- \r
- passfile = passpath story\r
- \r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
- \r
- if((name!=namef)||(pass!=passf))\r
- return\r
- \r
- cmd="/bin/ls -1 --color=never "postpath\r
- while ((cmd | getline id)>0)\r
- {\r
- f=""\r
- mt="^"story"-"\r
- if(id !~ mt)\r
- continue\r
- postfile = postpath id\r
- \r
- while((getline temp < postfile)>0)\r
- {\r
- f=1\r
- gsub(/[\r\n]/,"",temp)\r
- eq=index(temp,"=")\r
- tn=substr(temp,1,eq-1)\r
- tv=substr(temp,eq+1)\r
- if(tn=="y")\r
- yy=tv\r
- else if(tn=="m")\r
- mm=tv\r
- else if(tn=="d")\r
- dd=tv\r
- else if(tn=="h")\r
- hh=tv\r
- \r
- }\r
- if(f!="")\r
- {\r
- close(postfile)\r
- print id" time "sprintf("%04u-%02u-%02u %02u:00",yy,mm,dd,hh)\r
- }\r
- }\r
- close (cmd)\r
-}\r
-\r
-function post( postid,replaceid,postfile,passfile,replacefile,temp,i,eq,tn,tv,namef,passf,key,id)\r
-{\r
- if(lst!="")\r
- return list()\r
- if(quot!="")\r
- return quote()\r
- if(rmov!="")\r
- return remove()\r
- postid=makeid(story,frame,subframe,round)\r
- printf("%s",postid" ")\r
- \r
- postfile=postpath postid\r
- passfile = passpath story\r
-\r
- \r
- if(options=="")\r
- {\r
- print "No options defined."\r
- return\r
- }\r
- \r
- if (name=="")\r
- {\r
- print "Username missing."\r
- return\r
- }\r
- if (pass=="")\r
- {\r
- print "Password missing."\r
- return\r
- }\r
- if (story=="")\r
- {\r
- print "Story name missing."\r
- return\r
- }\r
- if(story !~ /^(time|prickly|potm|lucky|beany|bean2|t1i|zodiac|bftf|t-1|bsta|advent|phys)$/) #this really shouldn't be hardcoded!\r
- {\r
- print "Unknown story."\r
- return\r
- }\r
- if (frame=="")\r
- {\r
- print "Frame number missing."\r
- return\r
- }\r
- if (round=="")\r
- {\r
- print "Round number missing."\r
- return\r
- }\r
- if (subject=="")\r
- {\r
- print "Subject missing."\r
- return\r
- }\r
- if (content=="")\r
- {\r
- print "Post is empty."\r
- return\r
- }\r
- \r
- yy=y+0\r
- mm=m+0\r
- dd=d+0\r
- hh=h+0\r
- \r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
- \r
- if(name!=namef)\r
- {\r
- print "Wrong username."\r
- return\r
- }\r
- if(pass!=passf)\r
- {\r
- print "Wrong password."\r
- return\r
- }\r
- \r
- split("", ongtable, ":")\r
- while((getline temp < postfile)>0)\r
- {\r
- gsub(/[\r\n]/,"",temp)\r
- eq=index(temp,"=")\r
- tn=substr(temp,1,eq-1)\r
- tv=substr(temp,eq+1)\r
- \r
- if(tn ~ /^[ou]ngd?-[0-9]+$/)\r
- {\r
- ongtable[tn]=brunescape(tv)\r
- }\r
- else if(tn == "key")\r
- key=tv\r
- else if(tn == "ID")\r
- id=tv\r
- \r
- }\r
- close(postfile)\r
- \r
- printf("")>postfile\r
- \r
- print "timenumber="htmlescape(postid) >> postfile\r
- print "key="(key==""?newkey():key) >> postfile\r
- print "username_h="htmlescape(name) >> postfile\r
- print "subject_h="htmlescape(subject) >> postfile\r
- print "story="story >> postfile\r
- if (frame ~ /^[a-z]/)\r
- print "frame="frame >> postfile\r
- else\r
- {\r
- print "frame="sprintf("%04u",frame) >> postfile\r
- print "round="sprintf("%02u",round) >> postfile\r
- }\r
- \r
- print "h="htmlescape(h) >> postfile\r
- print "d="htmlescape(d) >> postfile\r
- print "m="htmlescape(m) >> postfile\r
- print "y="htmlescape(y) >> postfile\r
- \r
- if(nobb!="")\r
- print "disable_bbcode=on" >> postfile\r
- if(nosmil!="")\r
- print "disable_smilies=on" >> postfile\r
- if(nourl!="")\r
- print "disable_magic_url=on" >> postfile\r
- \r
- \r
- \r
- print "brtext="brescape(content) >> postfile\r
- \r
- gsub(/\[br\]/,"\n",content)\r
- \r
- for(i=0; content~/\[ong\]/; ++i)\r
- {\r
- tn=sprintf("ong-%u",i)\r
- ongtext = ongtable[tn]\r
- if (ongtext == "")\r
- ongtext=ong()\r
- print(tn"="brescape(ongtext)) >> postfile\r
- sub(/\[ong\]/,subescape(ongtext),content)\r
- }\r
- for(i=0; content~/\[ung\]/; ++i)\r
- {\r
- tn=sprintf("ung-%u",i)\r
- ongtext = ongtable[tn]\r
- if (ongtext == "")\r
- ongtext=ung()\r
- print(tn"="brescape(ongtext)) >> postfile\r
- sub(/\[ung\]/,subescape(ongtext),content)\r
- }\r
- for(i=0; content~/\[ong=decree\]/; ++i)\r
- {\r
- tn=sprintf("ongd-%u",i)\r
- ongtext = ongtable[tn]\r
- if (ongtext == "")\r
- ongtext=ong("decree")\r
- print(tn"="brescape(ongtext)) >> postfile\r
- sub(/\[ong=decree\]/,subescape(ongtext),content)\r
- }\r
- for(i=0; content~/\[ung=decree\]/; ++i)\r
- {\r
- tn=sprintf("ungd-%u",i)\r
- ongtext = ongtable[tn]\r
- if (ongtext == "")\r
- ongtext=ung("decree")\r
- print(tn"="brescape(ongtext)) >> postfile\r
- sub(/\[ung=decree\]/,subescape(ongtext),content)\r
- }\r
- \r
- # print "content:\n"content\r
- print "BBHTML="htmlescape(content,"","br") >> postfile\r
- print "BB="htmlescape(content,"less","br") >> postfile\r
- print "message="urlencode(content ((silent=="")?(nobb==""?"[right][size=80]-- posted by SilentBot [img]http://forums.xkcd.com/download/file.php?id=47884[/img][/size][/right]":"\n\n-- posted by SilentBot"):"")) >> postfile\r
- if(id!="")\r
- print"ID="id >> postfile\r
- \r
- print "posted."\r
- system ("mawk -f "bb2html" -v outfile=\""postfile"\" \""postfile"\"")\r
- system ("wait 1")\r
- close (postfile)\r
-}\r
-\r
-function urlencode(name,all, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1);\r
- if ((ch ~ /[a-zA-Z0-9\.\-_~]/)&&(all==""))\r
- escaped = escaped ch\r
- else\r
- escaped = escaped "%" ch2hex[ch]\r
- }\r
- return escaped\r
-}\r
-function hexencode(name, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1)\r
- escaped = escaped ch2hex[ch]\r
- }\r
- return escaped\r
-}\r
-function subescape(subtext)\r
-{\r
- gsub(/&/,"\\\\\\&",subtext)\r
- return subtext\r
-}\r
- \r
-function htmlescape(name,less,br, len,iii,escaped,ch)\r
-{\r
- len=length(name)\r
- escaped=""\r
- for(iii=1;iii<=len;++iii)\r
- {\r
- ch=substr(name,iii,1);\r
- if(ch == "\n")\r
- escaped = escaped ((br!="")?"<br>":"&#"ch2dec[ch]";")\r
- else if(ch =="\r")\r
- escaped = escaped ((br!="")?"":"&#"ch2dec[ch]";")\r
- else if(ch ~ /[\" ]/ && less=="")#"#"\""\r
- escaped = escaped "&#"ch2dec[ch]";"\r
- else if(ch ~ /[=<>&]/)\r
- escaped = escaped "&#"ch2dec[ch]";"\r
- else\r
- escaped = escaped ch\r
- }\r
- return escaped\r
-}\r
-\r
-function getmeme(decree ,meme,i)\r
-{\r
- if(decree!="" && lastdecr=="")\r
- {\r
- close(tempfile)\r
- system (automome" -lc 256 -n "memenumber" -d "memepath" -t \"[decr]\" > "tempfile)\r
- }\r
- else if(decree=="" && lastdecr!="")\r
- {\r
- close(tempfile)\r
- system (automome" -lc 256 -n "memenumber" -d "memepath" > "tempfile)\r
- }\r
- for(i=0; ((getline meme < tempfile)<=0) && (i<3); ++i)\r
- {\r
- memenumber=memenumber*2\r
- close(tempfile)\r
- if(decree!="")\r
- system (automome" -lc 256 -n "memenumber" -d "memepath" -t \"[decr]\" > "tempfile)\r
- else\r
- system (automome" -lc 256 -n "memenumber" -d "memepath" > "tempfile)\r
- }\r
- lastdecr=decree\r
- return meme\r
-}\r
-\r
-function ong(decree, line)\r
-{\r
- while((line=getmeme(decree))!="")\r
- {\r
- gsub(/[\r\n]/,"",line)\r
- if(sub(/[AEIOUY]-N-G/,"#O-N-G#",line)>0)\r
- return preparebb(line)\r
- if(sub(/O+N+G+/,"#&#",line)>0)\r
- return preparebb(line)\r
- if(sub(/DON'T/,"D#ON'G#T",line)>0)\r
- return preparebb(line)\r
- if(sub(/[AEIOUY]NG/,"#ONG#",line)>0)\r
- {\r
- if($0!~/TH\[b\]ONG/)\r
- return preparebb(line)\r
- }\r
- if(sub(/ON /,"#ONG# ",line)>0)\r
- return preparebb(line)\r
- if(sub(/O\.?$/,"#ONG# ",$0)>0)\r
- return preparebb(line)\r
- }\r
- return "Ong"\r
-}\r
-\r
-function ung(decree, line)\r
-{\r
- while((line=getmeme(decree))!="")\r
- {\r
- gsub(/[\r\n]/,"",line)\r
- if(sub(/[AEIOUY]-N-G/,"#U-N-G#",line)>0)\r
- return preparebb(line)\r
- if(sub(/U+N+G+/,"#&#",line)>0)\r
- return preparebb(line)\r
- if(sub(/[AEIOUY]NG/,"#UNG#",line)>0)\r
- return preparebb(line)\r
- if(sub(/UN /,"#UNG# ",line)>0)\r
- return preparebb(line)\r
- if(sub(/U\.?$/,"#UNG# ",$0)>0)\r
- return preparebb(line)\r
- }\r
- return "Ung"\r
-}\r
-function preparebb(rh)\r
-{\r
- if(nobb=="")\r
- {\r
- gsub(/\*\*/,"¤",rh)\r
- gsub(/\*[^\*]+\*/,"±&±",rh)\r
- gsub(/±\*/,"[i]",rh)\r
- gsub(/\*±/,"[/i]",rh)\r
- gsub(/¤/,"*",rh)\r
- \r
- gsub(/&&/,"¤",rh)\r
- gsub(/&[^&]+&/,"±&±",rh)\r
- gsub(/±&/,"[center][b]",rh)\r
- gsub(/&±/,"[/b][/center]",rh)\r
- gsub(/¤/,"\\&",rh)\r
- \r
- gsub(/__/,"¤",rh)\r
- gsub(/_[^_]+_/,"±&±",rh)\r
- gsub(/±_/,"[u]",rh)\r
- gsub(/_±/,"[/u]",rh)\r
- gsub(/¤/,"_",rh)\r
- \r
- gsub(/##/,"¤",rh)\r
- gsub(/#[^#]+#/,"±&±",rh)\r
- gsub(/±#/,"[b]",rh)\r
- gsub(/#±/,"[/b]",rh)\r
- gsub(/¤/,"#",rh)\r
- \r
- gsub(/\$\$/,"¤",rh)\r
- gsub(/\$[^\$]+\$/,"±&±",rh)\r
- gsub(/±\$/,"[size=80]",rh)\r
- gsub(/\$±/,"[/size]",rh)\r
- gsub(/¤/,"$",rh)\r
- }\r
- \r
- return rh (nobb==""?" -- [url=http://1190.bicyclesonthemoon.info/ongtext?b=on][b]ong[/b]o[/url][url=http://mrob.com/time/automome/]mome[/url]":" -- ongomome")\r
-}\r
-function unhtml(ht ,i,j,un,num)\r
-{\r
- gsub(/<br[ \t]*\/?>/,"[br]",ht)\r
- while ((i=match(ht, /&#[0-9]+;/))!=0)#\r
- {\r
- un=un substr(ht, 1, i-1)\r
- ht=substr(ht, i)\r
- j=index(ht, ";")\r
- num=int(substr(ht, 3, j-3))\r
- un=un sprintf("%c",num)\r
- ht=substr(ht, j+1)\r
- }\r
- un=un ht\r
- return un\r
-}\r
-function brescape(text) #there will be more\r
-{\r
- gsub(/\r/,"",text)\r
- gsub(/\n/,"[br]",text)\r
- return text\r
-}\r
-function brunescape(text) #there will be more\r
-{\r
- gsub(/\[br\]/,"\n",text)\r
- return text\r
-}\r
-function urldecode(ht ,i,j,un,num)\r
-# quot, amp, lt, gt, nbsp, and decimal numbered.\r
-{\r
- while ((i=match(ht, /%[0-9a-fA-F][0-9a-fA-F]/))!=0)#\r
- {\r
- un=un substr(ht, 1, i-1)\r
- ht=substr(ht, i)\r
- num=toupper(substr(ht, 2, 2))\r
- un=un hex2ch[num]\r
- ht=substr(ht, 4)\r
- }\r
- un=un ht\r
- return un\r
-}\r
-function newkey( key,i,rn)\r
-{\r
- for(i=0; i<8; ++i)\r
- {\r
- rn=int(rand()*65536)\r
- key = key sprintf("%04X",rn)\r
- }\r
- return key\r
-}\r
+++ /dev/null
-// upload.c (1190.bicyclesonthemoon.info/aftertime/upload)\r
-// The post upload interface\r
-// 28.03.2015\r
-// \r
-// Copyright (C) 2015 Balthasar Szczepański\r
-// \r
-// This program is free software: you can redistribute it and/or modify\r
-// it under the terms of the GNU Affero General Public License as\r
-// published by the Free Software Foundation, either version 3 of the\r
-// License, or (at your option) any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful,\r
-// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-// GNU Affero General Public License for more details.\r
-// \r
-// You should have received a copy of the GNU Affero General Public License\r
-// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-#include <cgi.h>\r
-#include <time.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <unistd.h>\r
-#include <sys/wait.h>\r
-\r
-#define RM_PATH "/bin/rm"\r
-#define MAWK_PATH "/usr/bin/mawk"\r
-#define AWK_UPLOAD "/eizm/pro/aftertime/upload.awk"\r
-#define TEMP_PATH "/eizm/tmp/aftertime/upload."\r
-#define RM_PATH "/bin/rm"\r
-\r
-s_cgi *cgi;\r
-pid_t sub;\r
-int r;\r
-\r
-int main(int argc, char **argv)\r
-{\r
- char *temppath;\r
- char **up;\r
- time_t posttime;\r
- struct tm *nowS;\r
- char timetext[64];\r
- char timenumber[64];\r
- char temppath2[247];\r
- char temppath3[256];\r
- \r
- setvbuf(stdout, NULL, _IONBF, 0);\r
- dup2(fileno(stdout),fileno(stderr));\r
- \r
- cgi=cgiInit();\r
- \r
- sprintf(temppath2,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
- sprintf(temppath3,"tempfile=%s",temppath2);\r
- \r
- printf("Content-type: text\n\n");\r
- up=cgiGetFiles(cgi);\r
- if (up)\r
- {\r
- temppath=cgiGetFile(cgi,up[0])->tmpfile;\r
- \r
- posttime=time(NULL);\r
- nowS=gmtime(&posttime);\r
- \r
- sprintf(timenumber,"timenumber=%lu",(unsigned long)posttime);\r
- sprintf(timetext,"timetext=%04d%02d%02d%02d",nowS->tm_year+1900,nowS->tm_mon+1,nowS->tm_mday,nowS->tm_hour);\r
- \r
- // printf("%s\n%s\n%s\n",timenumber,timetext,temppath);\r
- \r
- sub=fork();\r
- if(!sub)\r
- {\r
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_UPLOAD,"-v",timetext,"-v",timenumber,"-v",temppath3,temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- sub=fork();\r
- if(!sub)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",temppath,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- sub=fork();\r
- if(!sub)\r
- {\r
- r=execl(RM_PATH,RM_PATH,"-f",temppath2,(char *)0);\r
- exit(r);\r
- }\r
- waitpid(sub,&r,0);\r
- \r
- return 0;\r
- }\r
- printf("File missing\n");\r
- return 0;\r
-}\r
+++ /dev/null
-#// verify.awk\r
-#// Check if post belongs to user\r
-#// 15.04.2019\r
-#// \r
-#// Copyright (C) 2015, 2019 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-BEGIN{\r
- passpath="/eizm/mem/aftertime/pass/"\r
- FS="="\r
- # for(i=0;i<256;++i)\r
- # {\r
- # ch=sprintf("%c",i)\r
- # hex=sprintf("%02X",i);\r
- # ch2hex[ch]=hex\r
- # hex2ch[hex]=ch\r
- # }\r
- if(reversed!="")\r
- {\r
- ok=1\r
- fail=0\r
- }\r
- else\r
- {\r
- ok=0\r
- fail=1\r
- }\r
-}\r
-# {\r
- # gsub(/[\r\n]/,"",$0)\r
- # eq=index($0,"=")\r
- # argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
-# }\r
-END{\r
- while((getline line < file)>0)\r
- {\r
- gsub(/[\r\n]/,"",line)\r
- eq=index(line,"=")\r
- argtab[substr(line,1,eq-1)]=substr(line,eq+1)\r
- }\r
- close (file)\r
- \r
- if(story=="")\r
- story=argtab["story"]\r
- \r
- else if(story!=argtab["story"] && argtab["story"]!="")\r
- exit fail\r
- \r
- passfile = passpath story\r
- getline namef < passfile\r
- getline passf < passfile\r
- close (passfile)\r
- gsub(/[\r\n]/,"",namef)\r
- gsub(/[\r\n]/,"",passf)\r
-\r
- if(namef==name&&passf==pass)\r
- exit ok\r
- else\r
- exit fail\r
-}\r
-# function urlencode(name,all, len,iii,escaped,ch)\r
-# {\r
- # len=length(name)\r
- # escaped=""\r
- # for(iii=1;iii<=len;++iii)\r
- # {\r
- # ch=substr(name,iii,1);\r
- # if ((ch ~ /[a-zA-Z0-9\.\-_~]/)&&(all==""))\r
- # escaped = escaped ch\r
- # else\r
- # escaped = escaped "%" ch2hex[ch]\r
- # }\r
- # return escaped\r
-# }\r
+++ /dev/null
-#// view.awk\r
-#// insert text\r
-#// 27.03.2015\r
-#// \r
-#// Copyright (C) 2015 Balthasar Szczepański\r
-#// \r
-#// This program is free software: you can redistribute it and/or modify\r
-#// it under the terms of the GNU Affero General Public License as\r
-#// published by the Free Software Foundation, either version 3 of the\r
-#// License, or (at your option) any later version.\r
-#// \r
-#// This program is distributed in the hope that it will be useful,\r
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
-#// GNU Affero General Public License for more details.\r
-#// \r
-#// You should have received a copy of the GNU Affero General Public License\r
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.\r
-\r
-\r
-###reusedfrommirror;\r
-\r
-{\r
- # if ($0 ~ /^###sig&/)\r
- # {\r
- # split ($0 ,arr,"&")\r
- # system("cat " sig arr[2])\r
- # }\r
- # else if ($0 ~ /^###inf&/)\r
- # {\r
- # split ($0 ,arr,"&")\r
- # system("cat " otterinf arr[2])\r
- # }\r
- # else if ($0 ~ /^###prev/)\r
- # {\r
- # print left\r
- # }\r
- # else if ($0 ~ /^###next/)\r
- # {\r
- # print right\r
- # }\r
- # else if ($0 ~ /^###links/)\r
- # {\r
- # system ("cat " links);\r
- # }\r
- # else\r
- if ($0 ~ /^###info/)\r
- {\r
- print info;\r
- }\r
- else if ($0 ~ /^###title/)\r
- {\r
- print title;\r
- }\r
- else\r
- {\r
- print $0\r
- }\r
-};\r
+++ /dev/null
-#// viewer.awk
-#// The viewer
-#// 25.05.2021
-#//
-#// Copyright (C) 2015-2021 Balthasar Szczepański
-#//
-#// This program is free software: you can redistribute it and/or modify
-#// it under the terms of the GNU Affero General Public License as
-#// published by the Free Software Foundation, either version 3 of the
-#// License, or (at your option) any later version.
-#//
-#// This program is distributed in the hope that it will be useful,
-#// but WITHOUT ANY WARRANTY; without even the implied warranty of
-#// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-#// GNU Affero General Public License for more details.
-#//
-#// You should have received a copy of the GNU Affero General Public License
-#// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-BEGIN{
- FS=""
- noticepath="/eizm/mem/aftertime/mpost/"
- framepath="/eizm/www/time/"
- datapath="/eizm/data/aftertime/"
- timecmd="date -u +\"%Y%m%d%H\""
- timecmd2="date +\"%H%M%S\""
- timecmd3="date -u +\"%m%d%H%M\""
- timecmd4="date -u +\"%s\""
- botcastleurl="http://1190.bicyclesonthemoon.info"
- postlink="http://forums.xkcd.com/viewtopic.php?f=7"
-
- for(i=0;i<256;++i)
- {
- ch=sprintf("%c",i)
- hex=sprintf("%02X",i)
- dec=sprintf("%u",i)
- ch2hex[ch]=hex
- ch2dec[ch]=dec
- }
-
- listfile = datapath "stories"
- stories=0
- line=""
- while((getline line < listfile)>0)
- {
- gsub(/[\r\n]/,"",line)
- eq=index(line,"=")
-
- storytab[stories]=htmlescape(substr(line, 1, eq-1),"","")
- storyname[stories]=htmlescape(substr(line, eq+1),"","")
- ++stories
- }
- close(listfile)
-
- if(frame ~ /[a-zA-Z]$/)
- {
- f=int(substr(frame,1,length(frame)-1))
- s=substr(frame, length(frame))
- }
- else
- {
- f=int(frame)
- s=""
- }
- e=int(enhance)
- n=int(notice)
- b=int(bbcode)
-
- timecmd | getline thistime
- close(timecmd)
-
- timecmd2 | getline thistime2
- close(timecmd2)
-
- timecmd3 | getline thistime3
- close(timecmd3)
-
- timecmd4 | getline thistime4
- close(timecmd4)
-
- thistime3=int(thistime3)
- thistime4=int(thistime4)
-
- lastalt=0
-
- ch2num[0]=""
- num2ch[""]=0
- for(i=1;i<=26;++i)
- {
- ch=sprintf("%c",i+96)
- num2ch[i]=ch
- ch2num[ch]=i
- }
- for(i=0;i<256;++i)
- {
- ch=sprintf("%c",i)
- dec=sprintf("%u",i)
- ch2dec[ch]=dec
- }
- alttabsize=0
-}
-{
- file=1
- gsub(/[\r\n]/, "", $0)
- eq=index($0, "=")
- if($0 ~ /^[0-9]+=/)
- {
- i=int(substr($0, 1, eq-1))
- alttab[alttabsize]=substr($0, eq+1)
- alttabn[alttabsize]=i
- ++alttabsize
-
- # i=int(substr($0, 1, eq-1))
- # if(f>=i && i>=lastalt)
- # {
- # alt=substr($0, eq+1)
- # lastalt=i
- # }
- }
- else if($0 ~ /^sf-[0-9]+=/)
- {
- sf=1
- i=int(substr($0, 4, eq-4))
- if(i==f)
- this_sf= tolower(substr($0, eq+1))
- if(i==f-1)
- prev_sf=tolower(substr($0, eq+1))
-
- }
- argtab[substr($0, 1, eq-1)]=substr($0, eq+1)
-}
-END{
-
- if (file=="")
- exit 1
-
- if(sf=="")
- s=""
- else if(this_sf=="")
- s=""
- else if(s>this_sf && argtab["cfrt"]=="")
- s=this_sf
-
- ongoing=int(argtab["ongoing"])
- if(ongoing>0)
- {
- statefile= datapath argtab["story"]"/ongstate"
- getline temp < statefile
- close(statefile)
-
- split(temp, temptab, " ")
- state=int(temptab[1])
- last=int(temptab[2])
- nextong=int(temptab[3])
- }
- else
- {
- last=int(argtab["last"])
- state=3
- }
- first=int(argtab["first"])
-
- ongtimefile= datapath argtab["story"]"/ongtime"
-
- if(frame=="")
- {
- if(ongoing>0)
- {
- if (int(argtab["onlyframe"])>0)
- {
- f=last
- onlyframe=1
- }
- else
- {
- onlyframe=""
- if (int(argtab["showlatest"])>0)
- f=last
- else
- f=first
- }
- }
- else
- {
- f=first
- onlyframe=""
- if (replay != "")
- {
- # print "DEBUG:<br>"
- ongyr=0
- ongsy=0
- line=""
- while((getline line < ongtimefile)>0)
- {
- ongind=index(line," ")
- ongft=substr(line,1,ongind-1)
- ongt=int((ongsy?(substr(line,ongind+1,4)-ongyr):0) substr(line,ongind+6,2) substr(line,ongind+9,2) substr(line,ongind+12,2) substr(line,ongind+15,2))
-
- # printf("o.%d<br>",ongt)
-
- if(!ongsy)
- {
- ongsy=1
- ongyr=substr(line,ongind+1,4)
- # printf("3.%d<br>",thistime3)
- if(thistime3<ongt)
- {
- thistime3 += 100000000
- # printf("3.%d<br>",thistime3)
- }
- }
-
- if(ongt>thistime3)
- {
- # if(ongsm)
- # print"BREAK!<br>"
- break;
- }
- # else
- # ongsm=1;
- if(ongft ~ /^[0-9]+[a-z]$/)
- {
- f=int(substr(ongft,1,ongind-2))
- s=substr(ongft,ongind-1,1)
- }
- else
- {
- f=int(ongft)
- s=""
- }
- # print"f."f"."s"<br>"
- }
- close(ongtimefile)
- }
- }
- }
-
- if (s!="")
- {
- if(argtab[s] != "")
- s2=argtab[s]
- else
- s2=s
- # n=-1
- }
-
- if(f<first && argtab["cfrt"]=="")
- f=first
-
- if(f>last && argtab["cfrt"]=="")
- f=last
-
- if(argtab["special"] != "")
- {
- specialfile=datapath argtab["story"]"/"sprintf(argtab["special"],f,s)
- line=""
- undertext=""
-
- while((getline line < specialfile)>0)
- {
- gsub(/[\r\n]/, "", line)
-
- if (line == "" && !undertext)
- {
- undertext=1
- argtab["text"]=""
- continue
- }
-
- if (undertext)
- {
- argtab["text"] = argtab["text"] line "\n"
- }
- else
- {
-
- eq=index(line, "=")
- argtab[substr(line, 1, eq-1)]=substr(line, eq+1)
- }
- }
- close (specialfile)
- }
-
- line=""
- while((getline line < ongtimefile)>0)
- {
- ongind=index(line," ")
- ongft=substr(line,1,ongind-1)
- ongt=substr(line,ongind+9,2)"."substr(line,ongind+6,2)"."substr(line,ongind+1,4)", "substr(line,ongind+12,2)":"substr(line,ongind+15,2)" UTC"
- if(ongft ~ /^[0-9]+[a-z]$/)
- ongf=int(substr(ongft,1,ongind-2)) substr(ongft,ongind-1,1)
- else
- ongf=int(ongft)
-
- if(ongf==(f s) && ongt ~ /^[0-9][0-9]\.[0-9][0-9]\.[0-9][0-9][0-9][0-9], [0-9][0-9]:[0-9][0-9] UTC$/)
- ongtimetext=ongt
- }
- close(ongtimefile)
-
- if ("alt" in argtab)
- alt=htmlescape(argtab["alt"],"less","bb")
- else
- {
- for(i=0; i<alttabsize; ++i)
- {
- if(f>=alttabn[i] && alttabn[i]>=lastalt)
- {
- alt=htmlescape(alttab[i],"less","bb")
- lastalt=alttabn[i]
- }
- }
- }
-
- if(argtab["number"]!="")
- numberformat=argtab["number"]
- else
- {
- # if (sf!="")
- numberformat="%u%s"
- # else
- # numberformat="%u"
- }
-
- framedir= (argtab["framedir"]!="" ? argtab["framedir"] : "/aftertime/"argtab["story"]"/")
- # if(sf!="")
- # {
- title=htmlescape(sprintf(argtab["title"(e>0 ? "-"e : "")],f,s2),"less","bb")
- frame=framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f,s)
- if (system("[ -f " framepath frame" ]")!=0)
- {
- frame= framedir sprintf(argtab["frame"],f,s)
- title=htmlescape(sprintf(argtab["title"],f,s2),"less","bb")
- noenh=1
- }
- otherviewerurl=sprintf(argtab["otherviewerurl"], f+int(argtab["othervieweroffset"]),s2)
- # }
- # else
- # {
- # s=""
- # title=htmlescape(sprintf(argtab["title"(e>0 ? "-"e : "")],f),"less","bb")
- # frame= framedir sprintf(argtab["frame"(e>0 ? "-"e : "")],f)
- # if (system("[ -f " framepath frame" ]")!=0)
- # {
- # frame= framedir sprintf(argtab["frame"],f)
- # title=htmlescape(sprintf(argtab["title"],f,s),"less","bb")
- # noenh=1
- # }
- # otherviewerurl=sprintf(argtab["otherviewerurl"], f+int(argtab["othervieweroffset"]))
- # }
-
- dynamicframe="/aftertime/frame?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s
-
- if((f>last || f<first || (this_sf!="" && s>this_sf)) && argtab["cfrt"]!="")
- frame= framedir argtab["cfrt"]
-
- border= int(argtab["border"])
- if(argtab["width"]!="")
- width= int(argtab["width"]) + 2*border
- else
- width="100%"
- max_enhance=int(argtab["enhance"])
-
- if (this_sf=="")
- {
- next_f= f+1
- next_s= ""
- }
- else if(s=="")
- {
- next_f=f
- next_s="a"
- }
- else if(s>=this_sf)
- {
- next_f= f+1
- next_s= ""
- }
- else
- {
- next_f = f
- next_s = num2ch[ch2num[s]+1]
- }
-
- if(this_sf!="" && s!="")
- {
- prev_f = f
- prev_s = num2ch[ch2num[s]-1]
- }
- else if(prev_sf!="")
- {
- prev_f = f-1
- prev_s = prev_sf
- }
- else
- {
- prev_f = f-1
- prev_s = ""
- }
-
- if(prev_s!=""){
- if(argtab[prev_s]!=""){
- prev_s2=argtab[prev_s]
- }
- else
- {
- prev_s2=prev_s
- }
- }
- else
- prev_s2 = ""
- if (next_s!="")
- {
- if(argtab[next_s]!=""){
- next_s2=argtab[next_s]
- }
- else
- {
- next_s2=next_s
- }
- }
- else
- next_s2 = ""
-
- print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"\">"
- print "<html lang=\"en\"><head>"
- print "<title>"title" • time after Time viewer • Bicycles on the Moon</title>"
- print "<meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\">"
- print "<link rel=\"icon\" type=\"image/png\" href=\"/img/favicon.png\">"
- print "<link rel=\"stylesheet\" href=\"/css/botm.css\">"
- print "<link rel=\"index\" href=\"/aftertime/\">"
- print "<link rel=\"start\" href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="first"\">"
- if(f>first)
- {
- print "<link rel=\"prev\" href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="prev_f prev_s"\">"
- }
- if(f<last)
- {
- print "<link rel=\"next\" href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="next_f next_s"\">"
- print "<link rel=\"prefetch\" href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="next_f next_s"\">"
- }
- print "</head><body><center>"
- print "<a href=\"/\"><img src=\"/img/botmlogo2.png\" alt=\"1190.bicyclesonthemoon.info\" border=\"0\"></a><br>"
- print "<H1>"title"</H1>"
- print "<table cellspacing=\"0\" cellpadding=\"0\""(argtab["width"]!=""?" width=\""width"\"":"")">"
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">"
- if(onlyframe!="")
- print "<a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s"\">"
- print "<img src=\""((ongoing>0 && state <2 && f==last)?dynamicframe:frame)"\" alt=\""title"\" title=\""alt"\" border=\""border"\">"
- if(onlyframe!="")
- print "</a>"
- print "</td></tr>"
-
- if(ongoing==1)
- {
- # print "<tr width=\""width"\" align=\"right\"><td colspan=\"4\" width=\"100%\">"
- if(state<3)
- {
- # ongtime=int(argtab["ongtime"])
- # dt = (3600*ongtime - ( int(substr(thistime2,5,2)) + 60*int(substr(thistime2,3,2)) + 3600*( int(substr(thistime2,1,2))%int(argtab["ongtime"]) ) ))%(ongtime*3600)
- # ss=(dt>0 ? sprintf("%02u",dt%60) : "NG")
- # mm=sprintf("%02u",int(dt/60)%60)
- # hh=sprintf("%02u",int(dt/3600))
- dt=nextong-thistime4
- if (dt<-5)
- {
- ss="EE"
- mm="EE"
- hh="EE"
- }
- else if (dt>0)
- {
- ss=sprintf("%02u",dt%60)
- mm=sprintf("%02u",int(dt/60)%60)
- if ((dt/3600)>99)
- hh="EE"
- else
- hh=sprintf("%02u",int(dt/3600))
- }
- else {
- ss="NG"
- mm="00"
- hh="00"
- }
- }
- else
- {
- ss="EE"
- mm="EE"
- hh="EE"
- }
- # hh=nextong" "thistime4
- timecolor=(state>1?"br":"ni")
-
- print "<tr width=\""width"\" align=\"right\"><td colspan=\"4\" width=\"100%\"><tt><b class=\""timecolor"\">"hh"</b>:<b class=\""timecolor"\">"mm"</b>:<b class=\""timecolor"\">"ss"</b></tt></td></tr>"
- }
-
- if(onlyframe=="")
- {
- if(max_enhance>0)
- {
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">["
- for(i=0;i<=max_enhance;++i)
- {
- if(i!=0)
- print "|"
- # if(sf!="")
- enhancedframe = framedir sprintf(argtab["frame"(i>0?"-"i:"")],f,s)
- # else
- # enhancedframe = framedir sprintf(argtab["frame"(i>0?"-"i:"")],f)
-
-
- if (system("[ -f " framepath enhancedframe" ]")==0)
- {
- if(i==e)
- print"<b>"argtab["enhance-"i]"</b>"
- else
- print"<a href=\"/aftertime/viewer?story="argtab["story"]"&e="i"&f="f s((b>0)?("&b="b):"")"\">"argtab["enhance-"i]"</a>"
- }
- else
- print argtab["enhance-"i]
- }
- print "]</td></tr>"
- }
-
- print "<tr width=\""width"\" align=\"center\">"
- print "<td width=\"25%\"><a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="first"\">|< "sprintf(numberformat,first,"")"</a></td>"
- print "<td width=\"25%\">"(f>first?"<a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="prev_f prev_s"\">< "sprintf(numberformat,prev_f,prev_s2)"</a>":"")"</td>"
- print "<td width=\"25%\">"(f<last?"<a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="next_f next_s"\">"sprintf(numberformat,next_f,next_s2)" ></a>":"")"</td>"
- print "<td width=\"25%\"><a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="last"\">"sprintf(numberformat,last,"")" >|</a></td>"
- print "</tr>"
-
- if(ongtimetext!="")
- {
- if(argtab["ID"]!="")
- {
- print "<tr width=\""width"\" align=\"right\"><td colspan=\"4\" width=\"100%\"><a href=\""postlink"&p="int(argtab["ID"])"#p"int(argtab["ID"])"\">"ongtimetext"</a></td></tr>"
- }
- # else if (argtab["otherviewerurl"]!="")
- # {
- # print "<tr width=\""width"\" align=\"right\"><td colspan=\"4\" width=\"100%\"><a href=\""otherviewerurl"\">"ongtimetext"</a></td></tr>"
- # }
- else
- print "<tr width=\""width"\" align=\"right\"><td colspan=\"4\" width=\"100%\">"ongtimetext"</td></tr>"
- }
-
- if(argtab["HTML"]!="" && b==0)
- {
- print "<tr width=\""width"\"><td colspan=\"4\" width=\"100%\">"argtab["HTML"]"</td></tr>"
- }
-
- for(i=-1; i<=n; ++i)
- {
- if(i<0)
- noticepost=noticepath argtab["story"]"-i"
- else
- noticepost=noticepath argtab["story"]"-"sprintf("%04u%s",f,s)"-"sprintf("%02u",i+1)
- # print "<!-- ######## "noticepost"######## -->"
- split("", noticetab, ":")
- for(j=0;(getline line < noticepost)>0;++j)
- {
- gsub(/[\r\n]/,"",line)
- eq=index(line,"=")
- noticetab[substr(line, 1, eq-1)]=substr(line, eq+1)
- }
- close(noticepost)
- if(j==0)
- {
- if(i<0)
- continue;
- else
- break;
- }
- if(i>=0)
- {
- nposttime=noticetab["y"]noticetab["m"]noticetab["d"]noticetab["h"]
- if (thistime<nposttime)
- break;
- }
- if(i<n)
- {
- if(i>=0)
- print "<tr width=\""width"\"><td colspan=\"4\" width=\"100%\"><i>"noticetab["subject_h"]"</i> "(noticetab["ID"]!=""?" (<a href=\"/ott/view?p="noticetab["ID"]"#p"noticetab["ID"]"\">OTT time travel</a>)":"")"</td></tr>"
- print"<tr width=\""width"\"><td colspan=\"4\" width=\"100%\">"((noticetab["HTML"]!="")?noticetab["HTML"]:noticetab["BBHTML"])"</td></tr>"
- }
- else
- {
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\"><a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s"&n="i+1"\">"noticetab["subject_h"]"</a></td></tr>"
- }
- }
-
- if(b>0)
- {
- if (argtab["BBHTML"]!="")
- {
- bbtext=argtab["BBHTML"]
- }
- else if (argtab["text"]!="")
- {
- bbtext=htmlescape(argtab["text"],"less","bb")
- gsub(/ /,"\\ ",bbtext)
- gsub(/ /," \\ ",bbtext)
- }
-
- print "<tr width=\""width"\"><td colspan=\"4\" width=\"100%\">"
- print"<code>[url="botcastleurl"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s"][img]"botcastleurl frame"[/img][/url]"(bbtext!=""?"<br>"bbtext:"")(b>1 && alt!=""?"[spoiler]"alt"[/spoiler]":"")
- print"</code></td></tr>"
-
- ongbotdefined=""
- ongbotfile= datapath argtab["story"] "/" ((argtab["pleaseongbot"]!="")?argtab["pleaseongbot"]:"pleaseongbot")
- if (system("[ -f " ongbotfile " ]")==0)
- ongbotdefined=1
-
- if(ongbotdefined && ongoing>0 && state>0 && state<4 && f==last && b==(alt!=""?2:1))
- {
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">"
- print "<form method=\"post\" action=\"/aftertime/pleaseongthis\">"
- print "[<input type=\"submit\" class=\"hl\" value=\"ONG this for me\">]"
- print "<input type=\"hidden\" name=\"story\" value=\""argtab["story"]"\">"
- if(e>0 && noenh=="")
- print "<input type=\"hidden\" name=\"e\" value=\""e"\">"
- print "</form></td></tr>"
- }
- if(b==1 && alt!="")
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">[<a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s"&b=2\">spoiler</a>]</td></tr>"
- }
- else
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">[<a href=\"/aftertime/viewer?story="argtab["story"](max_enhance>0?"&e="e:"")"&f="f s"&b=1\">bbcode</a>]</td></tr>"
-
- if(argtab["otherviewerurl"]!="")
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\">[<a href=\""otherviewerurl"\">"argtab["otherviewertext"]"</a>]</td></tr>"
-
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\"><form method=\"get\" action=\"/aftertime/viewer\">Go to frame:"
- print "<input type=\"hidden\" name=\"story\" value=\""argtab["story"]"\">"
- if(max_enhance>0)
- print "<input type=\"hidden\" name=\"e\" value=\""e"\">"
- print "<input class=\"pt\" type=\"text\" name=\"f\" size=\"4\">"
- print "<input class=\"pk\" type=\"submit\" value=\"GO\">"
- if(ongtimetext!="" && ongoing==0)
- {
- # print ongoing
- # print"<form method=\"get\" action=\"/aftertime/viewer\">"
- # print "<input type=\"hidden\" name=\"story\" value=\""argtab["story"]"\">"
- # if(max_enhance>0)
- # print "<input type=\"hidden\" name=\"e\" value=\""e"\">"
- # print "<input type=\"hidden\" name=\"r\" value=\"1\">"
- print "<input class=\"pk\" name=\"r\" type=\"submit\" value=\"replay\">"
- # print "</form>"
- }
-
- print"</form></td></tr>"
-
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\"><form method=\"get\" action=\"/aftertime/viewer\">Go to story:<select class=\"pk\" name=\"story\">"
- for(i=0; i<stories; ++i)
- print "<option value=\""storytab[i]"\""(storytab[i]==argtab["story"]?" selected":"")">"storyname[i]"</option>"
- print "</select> <input class=\"pk\" type=\"submit\" value=\"GO\"></form></td></tr>"
-
- print "<tr width=\""width"\" align=\"center\"><td colspan=\"4\" width=\"100%\"><a href=\"http://1190.bicyclesonthemoon.info/aftertime\">Aftertime ONGsystem</a></td></tr>"
- }
- print "</table>"
-
- print "<br><a href=\"/\">1190.bicyclesonthemoon.info</a>"
- print "</center></body></html>"
-
-
-}
-
-function htmlescape(name,less,br, len,iii,escaped,ch)
-{
- len=length(name)
- escaped=""
- for(iii=1;iii<=len;++iii)
- {
- ch=substr(name,iii,1);
- if(ch == "\n")
- escaped = escaped ((br!="")?"<br>":"&#"ch2dec[ch]";")
- else if(ch =="\r")
- escaped = escaped ((br!="")?"":"&#"ch2dec[ch]";")
- else if(ch ~ /[\" ]/ && less=="")#"#"\""
- escaped = escaped "&#"ch2dec[ch]";"
- else if(ch ~ /[=<>&]/)
- escaped = escaped "&#"ch2dec[ch]";"
- else
- escaped = escaped ch
- }
- return escaped
-}
+++ /dev/null
-// viewer.c (1190.bicyclesonthemoon.info/aftertime/viewer)
-// The viewer
-// 21.06.2018
-//
-// Copyright (C) 2015-2016, 2018 Balthasar Szczepański
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Affero General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Affero General Public License for more details.
-//
-// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-#define STORYDEF_PRINTF "/eizm/data/aftertime/%s/settings"
-#define MAWK_PATH "/usr/bin/mawk"
-#define AWK_VIEWER "/eizm/pro/aftertime/viewer.awk"
-
-#include <cgi.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/wait.h>
-
-s_cgi *cgi;
-
-void escape(char *text);
-
-int main (int argc, char *argv[])
-{
- s_cgi *cgi;
- pid_t sub;
- int r;
-
- char *story;
- char *f;
- char *bb;
- char *enh;
- char *notic;
- char *replay;
-
- char arg1[256];
- char arg2[256];
- char arg3[256];
- char arg4[256];
- char arg5[256];
- char arg6[256];
- char storydef[256];
-
- cgi=cgiInit();
-
- //setvbuf(stdout, NULL, _IONBF, 0);
- dup2(fileno(stdout),fileno(stderr));
-
- story=cgiGetValue(cgi,"story");
- if(story!=NULL)
- escape(story);
- f=cgiGetValue(cgi,"f");
- bb=cgiGetValue(cgi,"b");
- enh=cgiGetValue(cgi,"e");
- notic=cgiGetValue(cgi,"n");
- replay=cgiGetValue(cgi,"r");
-
- snprintf(arg1,256,"story=%s",story!=NULL ? story : "");
- snprintf(arg2,256,"frame=%s",f!=NULL ? f : "");
- snprintf(arg3,256,"bbcode=%s",bb!=NULL ? bb : "");
- snprintf(arg4,256,"enhance=%s",enh!=NULL ? enh : "");
- snprintf(arg5,256,"notice=%s",notic!=NULL ? notic : "");
- snprintf(arg6,256,"replay=%s",replay!=NULL ? replay : "");
-
- sprintf(storydef,STORYDEF_PRINTF,story!=NULL ? story : "time");
-
- printf("Content-type: text/html\n\n");
-
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VIEWER,"-v",arg1,"-v",arg2,"-v",arg3,"-v",arg4,"-v",arg5,"-v",arg6,storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- if(r)
- {
- sprintf(storydef,STORYDEF_PRINTF,"default");
- fflush(stdout);
- sub=fork();
- if(sub==0)
- {
- r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VIEWER,"-v",arg1,"-v",arg2,"-v",arg3,"-v",arg4,"-v",arg5,"-v",arg5,storydef,(char *)0);
- exit(r);
- }
- waitpid(sub,&r,0);
- }
-
- return 0;
-}
-
-void escape(char *text){
- unsigned short i, len;
-
- len=strlen(text);
- for (i=0;i<len;++i)
- {
- if(text[i]=='/')
- text[i]='_';
- }
-}
+++ /dev/null
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">\r
-<html lang="en"><head>\r
-<title>time after Time • Bicycles on the Moon</title>\r
-<meta http-equiv="Content-type" content="text/html; charset=UTF-8">\r
-<link rel="icon" type="image/png" href="/img/favicon.png">\r
-<link rel="stylesheet" href="/css/botm.css">\r
-<script type="text/javascript" src="/ott/prosilver/template/forum_fn.js"></script>\r
-<!-- <script type="text/javascript" src="/ott/prosilver/template/styleswitcher.js" ></script> -->\r
-\r
-</head><body><a href="/"><img src="/img/botmlogo2.png" alt="1190.bicyclesonthemoon.info" border="0"></a>\r
-<h1>time after Time</h1>\r
-###info\r
-<a href="/">1190.bicyclesonthemoon.info</a></body></html>\r
+++ /dev/null
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">\r
-<html lang="en"><head>\r
-<title>time after Time • Bicycles on the Moon</title>\r
-<meta http-equiv="Content-type" content="text/html; charset=UTF-8">\r
-<link rel="icon" type="image/png" href="/img/favicon.png">\r
-<link rel="stylesheet" href="/css/botm.css">\r
-<!-- Javascript copied from the fora. -->\r
-<script type="text/javascript" src="/ott/prosilver/template/forum_fn.js"></script>\r
-<!-- <script type="text/javascript" src="/ott/prosilver/template/styleswitcher.js" ></script> -->\r
-\r
-</head><body><a href="/"><img src="/img/botmlogo2.png" alt="1190.bicyclesonthemoon.info" border="0"></a>\r
-<h1>time after Time</h1>\r
-<form method="post" action="/aftertime/post" id="postform">\r
-###debug\r
-###future\r
-<script type="text/javascript">\r
-// <![CDATA[\r
- var form_name = 'postform';\r
- var text_name = 'message';\r
- var load_draft = false;\r
- var upload = false;\r
-\r
- // Define the bbCode tags\r
- var bbcode = new Array();\r
- var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]','[flash=]', '[/flash]','[size=]','[/size]', '[bibliography]', '[/bibliography]', '[center]', '[/center]', '[cite]', '[/cite]', '[imath]', '[/imath]', '[math]', '[/math]', '[right]', '[/right]', '[s]', '[/s]', '[spoiler]', '[/spoiler]', '[sub]', '[/sub]', '[sup]', '[/sup]');\r
- var imageTag = false;\r
-\r
- // Helpline messages\r
- var help_line = {\r
- b: 'Bold text: [b]text[/b]',\r
- i: 'Italic text: [i]text[/i]',\r
- u: 'Underline text: [u]text[/u]',\r
- q: 'Quote text: [quote]text[/quote]',\r
- c: 'Code display: [code]code[/code]',\r
- l: 'List: [list]text[/list]',\r
- o: 'Ordered list: [list=]text[/list]',\r
- p: 'Insert image: [img]http://image_url[/img]',\r
- w: 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]',\r
- a: 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',\r
- s: 'Font colour: [color=red]text[/color] Tip: you can also use color=#FF0000',\r
- f: 'Font size: [size=85]small text[/size]',\r
- y: 'List: Add list element',\r
- d: 'Flash: [flash=width,height]http://url[/flash]'\r
- \r
- ,cb_22: ''\r
- \r
- ,cb_24: ''\r
- \r
- ,cb_26: ''\r
- \r
- ,cb_28: 'Inserts an inline block of TeX math.'\r
- \r
- ,cb_30: 'Adds a block of TeX math (not inline)'\r
- \r
- ,cb_32: ''\r
- \r
- ,cb_34: 'strike through'\r
- \r
- ,cb_36: 'hides spoilers'\r
- \r
- ,cb_38: 'subscript'\r
- \r
- ,cb_40: 'superscript'\r
- \r
- }\r
-\r
- var panels = new Array('options-panel', 'attach-panel', 'poll-panel');\r
- var show_panel = 'options-panel';\r
-\r
-\r
-// ]]>\r
-</script>\r
-\r
-<script type="text/javascript" src="/ott/prosilver/template/editor.js"></script>\r
-###HTML\r
-<div class="pl">\r
- <div class="pls">Send a message</div>\r
-###wrong\r
- <div class="plw">\r
- <div class="le">\r
- <table cellpadding="0" cellspacing="0" border="0">\r
- <tr><td><b>Story: </b></td><td>\r
-###postid\r
- </td></tr><tr><td><b>Subject: </b></td><td>\r
-###subject\r
- </td></tr><tr><td><b>Username: </b></td><td>\r
-###username\r
- </td></tr><tr><td><b>Password: </b></td><td>\r
- <input tabindex="5" name="password" id="password" size="40" class="pt" type="text">\r
- </td></tr><tr><td><b>Time (gmt): </b></td><td>\r
-###time\r
- </td></tr><!-- <tr><td><b>Post ID: </b></td><td>\r
-###ottid\r
- (optional)</td></tr> --><tr><td><b>Action: </b></td><td>\r
- <input type="submit" tabindex="9" name="Preview" value="Preview" class="pk" >\r
- <input type="submit" tabindex="10" name="post" value="Submit" class="pk" >\r
- </td></tr></table>\r
- </div>\r
- <div >\r
- <input type="button" class="pk" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" title="Bold text: [b]text[/b]" >\r
- <input type="button" class="pk" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onclick="bbstyle(2)" title="Italic text: [i]text[/i]" >\r
- <input type="button" class="pk" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onclick="bbstyle(4)" title="Underline text: [u]text[/u]" >\r
- <input type="button" class="pk" name="addbbcode34" value="s" onclick="bbstyle(34)" title="strike through" >\r
- <input type="button" class="pk" name="addbbcode38" value="sub" onclick="bbstyle(38)" title="subscript" >\r
- <input type="button" class="pk" name="addbbcode40" value="sup" onclick="bbstyle(40)" title="superscript" >\r
- <!-- <br> -->\r
- <input type="button" class="pk" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" title="Quote text: [quote]text[/quote]" >\r
- <input type="button" class="pk" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" title="Code display: [code]code[/code]" >\r
- <input type="button" class="pk" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" title="List: [list]text[/list]" >\r
- <input type="button" class="pk" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" title="Ordered list: [list=]text[/list]" >\r
- <input type="button" class="pk" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="List item: [*]text[/*]" >\r
- <!-- <br> -->\r
- <input type="button" class="pk" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" title="Insert image: [img]http://image_url[/img]" >\r
- <input type="button" class="pk" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" title="Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]" >\r
- <input type="button" class="pk" name="addbbcode24" value="center" onclick="bbstyle(24)" title="" >\r
- <input type="button" class="pk" name="addbbcode32" value="right" onclick="bbstyle(32)" title="" >\r
- <input type="button" class="pk" name="addbbcode36" value="spoiler" onclick="bbstyle(36)" title="hides spoilers" >\r
- <!-- <br> -->\r
- <b>Font size:</b> <select name="addbbcode20" class="pk" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="Font size: [size=85]small text[/size]">\r
- <option value="50">Tiny</option>\r
- <option value="85">Small</option>\r
- <option value="100" selected="selected">Normal</option>\r
- <option value="150">Large</option>\r
- <option value="200">Huge</option>\r
- </select>\r
- <input type="button" class="pk" name="bbpalette" id="bbpalette" value="Font colour" onclick="change_palette();" title="Font colour: [color=red]text[/color] Tip: you can also use color=#FF0000">\r
- <br></div><div>\r
-###ottid\r
- <b>(optional post ID)</b>\r
- </div>\r
- <div id="colour_palette" class="le" style="display: none;">\r
- <b>Font colour:</b><br>\r
- <script type="text/javascript">\r
- // <![CDATA[\r
- function change_palette()\r
- {\r
- <!-- dE('colour_palette'); -->\r
- e = document.getElementById('colour_palette');\r
- \r
- if (e.style.display == 'block')\r
- {\r
- e.style.display = 'none'\r
- document.getElementById('bbpalette').value = 'Font colour';\r
- }\r
- else\r
- {\r
- e.style.display = 'block'\r
- document.getElementById('bbpalette').value = 'Hide font colour';\r
- }\r
- }\r
-\r
- colorPalette('h', 15, 10);\r
- // ]]>\r
- </script>\r
- </div>\r
- </div>\r
- <div class="plt">Write here:</div>\r
-###message\r
- <div class="plt">Options:</div>\r
- <div class="plw">\r
-###disable_bbcode\r
-###disable_smilies\r
-###disable_magic_url\r
-###forceID\r
-###forcekey\r
-</div></div>\r
-</form>\r
-###back\r
-<br><br><a href="/">1190.bicyclesonthemoon.info</a></body></html>\r