page.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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. <meta name="google" content="notranslate">
  10. <title><?php echo I18n::_($NAME); ?></title>
  11. <link type="text/css" rel="stylesheet" href="css/privatebin.css?<?php echo rawurlencode($VERSION); ?>" />
  12. <?php
  13. if ($SYNTAXHIGHLIGHTING):
  14. ?>
  15. <link type="text/css" rel="stylesheet" href="css/prettify/prettify.css?<?php echo rawurlencode($VERSION); ?>" />
  16. <?php
  17. if (strlen($SYNTAXHIGHLIGHTINGTHEME)):
  18. ?>
  19. <link type="text/css" rel="stylesheet" href="css/prettify/<?php echo rawurlencode($SYNTAXHIGHLIGHTINGTHEME); ?>.css?<?php echo rawurlencode($VERSION); ?>" />
  20. <?php
  21. endif;
  22. endif;
  23. ?>
  24. <script type="text/javascript" data-cfasync="false" src="js/jquery-3.4.1.js" integrity="sha512-bnIvzh6FU75ZKxp0GXLH9bewza/OIw6dLVh9ICg0gogclmYGguQJWl8U30WpbsGTqbIiAwxTsbe76DErLq5EDQ==" crossorigin="anonymous"></script>
  25. <?php
  26. if ($QRCODE):
  27. ?>
  28. <script async type="text/javascript" data-cfasync="false" src="js/kjua-0.6.0.js" integrity="sha512-GEEIHvphDt1NmaxzX8X1ZkBiGKXCv+Ofzwi8SMEH5wQVWqdGIvBO/fnxxKZ90RU1bVp6srS68nHIpZo6iVcG9g==" crossorigin="anonymous"></script>
  29. <?php
  30. endif;
  31. if ($ZEROBINCOMPATIBILITY):
  32. ?>
  33. <script type="text/javascript" data-cfasync="false" src="js/base64-1.7.js" integrity="sha512-JdwsSP3GyHR+jaCkns9CL9NTt4JUJqm/BsODGmYhBcj5EAPKcHYh+OiMfyHbcDLECe17TL0hjXADFkusAqiYgA==" crossorigin="anonymous"></script>
  34. <?php
  35. endif;
  36. ?>
  37. <script type="text/javascript" data-cfasync="false" src="js/zlib-1.2.11.js" integrity="sha512-Yey/0yoaVmSbqMEyyff3DIu8kCPwpHvHf7tY1AuZ1lrX9NPCMg87PwzngMi+VNbe4ilCApmePeuKT869RTcyCQ==" crossorigin="anonymous"></script>
  38. <script type="text/javascript" data-cfasync="false" src="js/base-x-3.0.5.1.js" integrity="sha512-/zL3MWKMtl1IBF0URx3laql2jUw+rWfFFabNlILY/Qm+hUsQR/XULjUyNHkW/FkrV7A0sMQ7tsppH7sj5ht8wA==" crossorigin="anonymous"></script>
  39. <script type="text/javascript" data-cfasync="false" src="js/rawinflate-0.3.js" integrity="sha512-g8uelGgJW9A/Z1tB6Izxab++oj5kdD7B4qC7DHwZkB6DGMXKyzx7v5mvap2HXueI2IIn08YlRYM56jwWdm2ucQ==" crossorigin="anonymous"></script>
  40. <?php
  41. if ($SYNTAXHIGHLIGHTING):
  42. ?>
  43. <script type="text/javascript" data-cfasync="false" src="js/prettify.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-puO0Ogy++IoA2Pb9IjSxV1n4+kQkKXYAEUtVzfZpQepyDPyXk8hokiYDS7ybMogYlyyEIwMLpZqVhCkARQWLMg==" crossorigin="anonymous"></script>
  44. <?php
  45. endif;
  46. if ($MARKDOWN):
  47. ?>
  48. <script type="text/javascript" data-cfasync="false" src="js/showdown-1.9.0.js" integrity="sha512-Kv8oAge9h2QmRyzb52jUomyXAvSMrpE9kWF3QRMFajo1a/TXjtY8u71vUA6t4+LE7huz4TSVH8VLJBEmcZiPRA==" crossorigin="anonymous"></script>
  49. <?php
  50. endif;
  51. ?>
  52. <script type="text/javascript" data-cfasync="false" src="js/purify-1.0.11.js" integrity="sha512-p7UyJuyBkhMcMgE4mDsgK0Lz70OvetLefua1oXs1OujWv9gOxh4xy8InFux7bZ4/DAZsTmO4rgVwZW9BHKaTaw==" crossorigin="anonymous"></script>
  53. <script type="text/javascript" data-cfasync="false" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-yrdGnBnMXuR3FYwWA7kHON7f7Beqr7EvUnIH4/m3qUuLaudXIcqJnt6qLIWLGL5E156DcVZc460rLzUGKlSHsA==" crossorigin="anonymous"></script>
  54. <!--[if IE]>
  55. <style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;}</style>
  56. <![endif]-->
  57. <link rel="apple-touch-icon" href="img/apple-touch-icon.png?<?php echo rawurlencode($VERSION); ?>" sizes="180x180" />
  58. <link rel="icon" type="image/png" href="img/favicon-32x32.png?<?php echo rawurlencode($VERSION); ?>" sizes="32x32" />
  59. <link rel="icon" type="image/png" href="img/favicon-16x16.png?<?php echo rawurlencode($VERSION); ?>" sizes="16x16" />
  60. <link rel="manifest" href="manifest.json?<?php echo rawurlencode($VERSION); ?>" />
  61. <link rel="mask-icon" href="img/safari-pinned-tab.svg?<?php echo rawurlencode($VERSION); ?>" color="#ffcc00" />
  62. <link rel="shortcut icon" href="img/favicon.ico">
  63. <meta name="msapplication-config" content="browserconfig.xml">
  64. <meta name="theme-color" content="#ffe57e" />
  65. </head>
  66. <body data-compression="<?php echo rawurlencode($COMPRESSION); ?>">
  67. <header>
  68. <div id="aboutbox">
  69. <?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 />
  70. <?php
  71. if (strlen($NOTICE)):
  72. ?>
  73. <span class="blink">▶</span> <?php echo htmlspecialchars($NOTICE);
  74. endif;
  75. ?>
  76. </div>
  77. <h1 class="title reloadlink"><?php echo I18n::_($NAME); ?></h1><br />
  78. <h2 class="title"><?php echo I18n::_('Because ignorance is bliss'); ?></h2><br />
  79. <h3 class="title"><?php echo $VERSION; ?></h3>
  80. <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>
  81. <div id="oldnotice" class="nonworking"><?php echo I18n::_('%s requires a modern browser to work.', I18n::_($NAME)); ?></div>
  82. <div id="ienotice" class="nonworking"><?php echo I18n::_('Still using Internet Explorer? Do yourself a favor, switch to a modern browser:'), PHP_EOL; ?>
  83. <a href="https://www.mozilla.org/firefox/">Firefox</a>,
  84. <a href="https://www.opera.com/">Opera</a>,
  85. <a href="https://www.google.com/chrome">Chrome</a>…
  86. </div>
  87. <?php
  88. if ($HTTPWARNING):
  89. ?>
  90. <div id="httpnotice" class="errorMessage">
  91. <?php echo I18n::_('This website is using an insecure connection! Please only use it for testing.'); ?>
  92. <span class="small"><?php echo I18n::_('For more information <a href="%s">see this FAQ entry</a>.', 'https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-it-show-me-an-error-about-an-insecure-connection'); ?></span>
  93. </div>
  94. <?php
  95. endif;
  96. ?>
  97. </header>
  98. <section>
  99. <article>
  100. <div id="loadingindicator" class="hidden"><?php echo I18n::_('Loading…'); ?></div>
  101. <div id="status"><?php echo htmlspecialchars($STATUS); ?></div>
  102. <div id="errormessage" class="hidden"><?php echo htmlspecialchars($ERROR); ?></div>
  103. <div id="toolbar">
  104. <button id="newbutton" class="reloadlink hidden"><img src="img/icon_new.png" width="11" height="15" alt="" /><?php echo I18n::_('New'); ?></button>
  105. <button id="retrybutton" class="reloadlink hidden"><?php echo I18n::_('Retry'), PHP_EOL; ?></button>
  106. <button id="sendbutton" class="hidden"><img src="img/icon_send.png" width="18" height="15" alt="" /><?php echo I18n::_('Send'); ?></button>
  107. <button id="clonebutton" class="hidden"><img src="img/icon_clone.png" width="15" height="17" alt="" /><?php echo I18n::_('Clone'); ?></button>
  108. <button id="rawtextbutton" class="hidden"><img src="img/icon_raw.png" width="15" height="15" alt="" /><?php echo I18n::_('Raw text'); ?></button>
  109. <?php
  110. if ($QRCODE):
  111. ?>
  112. <button id="qrcodelink" class="hidden"><img src="img/icon_qr.png" width="15" height="15" alt="" /><?php echo I18n::_('QR code'); ?></button>
  113. <?php
  114. endif;
  115. ?>
  116. <div id="expiration" class="hidden button"><?php echo I18n::_('Expires'); ?>:
  117. <select id="pasteExpiration" name="pasteExpiration">
  118. <?php
  119. foreach ($EXPIRE as $key => $value):
  120. ?>
  121. <option value="<?php echo $key; ?>"<?php
  122. if ($key == $EXPIREDEFAULT):
  123. ?> selected="selected"<?php
  124. endif;
  125. ?>><?php echo $value; ?></option>
  126. <?php
  127. endforeach;
  128. ?>
  129. </select>
  130. </div>
  131. <div id="remainingtime" class="hidden"></div>
  132. <div id="burnafterreadingoption" class="button hidden">
  133. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  134. if ($BURNAFTERREADINGSELECTED):
  135. ?> checked="checked"<?php
  136. endif;
  137. ?> />
  138. <label for="burnafterreading"><?php echo I18n::_('Burn after reading'); ?></label>
  139. </div>
  140. <?php
  141. if ($DISCUSSION):
  142. ?>
  143. <div id="opendiscussionoption" class="button hidden">
  144. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  145. if ($OPENDISCUSSION):
  146. ?> checked="checked"<?php
  147. endif;
  148. ?> />
  149. <label for="opendiscussion"><?php echo I18n::_('Open discussion'); ?></label>
  150. </div>
  151. <?php
  152. endif;
  153. if ($PASSWORD):
  154. ?>
  155. <div id="password" class="hidden">
  156. <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" size="32" />
  157. </div>
  158. <?php
  159. endif;
  160. ?>
  161. <div id="formatter" class="button hidden"><?php echo I18n::_('Format'); ?>:
  162. <select id="pasteFormatter" name="pasteFormatter">
  163. <?php
  164. foreach ($FORMATTER as $key => $value):
  165. ?>
  166. <option value="<?php echo $key; ?>"<?php
  167. if ($key == $FORMATTERDEFAULT):
  168. ?> selected="selected"<?php
  169. endif;
  170. ?>><?php echo $value; ?></option>
  171. <?php
  172. endforeach;
  173. ?>
  174. </select>
  175. </div>
  176. <?php
  177. if (strlen($LANGUAGESELECTION)):
  178. ?>
  179. <div id="language" class="button">
  180. <select name="lang">
  181. <?php
  182. foreach ($LANGUAGES as $key => $value):
  183. ?>
  184. <option data-lang="<?php echo $key; ?>" value="<?php echo $key; ?>"<?php
  185. if ($key == $LANGUAGESELECTION):
  186. ?> selected="selected"<?php
  187. endif;
  188. ?>><?php echo $value[0]; ?> (<?php echo $value[1]; ?>)</option>
  189. <?php
  190. endforeach;
  191. ?>
  192. </select>
  193. </div>
  194. <?php
  195. endif;
  196. ?>
  197. </div>
  198. <?php
  199. if ($QRCODE):
  200. ?>
  201. <div id="qrcode-display"></div>
  202. <?php
  203. endif;
  204. ?> <div id="pastesuccess" class="hidden">
  205. <div id="deletelink"></div>
  206. <div id="pastelink"></div>
  207. <?php
  208. if (strlen($URLSHORTENER)):
  209. ?>
  210. <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>
  211. <?php
  212. endif;
  213. ?>
  214. </div>
  215. <?php
  216. if ($FILEUPLOAD):
  217. ?>
  218. <div id="attachment" class="hidden"><a><?php echo I18n::_('Download attachment'); ?></a></div>
  219. <div id="attach" class="hidden">
  220. <span id="clonedfile" class="hidden"><?php echo I18n::_('Cloned file attached.'); ?></span>
  221. <span id="filewrap"><?php echo I18n::_('Attach a file'); ?>: <input type="file" id="file" name="file" /></span>
  222. <span id="dragAndDropFileName" class="dragAndDropFile"><?php echo I18n::_('alternatively drag & drop a file or paste an image from the clipboard'); ?></span>
  223. <button id="fileremovebutton"><?php echo I18n::_('Remove attachment'); ?></button>
  224. </div>
  225. <?php
  226. endif;
  227. ?>
  228. <div id="preview" class="hidden">
  229. <button id="messageedit"><?php echo I18n::_('Editor'); ?></button>
  230. <button id="messagepreview"><?php echo I18n::_('Preview'); ?></button>
  231. </div>
  232. <div id="attachmentPreview" class="hidden"></div>
  233. <div id="prettymessage" class="hidden">
  234. <pre id="prettyprint" class="prettyprint linenums:1"></pre>
  235. </div>
  236. <div id="plaintext" class="hidden"></div>
  237. <textarea id="message" name="message" cols="80" rows="25" class="hidden"></textarea>
  238. </article>
  239. </section>
  240. <section>
  241. <div id="discussion" class="hidden">
  242. <h4 class="title"><?php echo I18n::_('Discussion'); ?></h4>
  243. <div id="commentcontainer"></div>
  244. </div>
  245. </section>
  246. <?php
  247. if ($DISCUSSION):
  248. ?>
  249. <div id="serverdata" class="hidden" aria-hidden="true">
  250. <div id="templates">
  251. <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>
  252. <div id="commenttailtemplate" class="comment"><button class="btn btn-default btn-sm"><?php echo I18n::_('Add comment'); ?></button></div>
  253. <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>
  254. </div>
  255. </div>
  256. <?php
  257. endif;
  258. ?>
  259. <section class="container">
  260. <div id="noscript" role="alert" class="nonworking alert alert-info noscript-hide"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true">
  261. <span> <?php echo I18n::_('Loading…'); ?></span><br>
  262. <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>
  263. </div>
  264. </section>
  265. </body>
  266. </html>