page.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <?php
  2. use PrivateBin\I18n;
  3. ?><!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8" />
  7. <meta name="robots" content="noindex" />
  8. <meta name="referrer" content="no-referrer">
  9. <title><?php echo I18n::_($NAME); ?></title>
  10. <link type="text/css" rel="stylesheet" href="css/privatebin.css?<?php echo rawurlencode($VERSION); ?>" />
  11. <?php
  12. if ($SYNTAXHIGHLIGHTING):
  13. ?>
  14. <link type="text/css" rel="stylesheet" href="css/prettify/prettify.css?<?php echo rawurlencode($VERSION); ?>" />
  15. <?php
  16. if (strlen($SYNTAXHIGHLIGHTINGTHEME)):
  17. ?>
  18. <link type="text/css" rel="stylesheet" href="css/prettify/<?php echo rawurlencode($SYNTAXHIGHLIGHTINGTHEME); ?>.css?<?php echo rawurlencode($VERSION); ?>" />
  19. <?php
  20. endif;
  21. endif;
  22. ?>
  23. <script type="text/javascript" src="js/jquery-3.1.1.js" integrity="sha512-U6K1YLIFUWcvuw5ucmMtT9HH4t0uz3M366qrF5y4vnyH6dgDzndlcGvH/Lz5k8NFh80SN95aJ5rqGZEdaQZ7ZQ==" crossorigin="anonymous"></script>
  24. <script type="text/javascript" src="js/sjcl-1.0.6.js" integrity="sha512-DsyxLV/uBoQlRTJmW5Gb2SxXUXB+aYeZ6zk+NuXy8LuLyi8oGti9AGn6He5fUY2DtgQ2//RjfaZog8exFuunUQ==" crossorigin="anonymous"></script>
  25. <script type="text/javascript" src="js/kjua.min.js" integrity="sha512-hmvfOhcr4J8bjQ2GuNVzfSbuulv72wgQCJpgnXc2+cCHKqvYo8pK2nc0Q4Esem2973zo1radyIMTEkt+xJlhBA==" crossorigin="anonymous"></script>
  26. <?php
  27. if ($ZEROBINCOMPATIBILITY):
  28. ?>
  29. <script type="text/javascript" src="js/base64-1.7.js" integrity="sha512-JdwsSP3GyHR+jaCkns9CL9NTt4JUJqm/BsODGmYhBcj5EAPKcHYh+OiMfyHbcDLECe17TL0hjXADFkusAqiYgA==" crossorigin="anonymous"></script>
  30. <?php
  31. else:
  32. ?>
  33. <script type="text/javascript" src="js/base64-2.1.9.js" integrity="sha512-rbqAby7hObftbEoGQzkhUbEh5YkUn2MtekTLs4btvo2oly4CZ3DxhJzEh0u/rNzS54tcJdqi5Ug1ruugEd2U1g==" crossorigin="anonymous"></script>
  34. <?php
  35. endif;
  36. ?>
  37. <script type="text/javascript" src="js/rawdeflate-0.5.js" integrity="sha512-tTdZ7qMr7tt5VQy4iCHu6/aGB12eRwbUy+AEI5rXntfsjcRfBeeqJloMsBU9FrGk1bIYLiuND/FhU42LO1bi0g==" crossorigin="anonymous"></script>
  38. <script type="text/javascript" src="js/rawinflate-0.3.js" integrity="sha512-g8uelGgJW9A/Z1tB6Izxab++oj5kdD7B4qC7DHwZkB6DGMXKyzx7v5mvap2HXueI2IIn08YlRYM56jwWdm2ucQ==" crossorigin="anonymous"></script>
  39. <?php
  40. if ($SYNTAXHIGHLIGHTING):
  41. ?>
  42. <script type="text/javascript" src="js/prettify.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-m8iHxoN+Fe12xxFwWNdY/TS4KoFntHp29qY0xUzBnPd0bkKMOR/dFhEdTWydpt0b/fIXyhB+znGYUvgjfJ2RzQ==" crossorigin="anonymous"></script>
  43. <?php
  44. endif;
  45. if ($MARKDOWN):
  46. ?>
  47. <script type="text/javascript" src="js/showdown-1.6.1.js" integrity="sha512-e6kAsBTgFnTBnEQXrq8BV6+XFwxb3kyWHeEPOl+KhxaWt3xImE2zAW2+yP3E2CQ7F9yoJl1poVU9qxkOEtVsTQ==" crossorigin="anonymous"></script>
  48. <script type="text/javascript" src="js/purify-1.0.3.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-uhzhZJSgc+XJoaxCOjiuRzQaf5klPlSSVKGw69+zT72hhfLbVwB4jbwI+f7NRucuRz6u0aFGMeZ+0PnGh73iBQ==" crossorigin="anonymous"></script>
  49. <?php
  50. endif;
  51. if ($QRCODE):
  52. ?>
  53. <script async type="text/javascript" src="js/kjua-0.1.2.js" integrity="sha512-hmvfOhcr4J8bjQ2GuNVzfSbuulv72wgQCJpgnXc2+cCHKqvYo8pK2nc0Q4Esem2973zo1radyIMTEkt+xJlhBA==" crossorigin="anonymous"></script>
  54. <?php
  55. endif;
  56. ?>
  57. <script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-1taLHBI+tdu4RhEpnqw4JfGHePYdAmO9zwrIFh5Ym1R4XJWt4ls/3br9u/6kS5dN8s5RqZSRUz/nmsaauwUzAA==" crossorigin="anonymous"></script>
  58. <!--[if lt IE 10]>
  59. <style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
  60. <![endif]-->
  61. <link rel="apple-touch-icon" href="img/apple-touch-icon.png?<?php echo rawurlencode($VERSION); ?>" sizes="180x180" />
  62. <link rel="icon" type="image/png" href="img/favicon-32x32.png?<?php echo rawurlencode($VERSION); ?>" sizes="32x32" />
  63. <link rel="icon" type="image/png" href="img/favicon-16x16.png?<?php echo rawurlencode($VERSION); ?>" sizes="16x16" />
  64. <link rel="manifest" href="manifest.json?<?php echo rawurlencode($VERSION); ?>" />
  65. <link rel="mask-icon" href="img/safari-pinned-tab.svg?<?php echo rawurlencode($VERSION); ?>" color="#ffcc00" />
  66. <link rel="shortcut icon" href="img/favicon.ico">
  67. <meta name="msapplication-config" content="browserconfig.xml">
  68. <meta name="theme-color" content="#ffe57e" />
  69. </head>
  70. <body>
  71. <header>
  72. <div id="aboutbox">
  73. <?php echo I18n::_('%s is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted <i>in the browser</i> using 256 bits AES. More information on the <a href="https://privatebin.info/">project page</a>.', I18n::_($NAME)); ?><br />
  74. <?php
  75. if (strlen($NOTICE)):
  76. ?>
  77. <span class="blink">▶</span> <?php echo htmlspecialchars($NOTICE);
  78. endif;
  79. ?>
  80. </div>
  81. <h1 class="title reloadlink"><?php echo I18n::_($NAME); ?></h1><br />
  82. <h2 class="title"><?php echo I18n::_('Because ignorance is bliss'); ?></h2><br />
  83. <h3 class="title"><?php echo $VERSION; ?></h3>
  84. <noscript><div id="noscript" class="nonworking"><?php echo I18n::_('JavaScript is required for %s to work.<br />Sorry for the inconvenience.', I18n::_($NAME)); ?></div></noscript>
  85. <div id="oldienotice" class="nonworking"><?php echo I18n::_('%s requires a modern browser to work.', I18n::_($NAME)); ?></div>
  86. <div id="ienotice"><?php echo I18n::_('Still using Internet Explorer? Do yourself a favor, switch to a modern browser:'), PHP_EOL; ?>
  87. <a href="https://www.mozilla.org/firefox/">Firefox</a>,
  88. <a href="https://www.opera.com/">Opera</a>,
  89. <a href="https://www.google.com/chrome">Chrome</a>…
  90. </div>
  91. </header>
  92. <section>
  93. <article>
  94. <div id="loadingindicator" class="hidden"><?php echo I18n::_('Loading…'); ?></div>
  95. <div id="status"><?php echo htmlspecialchars($STATUS); ?></div>
  96. <div id="errormessage" class="hidden"><?php echo htmlspecialchars($ERROR); ?></div>
  97. <div id="toolbar">
  98. <button id="newbutton" class="reloadlink hidden"><img src="img/icon_new.png" width="11" height="15" alt="" /><?php echo I18n::_('New'); ?></button>
  99. <button id="sendbutton" class="hidden"><img src="img/icon_send.png" width="18" height="15" alt="" /><?php echo I18n::_('Send'); ?></button>
  100. <?php
  101. if ($EXPIRECLONE):
  102. ?>
  103. <button id="clonebutton" class="hidden"><img src="img/icon_clone.png" width="15" height="17" alt="" /><?php echo I18n::_('Clone'); ?></button>
  104. <?php
  105. endif;
  106. ?>
  107. <button id="rawtextbutton" class="hidden"><img src="img/icon_raw.png" width="15" height="15" alt="" /><?php echo I18n::_('Raw text'); ?></button>
  108. <?php
  109. if ($QRCODE):
  110. ?>
  111. <button id="qrcodelink" class="hidden"><img src="img/icon_qr.png" width="15" height="15" alt="" /><?php echo I18n::_('QR code'); ?></button>
  112. <?php
  113. endif;
  114. ?>
  115. <div id="expiration" class="hidden button"><?php echo I18n::_('Expires'); ?>:
  116. <select id="pasteExpiration" name="pasteExpiration">
  117. <?php
  118. foreach ($EXPIRE as $key => $value):
  119. ?>
  120. <option value="<?php echo $key; ?>"<?php
  121. if ($key == $EXPIREDEFAULT):
  122. ?> selected="selected"<?php
  123. endif;
  124. ?>><?php echo $value; ?></option>
  125. <?php
  126. endforeach;
  127. ?>
  128. </select>
  129. </div>
  130. <div id="remainingtime" class="hidden"></div>
  131. <div id="burnafterreadingoption" class="button hidden">
  132. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  133. if ($BURNAFTERREADINGSELECTED):
  134. ?> checked="checked"<?php
  135. endif;
  136. ?> />
  137. <label for="burnafterreading"><?php echo I18n::_('Burn after reading'); ?></label>
  138. </div>
  139. <?php
  140. if ($DISCUSSION):
  141. ?>
  142. <div id="opendiscussionoption" class="button hidden">
  143. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  144. if ($OPENDISCUSSION):
  145. ?> checked="checked"<?php
  146. endif;
  147. ?> />
  148. <label for="opendiscussion" <?php
  149. if (!$OPENDISCUSSION):
  150. ?> style="color: #BBBBBB;"<?php
  151. endif;
  152. ?>><?php echo I18n::_('Open discussion'); ?></label>
  153. </div>
  154. <?php
  155. endif;
  156. if ($PASSWORD):
  157. ?>
  158. <div id="password" class="hidden">
  159. <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" size="32" />
  160. </div>
  161. <?php
  162. endif;
  163. ?>
  164. <div id="formatter" class="button hidden"><?php echo I18n::_('Format'); ?>:
  165. <select id="pasteFormatter" name="pasteFormatter">
  166. <?php
  167. foreach ($FORMATTER as $key => $value):
  168. ?>
  169. <option value="<?php echo $key; ?>"<?php
  170. if ($key == $FORMATTERDEFAULT):
  171. ?> selected="selected"<?php
  172. endif;
  173. ?>><?php echo $value; ?></option>
  174. <?php
  175. endforeach;
  176. ?>
  177. </select>
  178. </div>
  179. <?php
  180. if (strlen($LANGUAGESELECTION)):
  181. ?>
  182. <div id="language" class="button">
  183. <select name="lang">
  184. <?php
  185. foreach ($LANGUAGES as $key => $value):
  186. ?>
  187. <option data-lang="<?php echo $key; ?>" value="<?php echo $key; ?>"<?php
  188. if ($key == $LANGUAGESELECTION):
  189. ?> selected="selected"<?php
  190. endif;
  191. ?>><?php echo $value[0]; ?> (<?php echo $value[1]; ?>)</option>
  192. <?php
  193. endforeach;
  194. ?>
  195. </select>
  196. </div>
  197. <?php
  198. endif;
  199. ?>
  200. </div>
  201. <?php
  202. if ($QRCODE):
  203. ?>
  204. <div id="qrcode-display"></div>
  205. <?php
  206. endif;
  207. ?> <div id="pastesuccess" class="hidden">
  208. <div id="deletelink"></div>
  209. <div id="pastelink"></div>
  210. <?php
  211. if (strlen($URLSHORTENER)):
  212. ?>
  213. <button id="shortenbutton" data-shortener="<?php echo htmlspecialchars($URLSHORTENER); ?>"><img src="img/icon_shorten.png" width="13" height="15" /><?php echo I18n::_('Shorten URL'); ?></button>
  214. <?php
  215. endif;
  216. ?>
  217. </div>
  218. <?php
  219. if ($FILEUPLOAD):
  220. ?>
  221. <div id="attachment" class="hidden"><a><?php echo I18n::_('Download attachment'); ?></a></div>
  222. <div id="attach" class="hidden">
  223. <span id="clonedfile" class="hidden"><?php echo I18n::_('Cloned file attached.'); ?></span>
  224. <span id="filewrap"><?php echo I18n::_('Attach a file'); ?>: <input type="file" id="file" name="file" /></span>
  225. <button id="fileremovebutton"><?php echo I18n::_('Remove attachment'); ?></button>
  226. </div>
  227. <?php
  228. endif;
  229. ?>
  230. <div id="preview" class="hidden">
  231. <button id="messageedit"><?php echo I18n::_('Editor'); ?></button>
  232. <button id="messagepreview"><?php echo I18n::_('Preview'); ?></button>
  233. </div>
  234. <div id="image" class="hidden"></div>
  235. <div id="prettymessage" class="hidden">
  236. <pre id="prettyprint" class="prettyprint linenums:1"></pre>
  237. </div>
  238. <div id="plaintext" class="hidden"></div>
  239. <textarea id="message" name="message" cols="80" rows="25" class="hidden"></textarea>
  240. </article>
  241. </section>
  242. <section>
  243. <div id="discussion" class="hidden">
  244. <h4 class="title"><?php echo I18n::_('Discussion'); ?></h4>
  245. <div id="commentcontainer"></div>
  246. </div>
  247. </section>
  248. <div id="serverdata" class="hidden" aria-hidden="true">
  249. <div id="cipherdata" class="hidden"><?php echo htmlspecialchars($CIPHERDATA, ENT_NOQUOTES); ?></div>
  250. <?php
  251. if ($DISCUSSION):
  252. ?>
  253. <div id="templates">
  254. <article id="commenttemplate" class="comment"><div class="commentmeta"><span class="nickname">name</span><span class="commentdate">0000-00-00</span></div><div class="commentdata">c</div><button class="btn btn-default btn-sm"><?php echo I18n::_('Reply'); ?></button></article>
  255. <div id="commenttailtemplate" class="comment"><button class="btn btn-default btn-sm"><?php echo I18n::_('Add comment'); ?></button></div>
  256. <div id="replytemplate" class="reply hidden"><input type="text" id="nickname" class="form-control" title="<?php echo I18n::_('Optional nickname…'); ?>" placeholder="<?php echo I18n::_('Optional nickname…'); ?>" /><textarea id="replymessage" class="replymessage form-control" cols="80" rows="7"></textarea><br /><div id="replystatus" role="alert" class="statusmessage hidden alert"><span class="glyphicon" aria-hidden="true"></span> </div><button id="replybutton" class="btn btn-default btn-sm"><?php echo I18n::_('Post comment'); ?></button></div>
  257. </div>
  258. <?php
  259. endif;
  260. ?>
  261. </div>
  262. <section class="container">
  263. <div id="noscript" role="alert" class="nonworking alert alert-info noscript-hide"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true">
  264. <span> <?php echo I18n::_('Loading…'); ?></span><br>
  265. <span class="small"><?php echo I18n::_('In case this message never disappears please have a look at <a href="https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-not-the-loading-message-go-away">this FAQ for information to troubleshoot</a>.'); ?></span>
  266. </div>
  267. </section>
  268. </body>
  269. </html>