--- /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
+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
+// bot5.c\r
+// SilentBot\r
+// 24.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 <unistd.h>\r
+#include <stdio.h>\r
+#include <stdlib.h>\r
+#include <time.h>\r
+#include <string.h>\r
+#include <sys/wait.h>\r
+\r
+#define TEMP_PATH "/eizm/tmp/t1i/bot5."\r
+#define LOG_PATH "/eizm/log/t1i/bot5.log"\r
+#define WAIT_PATH "/eizm/mem/t1i/mpost/"\r
+#define SENT_PATH "/eizm/mem/t1i/mpost/sent/"\r
+#define TEMPFILE_PATH "/eizm/tmp/t1i/bot5temp"\r
+#define POSTDATA_PATH "/eizm/tmp/t1i/bot5post"\r
+#define COOKIE_PATH "/eizm/tmp/t1i/bot5cook"\r
+#define STOP_PATH "/eizm/tmp/t1i/bot5stop"\r
+#define LS_PATH "/bin/ls"\r
+#define MV_PATH "/bin/mv"\r
+#define RM_PATH "/bin/rm"\r
+#define MAWK_PATH "/usr/bin/mawk"\r
+#define WGET_PATH "/usr/bin/wget"\r
+#define AWK_POST "/eizm/pro/t1i/post.awk"\r
+#define AWK_MPOST "/eizm/pro/t1i/mpost.awk"\r
+#define AWK_LASTPOST "/eizm/pro/t1i/lastpost.awk"\r
+#define PWAIT 15\r
+#define LASTPOST_ADDRESS "http://forums.xkcd.com/viewtopic.php?f=7&t=101043&sd=d"\r
+#define USERAGENT "SilentBot (http://1190.bicyclesonthemoon.info/silentbot/; the Silent Chronotransponder bot)"\r
+\r
+pid_t sub;\r
+int r;\r
+\r
+int main(int argc, char **argv)\r
+{\r
+ time_t t;\r
+ struct tm *nowS;\r
+ int yarg;\r
+ unsigned char text=0;\r
+ unsigned char newlog=0;\r
+ FILE *list;\r
+ FILE *post;\r
+ FILE *stopfile;\r
+ char temppath[256];\r
+ unsigned char logopen=0;\r
+ unsigned char i;\r
+ char line[256];\r
+ char value[256];\r
+ char inpath[256];\r
+ char outpath[256];\r
+ char argp1[256];\r
+ char argp2[256];\r
+ char argp3[256];\r
+ char argp4[256];\r
+ char argp5[256];\r
+ unsigned char d,m,h;\r
+ unsigned short y;\r
+ unsigned char another=0;\r
+ unsigned char edit;\r
+ \r
+ t=time(NULL);\r
+ sprintf(temppath,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
+ \r
+ while((yarg = getopt(argc,argv,"tn")) != -1)\r
+ {\r
+ switch(yarg)\r
+ {\r
+ case 't':\r
+ text=1;\r
+ break;\r
+ case 'n':\r
+ newlog=1;\r
+ break;\r
+ default:\r
+ \r
+ break;\r
+ }\r
+ }\r
+ if(!text)\r
+ {\r
+ if(freopen(LOG_PATH,newlog?"wt":"at",stdout)!=NULL)\r
+ logopen=1;\r
+ }\r
+ setvbuf(stdout, NULL, _IONBF, 0);\r
+ dup2(fileno(stdout),fileno(stderr));\r
+ printf("\n%s",ctime(&t));\r
+ \r
+ stopfile=fopen(STOP_PATH,"wt");\r
+ if (stopfile==NULL)\r
+ {\r
+ printf("FULL STOPFULL STOP\n");\r
+ return 1;\r
+ }\r
+ if (lockf(fileno(stopfile),F_TLOCK,0)!=0)\r
+ {\r
+ printf("FULL STOPFULL STOP\n");\r
+ return 1;\r
+ }\r
+ fprintf(stopfile,"%hu.FULL STOPFULL STOP\n",0);\r
+ \r
+ \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",WAIT_PATH,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ printf("ls fail.\n");\r
+ else\r
+ {\r
+ list=fopen(temppath,"rt");\r
+ if(list==NULL)\r
+ printf("list fail.\n");\r
+ else\r
+ {\r
+ for(i=0; fgets(line,255,list)!=NULL; ++i)\r
+ {\r
+ sscanf(line,"%s",value);\r
+ if(value[0]>'9'||value[0]<'0')\r
+ {\r
+ --i;\r
+ continue;\r
+ }\r
+ printf("%s",value);\r
+ sprintf(inpath,"%s%s",WAIT_PATH,value);\r
+ post=fopen(inpath,"rt");\r
+ if(post==NULL)\r
+ {\r
+ printf(" fail.\n");\r
+ continue;\r
+ }\r
+ for(h=0xff,d=0xff,m=0xff,y=0xffff;fgets(line,31,post)!=NULL;)\r
+ {\r
+ if(line[strlen(line)-1]!='\n')\r
+ continue;\r
+ if(line[0]=='h'&&line[1]=='=')\r
+ {\r
+ sscanf(line+2,"%hhu",&h);\r
+ //printf("\n h%hhu d%hhu %s",h,d,line);\r
+ }\r
+ else if(line[0]=='d'&&line[1]=='=')\r
+ {\r
+ sscanf(line+2,"%hhu",&d);\r
+ //printf("\n d%hhu d%hhu %s",d,d,line);\r
+ }\r
+ else if(line[0]=='m'&&line[1]=='=')\r
+ {\r
+ sscanf(line+2,"%hhu",&m);\r
+ //printf("\n m%hhu d%hhu %s",m,d,line);\r
+ }\r
+ else if(line[0]=='y'&&line[1]=='=')\r
+ {\r
+ sscanf(line+2,"%hu",&y);\r
+ //printf("\n y%hu d%hhu %s",y,d,line);\r
+ }\r
+ }\r
+ fclose(post);\r
+ printf(" %02hhu.%02hhu.%04hu %02hhu:00",d,m,y,h);\r
+ nowS=gmtime(&t);\r
+ \r
+ if((1900+nowS->tm_year-y)>=2)\r
+ {\r
+ printf(" timer mustard");\r
+ continue;\r
+ }\r
+ \r
+ if(y>1900+nowS->tm_year)\r
+ {\r
+ printf(" wait\n");\r
+ continue;\r
+ }\r
+ else if(y==1900+nowS->tm_year)\r
+ {\r
+ if(m>1+nowS->tm_mon)\r
+ {\r
+ printf(" wait\n");\r
+ continue;\r
+ }\r
+ else if(m==1+nowS->tm_mon)\r
+ {\r
+ if(d>nowS->tm_mday)\r
+ {\r
+ printf(" wait\n");\r
+ continue;\r
+ }\r
+ else if(d==nowS->tm_mday)\r
+ {\r
+ if(h>nowS->tm_hour)\r
+ {\r
+ printf(" wait\n");\r
+ continue;\r
+ }\r
+ }\r
+ \r
+ }\r
+ }\r
+ \r
+ printf(" deliver");\r
+ \r
+ do\r
+ {//test latest post\r
+ edit=0;\r
+ sub=fork();\r
+ if(sub==0)\r
+ {\r
+ r=execl(WGET_PATH,WGET_PATH, "-q","-t", "3","-U", USERAGENT, "-O", TEMPFILE_PATH,LASTPOST_ADDRESS, (char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ break;\r
+ \r
+ sub=fork();\r
+ if(sub==0)\r
+ {\r
+ if(freopen(temppath,"wt",stdout)==NULL)\r
+ exit(255);\r
+ r=execl(MAWK_PATH,MAWK_PATH, "-f",AWK_LASTPOST, TEMPFILE_PATH, (char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ break;\r
+ \r
+ post=fopen(temppath,"rt");\r
+ if(post==NULL)\r
+ break;\r
+ \r
+ if(fgets(argp1,255,post)!=NULL)\r
+ {\r
+ sscanf(argp1,"%s",argp2);\r
+ sprintf(argp4,"edit=%s",argp2);\r
+ }\r
+ else\r
+ {\r
+ fclose(post);\r
+ break;\r
+ }\r
+ if(fgets(argp1,255,post)!=NULL)\r
+ {\r
+ sscanf(argp1,"%s",argp2);\r
+ sprintf(argp5,"user=%s",argp2);\r
+ }\r
+ else\r
+ {\r
+ fclose(post);\r
+ break;\r
+ }\r
+ fclose(post);\r
+ edit=1;\r
+ }while(0);\r
+ \r
+ sprintf(argp1 ,"postfile=%s",POSTDATA_PATH);\r
+ sprintf(argp2,"cookiefile=%s",COOKIE_PATH);\r
+ sprintf(argp3,"tempfile=%s",TEMPFILE_PATH);\r
+ // sprintf(argp4,"name=%s",name);\r
+ // sprintf(argp5,"pass=%s",pass);\r
+ \r
+ //no longer necessary - bot can now edit\r
+ //ETA: not true, still have to wait but only 15s - so that phpBB doesn't\r
+ if(another)\r
+ sleep(PWAIT);\r
+ \r
+ sprintf(outpath,"%s%s",SENT_PATH,value);\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
+ if(r)\r
+ printf(" mv fail.\n");\r
+ \r
+ sub=fork();\r
+ if(!sub)\r
+ {\r
+ if(edit)\r
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_POST,"-v",argp1,"-v",argp2,"-v",argp3,"-v",argp4,"-v",argp5,outpath,(char *)0);\r
+ else\r
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_POST,"-v",argp1,"-v",argp2,"-v",argp3,outpath,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ {\r
+ sub=fork();\r
+ if(!sub)\r
+ {\r
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_MPOST,"-v",argp1,"-v",argp2,"-v",argp3,outpath,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ {\r
+ another=0;\r
+ continue;\r
+ }\r
+ }\r
+ else\r
+ {\r
+ post=fopen(POSTDATA_PATH,"rt");\r
+ if(post!=NULL)\r
+ {\r
+ if(fgets(line,255,post)!=NULL)\r
+ {\r
+ sscanf(line,"%s",value);\r
+ fclose(post);\r
+ \r
+ post=fopen(outpath,"at");\r
+ if(post!=NULL)\r
+ {\r
+ fprintf(post,"ID=%s\n",value);\r
+ fclose (post);\r
+ }\r
+ }\r
+ else\r
+ fclose(post);\r
+ }\r
+ \r
+ }\r
+ printf(" ok\n");\r
+ another=1;\r
+ \r
+ }\r
+ \r
+ if(i==0)\r
+ printf("Nothing.\n");\r
+ fclose(list);\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
+ if(r)\r
+ printf("rm fail.\n");\r
+ \r
+ \r
+ sub=fork();\r
+ if(!sub)\r
+ {\r
+ r=execl(RM_PATH,RM_PATH,"-f",COOKIE_PATH,(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",POSTDATA_PATH,(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",TEMPFILE_PATH,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ \r
+ lockf(fileno(stopfile),F_ULOCK,0);\r
+ fclose(stopfile);\r
+ \r
+ sub=fork();\r
+ if(!sub)\r
+ {\r
+ r=execl(RM_PATH,RM_PATH,"-f",STOP_PATH,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ }\r
+ }\r
+ if(logopen)\r
+ fclose(stdout);\r
+ return 0;\r
+}\r
--- /dev/null
+#// lastpost.awk\r
+#// what was the last post?\r
+#// 20.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
+BEGIN{\r
+ FS=""\r
+}\r
+{\r
+ if ((i=match($0, /id=\"p[0-9]+\"/))!=0) #"\r
+ {\r
+ temp=substr($0, i+5)\r
+ postid=substr(temp, 1, index(temp,"\"")-1)\r
+ }\r
+ \r
+ if ($0 ~ /class=\"postprofile\"/) #"\r
+ postprofile = "1"\r
+ \r
+ else if (postprofile=="")\r
+ next\r
+ \r
+ if($0 ~ /memberlist\.php.*mode=viewprofile[^<>]*>[^<>]+<\/a/)\r
+ {\r
+ temp=substr($0, index($0, ">")+1)\r
+ username=substr(temp, 1, index(temp,"<")-1)\r
+ exit\r
+ }\r
+}\r
+END{\r
+ print postid\r
+ print username\r
+}
\ No newline at end of file
--- /dev/null
+CC=gcc\r
+CC2=g++\r
+CF=-g -Wall\r
+# LF=-lIL\r
+LF2=-lcgi\r
+\r
+all: posted mpview remove post bot5 upload viewer enable\r
+\r
+bot5: bot5.c post.awk mpost.awk makefile\r
+ $(CC) $(CF) -o bot5 bot5.c\r
+\r
+# deliver: deliver.c\r
+# $(CC) $(CF) -o deliver deliver.c\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
+upload: upload.c upload.awk makefile\r
+ $(CC) $(CF) -o upload upload.c $(LF2)\r
+\r
+viewer: viewer.c makefile\r
+ $(CC) $(CF) -o viewer viewer.c $(LF2)\r
+\r
+enable: posted mpview remove post upload viewer\r
+ chmod u+s posted mpview remove post upload viewer\r
--- /dev/null
+#// mpost.awk\r
+#// The tool to post to the mirror\r
+#// 23.11.2014\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://1190.bicyclesonthemoon.info/ott"\r
+ useragent="\"SilentBot (http://1190.bicyclesonthemoon.info/silentbot/; Time thread post bot)\""\r
+};\r
+{\r
+ eq=index($0,"=")\r
+ argtab[substr($0,1,eq-1)]=substr($0,eq+1)\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/silentbot/view)\r
+// Display one post\r
+// 25.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
+#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 SENT_PATH "/eizm/mem/t1i/mpost/sent/"\r
+#define WAIT_PATH "/eizm/mem/t1i/mpost/"\r
+\r
+#define AWK_MVIEW "/eizm/pro/t1i/mview.awk"\r
+#define TEMP_PATH "/eizm/tmp/t1i/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
+ dup2(fileno(stdout),fileno(stderr));\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
+ if(line[0]=='s' && line[1]=='t')\r
+ {\r
+ sprintf(filename,"%s",line+2);\r
+ sprintf(cat,"cat=%s","st");\r
+ sprintf(postpath,"%s%s",SENT_PATH,filename);\r
+ }\r
+ else if(line[0]=='w' && line[1]=='t')\r
+ {\r
+ sprintf(filename,"%s",line+2);\r
+ sprintf(cat,"cat=%s","wt");\r
+ sprintf(postpath,"%s%s",WAIT_PATH,filename);\r
+ }\r
+ else \r
+ {\r
+ sprintf(filename,"%s","???");\r
+ sprintf(postpath,"%s","???");\r
+ sprintf(cat,"cat=%s","???");\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>the Silent Chronotransponder • 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>the Silent Chronotransponder</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",cat,"-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("<br><a href=\"/silentbot/list\">back to the Silent Chronotransponder</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
+#// 25.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"]&&cat=="wt"&&argtab["key"]!="")\r
+ {\r
+ print"<b class=\"br\">Invalid key.</b><br><br>"\r
+ exit\r
+ }\r
+ print "<div id=\""cat argtab["timenumber"]"\" class=\"pl\">"\r
+ print "<div class=\"pls\">"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=\"/silentbot/post?q="cat argtab["timenumber"](cat=="wt"?"&key="argtab["key"]:"")"\">quote</a> "((cat=="wt")?("<a class=\"bi\" href=\"/silentbot/post?e="cat argtab["timenumber"]"&key="argtab["key"]"\">edit</a> "):"")"<a class=\"bi\" href=\"/silentbot/remove?r="cat argtab["timenumber"](cat=="wt"?"&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
+#// notice.awk\r
+#// Display "Did you notice..." post in viewer\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
+BEGIN{\r
+ timecmd="date -u +\"%Y%m%d%H\""\r
+}\r
+{\r
+ real=1\r
+ eq=index($0,"=")\r
+ argtab[substr($0,1,eq-1)]=substr($0,eq+1)\r
+}\r
+END{\r
+ if(real=="")\r
+ exit 1\r
+ \r
+ posttime=argtab["y"]argtab["m"]argtab["d"]argtab["h"]\r
+ timecmd | getline thistime\r
+ close(timecmd)\r
+ \r
+ if (thistime<posttime)\r
+ exit 1\r
+ \r
+ \r
+ if(int(argtab["round"])<=int(round))\r
+ {\r
+ print "<tr><td colspan=\"4\"><i>"argtab["subject_h"]"</i> "(argtab["ID"]!=""?" (<a href=\"/ott/view?p="argtab["ID"]"#p"argtab["ID"]"\">OTT time travel</a>)":"")"</td></tr>"\r
+ print"<tr><td colspan=\"4\">"((argtab["HTML"]!="")?argtab["HTML"]:argtab["BBHTML"])"</td></tr>"\r
+ }\r
+ else if (int(argtab["round"])==int(round)+1)\r
+ {\r
+ print "<tr align=\"center\"><td colspan=\"4\"><a href=\""url"\">"argtab["subject_h"]"</a></td></tr>"\r
+ }\r
+ \r
+}
\ No newline at end of file
--- /dev/null
+#! /usr/bin/mawk -f
+
+#notice2.awk
+#28.03.2015
+#find SilentBot's "Did you notice..." posts
+#replaced by the aftertime system, notice4.awk
+
+BEGIN{
+ mawk="/usr/bin/mawk"
+ wget="/usr/bin/wget"
+ tempfile="/eizm/tmp/t1i/notice"
+ postlist="\"http://forums.xkcd.com/search.php?st=0&sk=t&sd=d&sr=posts&author_id=560926\""
+ useragent="\"t1i - did you notice...(http://1190.bicyclesonthemoon.info/bluet1i/viewer)\""
+ noticeawk="/eizm/pro/t1i/notice3.awk"
+
+ system(wget" -q -O "tempfile" -U "useragent" "postlist)
+ system(mawk" -f "noticeawk" "tempfile)
+}
\ No newline at end of file
--- /dev/null
+#notice3.awk\r
+#28.03.2015\r
+#used by notice2,awk\r
+\r
+{\r
+ if($0 ~ /<h3><a .*>TimeAfterTime Revisited/)\r
+ {\r
+ post=substr($0, index($0,"#p")+2)\r
+ post=substr(post, 1, index(post, "\"")-1)\r
+ \r
+ frame=substr($0, index($0, "t1i-")+4, 4)\r
+ \r
+ file="/eizm/mem/t1i/notice/"frame\r
+ printf("%s",post) > file\r
+ close(file)\r
+ }\r
+}\r
--- /dev/null
+#! /usr/bin/mawk -f
+
+#// notice4.awk
+#// Add SilentBot's posts' ID to the viewer
+#// 31.03.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/>.
+
+BEGIN{
+ lasttime="/eizm/mem/t1i/notice/lasttime"
+ list="/eizm/mem/t1i/mpost/sent/"
+ list2="/eizm/mem/aftertime/mpost/"
+
+ listcmd="/bin/ls -1 --color=never "list
+
+
+ getline lastpost < lasttime
+ close(lasttime)
+
+ if(lastpost=="")
+ lastpost="0000000000"
+
+ while ((listcmd | getline postid)>0)
+ {
+ if (postid !~ /^[0-9A-F]+_53696C656E7454696D6572/)
+ continue
+
+ number=substr(postid,1,index(postid,"_")-1)
+
+ if (number<=lasttime)
+ continue
+
+ postfile=list postid
+
+ split("", argtab, ":")
+ while((getline line < postfile)>0)
+ {
+ f=1
+ gsub(/[\r\n]/,"",line)
+ eq=index(line,"=")
+ argtab[substr(line,1,eq-1)]=substr(line,eq+1)
+ }
+ close (postfile)
+ if(argtab["ID"]=="")
+ continue
+
+ if(argtab["subject_h"]!~/t1i-[0-9][0-9][0-9][0-9]$/)
+ continue
+
+ ottid=argtab["ID"]
+
+ frame=substr(argtab["subject_h"], length(argtab["subject_h"])-3)
+
+ y=substr(number,1,4)
+ m=substr(number,5,2)
+ d=substr(number,7,2)
+ h=substr(number,9,2)
+
+
+ for(i=1;i<100;++i)
+ {
+ postfile=list2 "t1i-"frame"-"sprintf("%02u",i)
+
+ split("", argtab, ":")
+ while((getline line < postfile)>0)
+ {
+ f=1
+ gsub(/[\r\n]/,"",line)
+ eq=index(line,"=")
+ argtab[substr(line,1,eq-1)]=substr(line,eq+1)
+ }
+ close (postfile)
+
+ if(argtab["timenumber"]=="")
+ break;
+
+ if(argtab["y"]!=y || argtab["m"]!=m || argtab["d"]!=d || argtab["h"]!=h)
+ continue
+
+ if(argtab["ID"]!="")
+ break;
+
+ print "ID="ottid >> postfile
+ close(postfile)
+
+ #print argtab["timenumber"]
+
+ print number > lasttime
+ close(lasttime)
+
+ }
+ }
+ close(listcmd)
+}
\ No newline at end of file
--- /dev/null
+#// post.awk\r
+#// The tool to post to the OTT\r
+#// 25.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="\"SilentBot (http://1190.bicyclesonthemoon.info/silentbot/; the Silent Chronotransponder 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
+ if ((temp ~ /<a href=[^<>]*p=/) && (postid==""))\r
+ {\r
+ postid = substr (temp , index(temp, "#p")+2)\r
+ postid = substr (postid, 1, index(postid, "\"") - 1)\r
+ }\r
+ }\r
+ close(tempfile)\r
+ \r
+ print postid > postfile\r
+ close(postfile)\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
+{\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
+// 25.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
+#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/silentbot/post.htm"\r
+#define INFO_PATH "/eizm/www/time/silentbot/info.htm"\r
+#define MPOST_PATH "/eizm/mem/t1i/mpost/"\r
+\r
+#define AWK_PREVIEW "/eizm/pro/t1i/preview.awk"\r
+#define AWK_VIEW "/eizm/pro/t1i/view.awk"\r
+#define TEMP_PATH "/eizm/tmp/t1i/preview."\r
+#define AWK_B2H "/eizm/pro/t1i/bb2html.awk"\r
+#define AWK_VERIFY "/eizm/pro/t1i/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 *subject = &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 *attach_sig = &zero;\r
+char *notify = &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 *key =&zero;\r
+char *forcekey =&zero;\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 end(int m);\r
+void id(char *timenumber,unsigned short y, unsigned char m, unsigned short d, unsigned char h, char *name);\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 submit()\r
+{\r
+ time_t posttime;\r
+ struct tm *nowS;\r
+ char timenumber[256];\r
+ char forcepath[512];\r
+ char yy[8];\r
+ char mm[4];\r
+ char dd[4];\r
+ char hh[4];\r
+ char arg1[256];\r
+ char arg2[256];\r
+ char newkey[33];\r
+ unsigned char tm, td, th;\r
+ unsigned short ty;\r
+\r
+ posttime=time(NULL);\r
+ nowS=gmtime(&posttime);\r
+ \r
+ if(forcekey[0]=='\0')\r
+ sprintf(newkey,"%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
+ sprintf(newkey,"%s",forcekey);\r
+ \r
+ if(y[0]!='\0'){sscanf(y,"%hu",&ty); sprintf(yy,"%04hu",ty); }\r
+ if(m[0]!='\0'){sscanf(m,"%hhu",&tm);sprintf(mm,"%02hhu",tm);}\r
+ if(d[0]!='\0'){sscanf(d,"%hhu",&td);sprintf(dd,"%02hhu",td);}\r
+ if(h[0]!='\0'){sscanf(h,"%hhu",&th);sprintf(hh,"%02hhu",th);}\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
+ \r
+ if(ty<1900+nowS->tm_year)\r
+ preview("Can't send this post to the past.");\r
+ else if(ty==1900+nowS->tm_year)\r
+ {\r
+ if(tm<1+nowS->tm_mon)\r
+ preview("Can't send this post to the past.");\r
+ else if(tm==1+nowS->tm_mon)\r
+ {\r
+ if(td<nowS->tm_mday)\r
+ preview("Can't send this post to the past.");\r
+ else if (td==nowS->tm_mday)\r
+ {\r
+ if (th<1+nowS->tm_hour)\r
+ preview("Can't send this post to the past.");\r
+ }\r
+ }\r
+ }\r
+\r
+ \r
+ // sprintf(timenumber,"%04hu%02hhu%02hhu%02hhu_%llu",ty,tm,td,th,(unsigned long long)posttime);\r
+ id(timenumber,ty,tm,td,th,username);\r
+ sprintf(postpath,"%s%s",MPOST_PATH,timenumber);\r
+ if(forceID[0]!='\0')\r
+ sprintf(forcepath,"%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,"BBHTML",message,1);\r
+ writeArgH(tempfile,"BB",message,3);\r
+ writeArgH(tempfile,"username_h",username);\r
+ writeArgH(tempfile,"subject_h",subject);\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
+ writeArg (tempfile,"username",username);\r
+ writeArg (tempfile,"password",password,1);\r
+ writeArg (tempfile,"subject",subject);\r
+ writeArg (tempfile,"message",message,(silent[0]!='\0')?"":((disable_bbcode[0]!='\0')?"\n\n-- posted by SilentBot":"[right][size=80]-- posted by SilentBot [img]http://forums.xkcd.com/download/file.php?id=47884[/img][/size][/right]"));\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(attach_sig[0]!='\0')\r
+ writeArg(tempfile,"attach_sig",attach_sig);\r
+ if(notify[0]!='\0')\r
+ writeArg(tempfile,"notify",notify);\r
+ if(silent[0]!='\0')\r
+ writeArgH(tempfile,"silent",silent);\r
+ fclose(tempfile);\r
+ tf=false;\r
+ \r
+ sprintf(arg1,"outfile=%s",temppath);\r
+ sprintf(arg2,"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
+ sprintf(arg1,"name=%s",username);\r
+ sprintf(arg2,"pass=%s",password);\r
+ sub=fork();\r
+ if(sub==0)\r
+ {\r
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VERIFY,"-v",arg1,"-v",arg2,"-v","reversed=1",(forceID[0]!='\0')?forcepath:postpath,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(!r)\r
+ preview("Can't replace 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
+ sprintf(arg1,"info=<p>This message has been sent successfully.<br><br><a href=\"/silentbot/view?v=wt%s&key=%s\">View your submitted message</a><br><br><a href=\"/silentbot/list/\">Return to the Silent Chronotransponder</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 mm[4];\r
+ char dd[4];\r
+ char hh[4];\r
+ unsigned short ty;\r
+ unsigned char tm,td,th;\r
+ if(y[0]!='\0'){sscanf(y,"%hu",&ty); ty&=0x0fff;sprintf(yy,"%04hu",ty); }\r
+ if(m[0]!='\0'){sscanf(m,"%hhu",&tm);tm&= 0x0f;sprintf(mm,"%02hhu",tm);}\r
+ if(d[0]!='\0'){sscanf(d,"%hhu",&td);td&= 0x1f;sprintf(dd,"%02hhu",td);}\r
+ if(h[0]!='\0'){sscanf(h,"%hhu",&th);th&= 0x1f;sprintf(hh,"%02hhu",th);}\r
+ \r
+ tempfile=fopen(temppath,"wt");\r
+ if(tempfile==NULL)\r
+ end(1);\r
+ tf=true;\r
+ \r
+ writeArgH(tempfile,"HTML",message,1);\r
+ writeArgH(tempfile,"BB",message,3);\r
+ writeArgH(tempfile,"wrong",text);\r
+ writeArgH(tempfile,"username",username);\r
+ writeArgH(tempfile,"subject",subject);\r
+ writeArgH(tempfile,"message",message);\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,"disable_bbcode",disable_bbcode);\r
+ writeArgH(tempfile,"disable_smilies",disable_smilies);\r
+ writeArgH(tempfile,"disable_magic_url",disable_magic_url);\r
+ writeArgH(tempfile,"attach_sig",attach_sig);\r
+ writeArgH(tempfile,"notify",notify);\r
+ writeArgH(tempfile,"silent",silent);\r
+ writeArgH(tempfile,"addquote",addquote);\r
+ writeArgH(tempfile,"edit",edit);\r
+ writeArgH(tempfile,"forceID",forceID);\r
+ writeArgH(tempfile,"key",forcekey);\r
+ fclose(tempfile);\r
+ tf=false;\r
+ \r
+ printf("Content-type: text/html\n\n");\r
+ \r
+ sprintf(arg1,"outfile=%s",temppath);\r
+ sprintf(arg2,"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
+ sprintf(arg1,"argfile=%s",temppath);\r
+ sprintf(arg2,"key=%s",key[0]?key:"???");\r
+ fflush(stdout);\r
+ sub=fork();\r
+ if(sub==0)\r
+ {\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
+ cgi=cgiInit();\r
+ srand (time (NULL) + getpid());\r
+ \r
+ sprintf(temppath,"%s%lu",TEMP_PATH,(unsigned long)getpid());\r
+ sprintf(temppath2,"%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,"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
+ 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,"attach_sig");\r
+ if(arg!=NULL)\r
+ attach_sig=arg;\r
+ \r
+ arg=cgiGetValue(cgi,"notify");\r
+ if(arg!=NULL)\r
+ notify=arg;\r
+ \r
+ arg=cgiGetValue(cgi,"silent");\r
+ if(arg!=NULL)\r
+ silent=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
+ 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,unsigned short y, unsigned char m, unsigned short d, unsigned char h, char *name)\r
+{\r
+ sprintf(timenumber,"%04hu%02hhu%02hhu%02hhu_",y,m,d,h);\r
+ for(unsigned short j=0, k=strlen(name);j<k;++j)\r
+ sprintf(timenumber+strlen(timenumber),"%02X",(unsigned short)name[j]);\r
+}
\ No newline at end of file
--- /dev/null
+#// posted.awk\r
+#// Display one entry in the post list\r
+#// 25.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
+ 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
+ if(((pass,!=urldecode(argtab["password"]))||(name!=urldecode(argtab["username"])))&&cat!="st")\r
+ exit 1;\r
+ if (r2==0)\r
+ class="plw"\r
+ else\r
+ class="plv"\r
+ print "<tr class=\""class"\"><td class=\"plk\">"argtab["y"]"-"argtab["m"]"-"argtab["d"]" "argtab["h"]":00</td><td class=\"plk\">"argtab["username_h"]"</td><td class=\"plk\">"argtab["subject_h"]"</td><td class=\"plk\"><a href=\"/silentbot/view?v="cat argtab["timenumber"](cat=="wt"?"&key="argtab["key"]:"")"\">view</a> <a href=\"/silentbot/post?q="cat argtab["timenumber"](cat=="wt"?"&key="argtab["key"]:"")"\">quote</a> "(cat=="wt"?"<a href=\"/silentbot/post?e="cat argtab["timenumber"]"&key="argtab["key"]"\">edit</a> ":"")"<a href=\"/silentbot/remove?r="cat argtab["timenumber"](cat=="wt"?"&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
+# }\r
+function urldecode(ht ,i,j,un,num)\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
+}
\ No newline at end of file
--- /dev/null
+// posted.c (1190.bicyclesonthemoon.info/silentbot/list)\r
+// Display the post list\r
+// 26.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
+#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/t1i/posted."\r
+#define SENT_PATH "/eizm/mem/t1i/mpost/sent/"\r
+#define WAIT_PATH "/eizm/mem/t1i/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/t1i/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>the Silent Chronotransponder • 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>the Silent Chronotransponder</h1>\n");\r
+ printf("(<a href=\"/silentbot/view?v=st0_1\">some explanation</a>)<br>\n");\r
+ printf("<form method=\"post\" action=\"/silentbot/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><b>Sent posts: </b></td><td><input type=\"checkbox\" class=\"pt\" name=\"sent\" %s></td></tr>\n",sent?" checked":"");\r
+ printf("<tr><td><td><input type=\"submit\" class=\"pk\" value=\"Reload list\"></td></tr></table></form>\n");\r
+ printf("<b><a href=\"/silentbot/post\">Write a post</a></b><br><br>\n");\r
+ printf("<form action=\"/silentbot/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=\"/silentbot/view?v=st0_2\">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",WAIT_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\">post time</td><td class=\"plk\">author</td><td class=\"plk\">subject</td><td class=\"plk\">action</td></tr>\n");\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",WAIT_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","cat=wt","-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
+ printf("</table><br>\n");\r
+\r
+ }\r
+ \r
+ if(sent)\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",SENT_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("<br><table class=\"pl\"><tr class=\"pls\"><td colspan=\"4\">Sent</td></tr>\n");\r
+ printf("<tr class=\"plt\"><td class=\"plk\">post time</td><td class=\"plk\">author</td><td class=\"plk\">subject</td><td class=\"plk\">action</td></tr>\n");\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",SENT_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","cat=st","-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>\n");\r
+ }\r
+ }\r
+ \r
+ printf("<br><a href=\"/aftertime\">Aftertime ONGsystem</a><br><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
+#postid.awk\r
+#24.04.2015\r
+#replaced by notice4.awk\r
+\r
+BEGIN{\r
+ postpath="/eizm/mem/t1i/mpost/sent/"\r
+ noticepath="/eizm/mem/t1i/notice/"\r
+ tab_len=0\r
+}\r
+{\r
+ ID=$1\r
+ frame =$NF\r
+ \r
+ if(frame !~ /t1i-[0-9][0-9][0-9][0-9]/)\r
+ next\r
+ \r
+ frame=substr(frame, 5, 4)\r
+ \r
+ notice=noticepath frame\r
+ \r
+ getline OTT < notice\r
+ close (notice)\r
+ \r
+ if(OTT=="")\r
+ next\r
+ \r
+ post=postpath ID\r
+ \r
+ print "ID="OTT >> post\r
+ close(post)\r
+}
\ No newline at end of file
--- /dev/null
+#// preview.awk\r
+#// Preview a post in the post edit interface\r
+#// 25.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
+ sentpath="/eizm/mem/t1i/mpost/sent/"\r
+ waitpath="/eizm/mem/t1i/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
+ subject="<input type=\"text\" name=\"subject\" id=\"subject\" size=\"40\" maxlength=\"60\" tabindex=\"1\" value=\"%s\" class=\"pt\">\n"\r
+ username="<input tabindex=\"2\" name=\"username\" id=\"username\" size=\"40\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
+ time="<b>Y: </b><input tabindex=\"4\" name=\"y\" id=\"year\" size=\"4\" value=\"%s\" class=\"pt\" type=\"text\"><b> M: </b><input tabindex=\"5\" name=\"m\" id=\"month\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> D: </b><input tabindex=\"6\" name=\"d\" id=\"day\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> H: </b><input tabindex=\"7\" name=\"h\" id=\"hour\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\">\n"\r
+ message="<textarea name=\"message\" id=\"message\" rows=\"17\" tabindex=\"8\" class=\"pt\" >%s%s</textarea>\n"\r
+ # forcetime1="<input type=\"text\" name=\"forcetime\" id=\"forcetime\" size=\"16\" maxlength=\"32\" value=\"%s\" class=\"pt\">\n"\r
+ # forcetime2="<tr><td><b>fTime: </b></td><td><b>day: </b><input name=\"dd\" id=\"fday\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> month: </b><input name=\"mm\" id=\"fmonth\" size=\"2\" value=\"%s\" class=\"pt\" type=\"text\"><b> year: </b><input name=\"yy\" id=\"fyear\" size=\"4\" value=\"%s\" class=\"pt\" type=\"text\"></tr>\n"\r
+ # img="<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
+ back="<a href=\"/silentbot/list\">back to the Silent Chronotransponder</a>"\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
+ attach_sig="<input class=\"pt\" type=\"checkbox\" name=\"attach_sig\" id=\"attach_sig\" %s > <b>Attach a signature</b><br>\n"\r
+ notify="<input class=\"pt\" type=\"checkbox\" name=\"notify\" id=\"notify\" %s > <b>Notify me when a reply is posted</b><br>\n"\r
+ silent="<input class=\"pt\" type=\"checkbox\" name=\"silent\" id=\"silent\" %s > <b>Very silent</b><br>\n"\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"] ~ /^wt[0-9]+_[0-9a-fA-F]+$/)\r
+ {\r
+ argtab["forceID"]=substr(argtab["edit"],3)\r
+ argfile= waitpath 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 && argtab["addquote"]~/^wt/)\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"] ~ /^[sw]t[0-9]+_[0-9a-fA-F]+$/)\r
+ {\r
+ if(argtab["addquote"] ~ /^st[0-9]+_[0-9a-fA-F]+$/)\r
+ argfile= sentpath substr(argtab["addquote"],3)\r
+ if(argtab["addquote"] ~ /^wt[0-9]+_[0-9a-fA-F]+$/)\r
+ argfile= waitpath substr(argtab["addquote"],3)\r
+ #else\r
+ #argfile is not changed = quote self?\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 && argtab["addquote"]~/^wt/)\r
+ {\r
+ argtab["wrong"]="Invalid key."\r
+ break;\r
+ }\r
+ }\r
+ 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["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"]=="")?"Wait for it.":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
+ \r
+ else if ($0 ~ /^###future/)\r
+ {\r
+ ###no longer supported\r
+ }\r
+ else if ($0 ~ /^###forceID/)\r
+ {\r
+ if(argtab["forceID"]!="")\r
+ printf(forceID,argtab["forceID"])\r
+ }\r
+ else if ($0 ~ /^###forcekey/)\r
+ {\r
+ if(argtab["key"]!="")\r
+ printf(forcekey,argtab["key"])\r
+ }\r
+ else if ($0 ~ /^###back/)\r
+ {\r
+ print 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
+ else if ($0 ~ /^###attach_sig/)\r
+ printf(attach_sig,(argtab["attach_sig"]=="on")?"checked=\"checked\"":"")\r
+ else if ($0 ~ /^###notify/)\r
+ printf(notify,(argtab["notify"]=="on")?"checked=\"checked\"":"")\r
+ else if ($0 ~ /^###silent/)\r
+ printf(silent,(argtab["silent"]=="on")?"checked=\"checked\"":"")\r
+ else\r
+ print $0\r
+};\r
--- /dev/null
+// remove.c (1190.bicyclesonthemoon.info/silentbot/remove)\r
+// remove a post\r
+// 25.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
+#include <cgi.h>\r
+#include <stdio.h>\r
+#include <stdlib.h>\r
+#include <unistd.h>\r
+#include <sys/wait.h>\r
+\r
+#define SENT_PATH "/eizm/mem/t1i/mpost/sent/"\r
+#define WAIT_PATH "/eizm/mem/t1i/mpost/"\r
+#define RMOV_PATH "/eizm/mem/t1i/mpost/rm/"\r
+#define MV_PATH "/bin/mv"\r
+#define MAWK_PATH "/usr/bin/mawk"\r
+#define AWK_VERIFY "/eizm/pro/t1i/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
+ \r
+ cgi=cgiInit();\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>the Silent Chronotransponder • 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>the Silent Chronotransponder interface</h1>\n");\r
+ printf("<form action=\"/silentbot/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
+ if(rmov[0]=='s'&&rmov[1]=='t')\r
+ sprintf(inpath,"%s%s",SENT_PATH,rmov+2);\r
+ else if(rmov[0]=='w'&&rmov[1]=='t')\r
+ sprintf(inpath,"%s%s",WAIT_PATH,rmov+2);\r
+ else\r
+ {\r
+ cgiRedirect("/silentbot/list");\r
+ return(0);\r
+ }\r
+ \r
+ sprintf(argp1,"name=%s",username);\r
+ sprintf(argp2,"pass=%s",password);\r
+ \r
+ sub=fork();\r
+ if(sub==0)\r
+ {\r
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_VERIFY,"-v",argp1,"-v",argp2,inpath,(char *)0);\r
+ exit(r);\r
+ }\r
+ waitpid(sub,&r,0);\r
+ if(r)\r
+ {\r
+ cgiRedirect("/silentbot/list");\r
+ return(0);\r
+ }\r
+ sprintf(outpath,"%s%s",RMOV_PATH,rmov+2);\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("/silentbot/list");\r
+ return 0;\r
+}
\ No newline at end of file
--- /dev/null
+#// upload.awk\r
+#// The post upload interface\r
+#// 05.06.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
+ postpath="/eizm/mem/t1i/mpost/"\r
+ stpath="/eizm/mem/t1i/mpost/sent/"\r
+ rmpath="/eizm/mem/t1i/mpost/rm/"\r
+ bb2html="/eizm/pro/t1i/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
+ memenumber=8\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
+ sig=""\r
+ notify=""\r
+ silent=""\r
+ quot=""\r
+ rmov=""\r
+ lst=""\r
+ flst=""\r
+ h=""\r
+ d=""\r
+ m=""\r
+ y=""\r
+ subject=""\r
+ content=""\r
+ options=""\r
+ # replace=""\r
+ }\r
+ next\r
+ }\r
+ \r
+ ++ln\r
+ if(ln==1)\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
+ # #xxxx-xx-xx xx xxxx-xx-xx xx\r
+ # if(length($0)>=27)\r
+ # replace=substr($0,15,4)substr($0,20,2)substr($0,23,2)substr($0,26,2)\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 ~ /a/)\r
+ sig=1\r
+ if(options ~ /n/)\r
+ notify=1\r
+ if(options ~ /v/)\r
+ silent=1\r
+ if(options ~ /r/)\r
+ rmov=1\r
+ if(options ~ /q/)\r
+ quot=1\r
+ if(options ~ /l/)\r
+ lst=1\r
+ if(options ~ /f/)\r
+ flst=1\r
+ }\r
+ else if(ln==3)\r
+ {\r
+ subject=$0\r
+ }\r
+ else\r
+ {\r
+ if(ln!=4)\r
+ content=content "\n" $0\r
+ else\r
+ content=$0\r
+ }\r
+\r
+}\r
+END{\r
+ if(ln!=0)\r
+ post()\r
+}\r
+function remove( postid,postfile,rmfile,stfile,temp,f,tn,eq,tv)\r
+{\r
+ postid=sprintf("%04d%02d%02d%02d_%s",y,m,d,h,hexencode(name))\r
+ postfile=postpath postid\r
+ rmfile=rmpath postid\r
+ stfile=stpath postid\r
+ printf("%s",postid" ")\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=="username")\r
+ {\r
+ if(urldecode(tv)!=name)\r
+ {\r
+ # print "Can't remove, post belongs to "substr(temp,eq+1)"."\r
+ print "not removed."substr(temp,eq+1)"."\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn=="password")\r
+ {\r
+ if(urldecode(tv)!=pass)\r
+ {\r
+ # print "Can't remove, wrong password."\r
+ print "not removed"\r
+ #I shouldn't tell why - the user can't be able to determine if post exists.\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ }\r
+ \r
+ if(f!="")\r
+ {\r
+ close(postfile)\r
+ if(system("mv -f "postfile" "rmfile)==0)\r
+ {\r
+ print "removed."\r
+ return\r
+ }\r
+ }\r
+ f=""\r
+ while((getline temp < stfile)>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=="username")\r
+ {\r
+ if(urldecode(tv)!=name)\r
+ {\r
+ print "Can't remove, post belongs to "substr(temp,eq+1)"."\r
+ close(stfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn=="password")\r
+ {\r
+ if(urldecode(tv)!=pass)\r
+ {\r
+ print "Can't remove, wrong password."\r
+ close(stfile)\r
+ return\r
+ }\r
+ }\r
+ }\r
+ if(f!="")\r
+ {\r
+ close(stfile)\r
+ if(system("mv -f "stfile" "rmfile)==0)\r
+ {\r
+ print "removed."\r
+ return\r
+ }\r
+ }\r
+ print "not removed."\r
+}\r
+\r
+function quote( postid,postfile,stfile,temp,f,opt,cont,ongt,subj,eq,tn,tv,id)\r
+{\r
+ postid=sprintf("%04d%02d%02d%02d_%s",y,m,d,h,hexencode(name))\r
+ postfile=postpath postid\r
+ stfile=stpath postid\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=="username")\r
+ {\r
+ if(urldecode(tv)!=name)\r
+ {\r
+ #print "Can't quote, post belongs to "substr(temp,eq+1)"."\r
+ print " can't. quote." #I shouldn't tell why\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn=="password")\r
+ {\r
+ if(urldecode(tv)!=pass)\r
+ {\r
+ #print "Can't quote, wrong password."\r
+ print " can't quote." #I shouldn't tell why\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn=="BB")\r
+ cont=unhtml(tv)\r
+ else if(tn=="brtext")\r
+ ongt=tv\r
+ else if(tn=="subject_h")\r
+ subj=unhtml(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
+ else if(tn=="attach_sig")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"A"\r
+ }\r
+ else if(tn=="notify")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"N"\r
+ }\r
+ else if(tn=="silent")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"V"\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" content "((ongt!="")?ongt:cont)\r
+ return\r
+ }\r
+ \r
+ while((getline temp < stfile)>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=="BB")\r
+ cont=unhtml(tv)\r
+ else if(tn=="brtext")\r
+ ongt=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
+ else if(tn=="attach_sig")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"A"\r
+ }\r
+ else if(tn=="notify")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"N"\r
+ }\r
+ else if(tn=="silent")\r
+ {\r
+ if(tv=="on")\r
+ opt=opt"V"\r
+ }\r
+ }\r
+ if(f!="")\r
+ {\r
+ close(stfile)\r
+ if (opt=="")\r
+ opt="_"\r
+ print postid" subject "subj\r
+ print postid" options "opt\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,temp,mt,f,eq,tn,tv)\r
+{\r
+ \r
+ if (flst!="")\r
+ {\r
+ cmd="/bin/ls -1 --color=never "stpath\r
+ while ((cmd | getline id)>0)\r
+ {\r
+ f=""\r
+ mt="[0-9]*_"hexencode(name)\r
+ if(id !~ mt)\r
+ continue\r
+ stfile = stpath id\r
+ #print id\r
+ \r
+ while((getline temp < stfile)>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=="subject_h")\r
+ subj=unhtml(tv)\r
+ }\r
+ if(f!="")\r
+ {\r
+ close(stfile)\r
+ print id" subject "subj\r
+ }\r
+ }\r
+ close (cmd)\r
+ }\r
+ \r
+ cmd="/bin/ls -1 --color=never "postpath\r
+ while ((cmd | getline id)>0)\r
+ {\r
+ f=""\r
+ mt="[0-9]*_"hexencode(name)\r
+ if(id !~ mt)\r
+ continue\r
+ postfile = postpath id\r
+ #print 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=="username")\r
+ {\r
+ if(urldecode(tv)!=name)\r
+ {\r
+ close(postfile)\r
+ f=""\r
+ break\r
+ }\r
+ }\r
+ else if(tn=="password")\r
+ {\r
+ if(urldecode(tv)!=pass)\r
+ {\r
+ close(postfile)\r
+ f=""\r
+ break\r
+ }\r
+ }\r
+ else if(tn=="subject_h")\r
+ subj=unhtml(tv)\r
+ }\r
+ if(f!="")\r
+ {\r
+ close(postfile)\r
+ print id" subject "subj\r
+ }\r
+ \r
+ \r
+ \r
+ ########33\r
+ }\r
+ close (cmd)\r
+}\r
+\r
+function post( postid,replaceid,postfile,replacefile,temp,i,eq,tn,tv)\r
+{\r
+ if(lst!="")\r
+ return list()\r
+ if(quot!="")\r
+ return quote()\r
+ if(rmov!="")\r
+ return remove()\r
+ postid=sprintf("%04d%02d%02d%02d_%s",y,m,d,h,hexencode(name))\r
+ printf("%s",postid" ")\r
+ postfile=postpath postid\r
+ \r
+ if(options=="")\r
+ {\r
+ print "No options defined."\r
+ return\r
+ }\r
+ \r
+ # if(replace!="")\r
+ # {\r
+ # replaceid=replace"_"hexencode(name)\r
+ # replacefile=postpath replaceid\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 (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
+ if(yy<yyy)\r
+ {\r
+ print "Can't post to the past."\r
+ return\r
+ }\r
+ if(yy==yyy&&mm<mmm)\r
+ {\r
+ print "Can't post to the past."\r
+ return\r
+ }\r
+ if(yy==yyy&&mm==mmm&&dd<ddd)\r
+ {\r
+ print "Can't post to the past."\r
+ return\r
+ }\r
+ if(yy==yyy&&mm==mmm&&dd==ddd&&hh<=hhh)\r
+ {\r
+ print "Can't post to the past."\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
+ if(tn=="username")\r
+ {\r
+ if(urldecode(tv)!=name)\r
+ {\r
+ print "Can't replace, post belongs to "substr(temp,eq+1)\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn=="password")\r
+ {\r
+ if(urldecode(tv)!=pass)\r
+ {\r
+ print "Can't replace, wrong password"\r
+ close(postfile)\r
+ return\r
+ }\r
+ }\r
+ else if(tn ~ /^[ou]ngd?-[0-9]+$/)\r
+ {\r
+ ongtable[tn]=brunescape(tv)\r
+ }\r
+ else if(tn == "key")\r
+ key=tv\r
+ }\r
+ close(postfile)\r
+ \r
+ # if(replace!="")\r
+ # {\r
+ # #print "Repalce post "replaceid\r
+ # while((getline temp < replacefile)>0)\r
+ # {\r
+ # gsub(/[\r\n]/,"",temp)\r
+ # eq=index(temp,"=")\r
+ # if(substr(temp,1,eq-1)=="username")\r
+ # {\r
+ # if(substr(temp,eq+1)!=urlencode(name))\r
+ # {\r
+ # print "Can't replace, post belongs to "substr(temp,eq+1)\r
+ # close(replacefile)\r
+ # return\r
+ # }\r
+ # }\r
+ # else if(substr(temp,1,eq-1)=="password")\r
+ # {\r
+ # if(substr(temp,eq+1)!=urlencode(pass,"all"))\r
+ # {\r
+ # print "Can't replace, wrong password"\r
+ # close(replacefile)\r
+ # return\r
+ # }\r
+ # }\r
+ # }\r
+ # close(replacefile)\r
+ # system("rm -f " replacefile)\r
+ \r
+ # }\r
+ printf("")>postfile\r
+ \r
+ print "timenumber="htmlescape(postid) >> postfile\r
+ print "key="(key==""?newkey():key) >> postfile\r
+ print "username="urlencode(name) >> postfile\r
+ print "password="urlencode(pass,"all") >> postfile\r
+ print "username_h="htmlescape(name) >> postfile\r
+ \r
+ # print("Post time:\n"d"."m"."y" "h":00")\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
+ if(sig!="")\r
+ print "attach_sig=on" >> postfile\r
+ if(notify!="")\r
+ print "notify=on" >> postfile\r
+ if(silent!="")\r
+ print "silent=on" >> postfile\r
+ \r
+ print "subject="urlencode(subject) >> postfile\r
+ print "subject_h="htmlescape(subject) >> postfile\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
+ \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
+ # system (automome" -lc 256 -n 67 -d "memepath(decree!=""?" -t \"[decr]\"":"")" > "tempfile)\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
+ # system (automome" -lc 256 -n 67 -d "memepath(decree!=""?" -t \"[decr]\"":"")" > "tempfile)\r
+ \r
+ while((line=getmeme(decree))!="")#((getline line < tempfile)>0)\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
+{\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
+}
\ No newline at end of file
--- /dev/null
+// upload.c (1190.bicyclesonthemoon.info/silentbot/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
+#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/t1i/upload.awk"\r
+#define TEMP_PATH "/eizm/tmp/t1i/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
+#// 25.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
+ 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
+ if(argtab["username"]==""||argtab["password"]==""||(urldecode(argtab["username"])==name&&urldecode(argtab["password"])==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
+function urldecode(ht ,i,j,un,num)\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
+#// 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.c (1190.bicyclesonthemoon.info/bluet1i/viewer)
+// The viewer
+// 08.04.2015
+//
+// Copyright (C) 2015 Balthasar Szczepań
+//
+// 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 MAX 1414
+#define NOTICE_PATH "/eizm/mem/aftertime/mpost/"
+#define OLD_NOTICE_PATH "/eizm/mem/t1i/notice/"
+#define AWK_NOTICE "/eizm/pro/t1i/notice.awk"
+#define MAWK_PATH "/usr/bin/mawk"
+#define REDIRECT "/aftertime/viewer?story=t1i"
+
+#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 *value;
+ char *bb;
+ char *spoiler;
+ char *blue;
+ char *nn;
+
+ unsigned char round;
+ unsigned short cgiFrame;
+ unsigned char bl;
+ char alttext[256];
+ char notice[256];
+ char arg1[256];
+ char arg2[256];
+ char redirect[256];
+
+ FILE *file;
+ unsigned char i;
+
+ cgi=cgiInit();
+
+ value=cgiGetValue(cgi,"f");
+ if(value!=NULL)
+ sscanf(value,"%hu",&cgiFrame);
+ else
+ cgiFrame=0;
+
+ nn=cgiGetValue(cgi,"n");
+ if(nn!=NULL)
+ sscanf(nn,"%hhu",&round);
+ else
+ round=0;
+
+ blue=cgiGetValue(cgi,"blue");
+ if(blue!=NULL)
+ sscanf(blue,"%hhu",&bl);
+ else
+ bl=1;
+
+ bb=cgiGetValue(cgi,"b");
+ spoiler=cgiGetValue(cgi,"s");
+
+#if defined REDIRECT
+ strcpy(redirect,REDIRECT);
+ if(value!=NULL)
+ sprintf(redirect+strlen(redirect),"&f=%s",value);
+ if(nn!=NULL)
+ sprintf(redirect+strlen(redirect),"&n=%s",nn);
+ if(blue!=NULL)
+ sprintf(redirect+strlen(redirect),"&e=%s",blue);
+ if(bb!=NULL)
+ sprintf(redirect+strlen(redirect),"&b=%s",bb);
+ cgiRedirect(redirect);
+ return 0;
+#endif
+
+ if(cgiFrame<0)
+ cgiFrame=0;
+ else if(cgiFrame>MAX)
+ cgiFrame=MAX;
+
+ if(cgiFrame>=1400)
+ strcpy(alttext,"The end.");
+ else if(cgiFrame>=1381)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=1196)
+ strcpy(alttext,"Wait for it.");
+ else if(cgiFrame>=1192)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=1185)
+ strcpy(alttext,"Wait for it.");
+ else if(cgiFrame>=1174)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=1172)
+ strcpy(alttext,"LOOK OUT!");
+ else if(cgiFrame>=1158)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=1046)
+ strcpy(alttext,"LOOK OUT!");
+ else if(cgiFrame>=1039)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=1007)
+ strcpy(alttext,"Wait for it.");
+ else if(cgiFrame>=1002)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=972)
+ strcpy(alttext,"LOOK OUT!");
+ else if(cgiFrame>=961)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=715)
+ strcpy(alttext,"Wait for it.");
+ else if(cgiFrame>=687)
+ strcpy(alttext,"...");
+ else if(cgiFrame>=653)
+ strcpy(alttext,"LOOK OUT!");
+ else if(cgiFrame>=633)
+ strcpy(alttext,"...");
+ else
+ strcpy(alttext,"Wait for it.");
+
+ printf("Content-type: text/html\n\n");
+
+ puts("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"\">\n");
+ puts("<html lang=\"en\"><head>\n");
+ printf("<title>%04hu • bluet1i viewer • Bicycles on the Moon</title>\n", cgiFrame);
+ puts("<meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\">\n");
+ puts("<link rel=\"icon\" type=\"image/png\" href=\"/img/favicon.png\">\n");
+ puts("<link rel=\"stylesheet\" href=\"/css/botm.css\">\n");
+ puts("</head><body><center>\n");
+ puts("<a href=\"/\"><img src=\"/img/botmlogo2.png\" alt=\"1190.bicyclesonthemoon.info\" border=\"0\"></a><br>\n");
+ printf("<H1>%st1i-%04hu</H1>\n",bl?((bl>1)?((bl>2)?"no fading ":"very blue "):"blue "):"",cgiFrame);
+ puts("<table cellspacing=\"0\" cellpadding=\"0\"><tr><td colspan=\"4\" width=\"553\">\n");
+
+ printf("<img src=\"/bluet1i/%s-%04hu.png\" alt=\"the frame, a png file\" title=\"%s\" border=\"0\"><br>\n",bl?((bl>1)?((bl>2)?"nofading":"hyperblue"):"bluet1i"):"t1i",cgiFrame,alttext);
+
+ printf("<tr align=\"center\"><td width=\"138\"><a href=\"/bluet1i/viewer?f=0&blue=%hhu\">| < 0</a></td>\n",bl);
+ if(cgiFrame>0)
+ printf("<td width=\"138\"><a href=\"/bluet1i/viewer?f=%hu&blue=%hhu\">< %hu</a>\n",cgiFrame-1,bl,cgiFrame-1);
+ else
+ puts("<td width=\"138\"></td>\n");
+ if(cgiFrame<MAX)
+ printf("<td width=\"138\"><a href=\"/bluet1i/viewer?f=%hu&blue=%hhu\">%hu ></a>\n",cgiFrame+1,bl,cgiFrame+1);
+ else
+ puts("<td width=\"138\"></td>\n");
+ printf("<td width=\"139\"><a href=\"/bluet1i/viewer?f=%hu&blue=%hhu\">%hu >|</a></tr>\n",MAX,bl,MAX);
+
+ puts("<tr align=\"center\"><td colspan=\"4\">[ ");
+ if(bl!=0)
+ printf("<a href=\"/bluet1i/viewer?f=%hu&blue=0\">original</a>",cgiFrame);
+ else
+ puts("<b>original</b>");
+ puts(" | ");
+ if(bl!=1)
+ printf("<a href=\"/bluet1i/viewer?f=%hu&blue=1\">blue</a>",cgiFrame);
+ else
+ puts("<b>blue</b>");
+ puts(" | ");
+ if(bl!=2)
+ printf("<a href=\"/bluet1i/viewer?f=%hu&blue=2\">very blue</a>",cgiFrame);
+ else
+ puts("<b>very blue</b>");
+ puts(" | ");
+ if(bl!=3)
+ printf("<a href=\"/bluet1i/viewer?f=%hu&blue=3\">no fading</a>",cgiFrame);
+ else
+ puts("<b>no fading</b>");
+ puts(" ]</td></tr>\n");
+
+ for(i=0;i<=round;++i)
+ {
+ sprintf(notice,"%st1i-%04hu-%02hhu",NOTICE_PATH,cgiFrame,i+1);
+ sprintf(arg1,"url=/bluet1i/viewer?f=%hu&blue=%hhu&n=%hhu",cgiFrame,bl,i+1);
+ sprintf(arg2,"round=%hhu",round);
+
+ fflush(stdout);
+ sub=fork();
+ if(sub==0)
+ {
+ // setvbuf(stdout, NULL, _IONBF, 0);
+ // dup2(fileno(stdout),fileno(stderr));
+ r=execl(MAWK_PATH,MAWK_PATH,"-f",AWK_NOTICE,"-v",arg1,"-v",arg2,notice,(char *)0);
+ exit(r);
+ }
+ waitpid(sub,&r,0);
+ if(r)
+ {
+ if(!i)
+ {
+ sprintf(notice,"%s%04hu",OLD_NOTICE_PATH,cgiFrame);
+ file=fopen(notice,"rt");
+ if(file!=NULL)
+ {
+ fgets(notice,255,file);
+ fclose(file);
+ printf("<tr align=\"center\"><td colspan=\"4\"><a href=\"http://forums.xkcd.com/viewtopic.php?p=%s#p%s\">Did you notice . . . . </a></td></tr>\n",notice,notice);
+ }
+ }
+ break;
+ }
+
+ }
+
+ if(bb!=NULL)
+ {
+ printf("<tr><td colspan=\"4\"><code>[url=http://1190.bicyclesonthemoon.info/bluet1i/viewer?f=%hu&blue=%hhu][img]http://1190.bicyclesonthemoon.info/bluet1i/%s-%04hu.png[/img][/url]",cgiFrame,bl,bl?((bl>1)?((bl>2)?"nofading":"hyperblue"):"bluet1i"):"t1i",cgiFrame);
+ if(spoiler!=NULL)
+ printf("[spoiler]%s[/spoiler]",alttext);
+ printf("</code></td></tr>\n");
+ if(spoiler==NULL)
+ printf("<tr align=\"center\"><td colspan=\"4\">[<a href=\"/bluet1i/viewer?f=%hu&blue=%hhu&b=1&s=1\">spoiler</a>]</td></tr>\n",cgiFrame,bl);
+ }
+ else
+ printf("<tr align=\"center\"><td colspan=\"4\">[<a href=\"/bluet1i/viewer?f=%hu&blue=%hhu&b=1\">bbcode</a>]</td></tr>\n",cgiFrame,bl);
+
+ printf("<tr align=\"center\"><td colspan=\"4\">[<a href=\"http://xkcd.mscha.org/vieweraftertime/t1i-%04hu\">this frame in mscha's viewer</a>]</td></tr>\n",cgiFrame);
+
+ printf("<tr align=\"center\"><td colspan=\"4\"><form method=\"get\" action=\"/bluet1i/viewer\">go to frame:<input type=\"hidden\" name=\"blue\" value=\"%hhu\"><input class=\"pt\" type=\"text\" name=\"f\" size=\"4\"><input class=\"pk\" type=\"submit\" value=\"GO\"></form></td></tr>\n",bl);
+
+ puts("</table><br>\n");
+ puts("<a href=\"/\">1190.bicyclesonthemoon.info</a>\n");
+ puts("<ul><li><a href=\"/pro/bluenh/bluenh.htm\">bluenhancement</a></li>\n");
+ puts("<li><a href=\"/pro/nofading/nofading.htm\">no fading</a></li></ul>\n");
+ puts("</center></body></html>\n");
+
+ return 0;
+}
\ No newline at end of file