page.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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.3.1.js" integrity="sha512-+NqPlbbtM1QqiK8ZAo4Yrj2c4lNQoGv8P79DPtKzj++l5jnN39rHA/xsqn8zE9l0uSoxaCdrOgFs6yjyfbBxSg==" crossorigin="anonymous"></script>
  25. <?php
  26. if ($QRCODE):
  27. ?>
  28. <script async type="text/javascript" data-cfasync="false" src="js/kjua-0.1.2.js" integrity="sha512-hmvfOhcr4J8bjQ2GuNVzfSbuulv72wgQCJpgnXc2+cCHKqvYo8pK2nc0Q4Esem2973zo1radyIMTEkt+xJlhBA==" 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.8.6.js" integrity="sha512-YFg2sBCGT00I6X5KzgCLP4VqRlmPMRhkVvJS9oJKk5LxiUzzcjzV5m4fNf6mQMctLrhgS5LFKiFF3vzIuXbjAw==" crossorigin="anonymous"></script>
  49. <?php
  50. endif;
  51. ?>
  52. <script type="text/javascript" data-cfasync="false" src="js/purify-1.0.7.js" integrity="sha512-VnKJHLosO8z2ojNvWk9BEKYqnhZyWK9rM90FgZUUEp/PRnUqR5OLLKE0a3BkVmn7YgB7LXRrjHgFHQYKd6DAIA==" crossorigin="anonymous"></script>
  53. <script type="text/javascript" data-cfasync="false" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-Xs8ymlQm2ykne8ptzTyldg63gfOK+031WvACD1BCrEItV3fAicPzhUvYzW5sCkmSgZKpwCBtsfpPn46hd9IMqw==" crossorigin="anonymous"></script>
  54. <!--[if lt IE 10]>
  55. <style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {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>
  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="oldienotice" class="nonworking"><?php echo I18n::_('%s requires a modern browser to work.', I18n::_($NAME)); ?></div>
  82. <div id="ienotice"><?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. </header>
  88. <section>
  89. <article>
  90. <div id="loadingindicator" class="hidden"><?php echo I18n::_('Loading…'); ?></div>
  91. <div id="status"><?php echo htmlspecialchars($STATUS); ?></div>
  92. <div id="errormessage" class="hidden"><?php echo htmlspecialchars($ERROR); ?></div>
  93. <div id="toolbar">
  94. <button id="newbutton" class="reloadlink hidden"><img src="img/icon_new.png" width="11" height="15" alt="" /><?php echo I18n::_('New'); ?></button>
  95. <button id="retrybutton" class="reloadlink hidden"><?php echo I18n::_('Retry'), PHP_EOL; ?></button>
  96. <button id="sendbutton" class="hidden"><img src="img/icon_send.png" width="18" height="15" alt="" /><?php echo I18n::_('Send'); ?></button>
  97. <button id="clonebutton" class="hidden"><img src="img/icon_clone.png" width="15" height="17" alt="" /><?php echo I18n::_('Clone'); ?></button>
  98. <button id="rawtextbutton" class="hidden"><img src="img/icon_raw.png" width="15" height="15" alt="" /><?php echo I18n::_('Raw text'); ?></button>
  99. <?php
  100. if ($QRCODE):
  101. ?>
  102. <button id="qrcodelink" class="hidden"><img src="img/icon_qr.png" width="15" height="15" alt="" /><?php echo I18n::_('QR code'); ?></button>
  103. <?php
  104. endif;
  105. ?>
  106. <div id="expiration" class="hidden button"><?php echo I18n::_('Expires'); ?>:
  107. <select id="pasteExpiration" name="pasteExpiration">
  108. <?php
  109. foreach ($EXPIRE as $key => $value):
  110. ?>
  111. <option value="<?php echo $key; ?>"<?php
  112. if ($key == $EXPIREDEFAULT):
  113. ?> selected="selected"<?php
  114. endif;
  115. ?>><?php echo $value; ?></option>
  116. <?php
  117. endforeach;
  118. ?>
  119. </select>
  120. </div>
  121. <div id="remainingtime" class="hidden"></div>
  122. <div id="burnafterreadingoption" class="button hidden">
  123. <input type="checkbox" id="burnafterreading" name="burnafterreading"<?php
  124. if ($BURNAFTERREADINGSELECTED):
  125. ?> checked="checked"<?php
  126. endif;
  127. ?> />
  128. <label for="burnafterreading"><?php echo I18n::_('Burn after reading'); ?></label>
  129. </div>
  130. <?php
  131. if ($DISCUSSION):
  132. ?>
  133. <div id="opendiscussionoption" class="button hidden">
  134. <input type="checkbox" id="opendiscussion" name="opendiscussion"<?php
  135. if ($OPENDISCUSSION):
  136. ?> checked="checked"<?php
  137. endif;
  138. ?> />
  139. <label for="opendiscussion"><?php echo I18n::_('Open discussion'); ?></label>
  140. </div>
  141. <?php
  142. endif;
  143. if ($PASSWORD):
  144. ?>
  145. <div id="password" class="hidden">
  146. <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" size="32" />
  147. </div>
  148. <?php
  149. endif;
  150. ?>
  151. <div id="formatter" class="button hidden"><?php echo I18n::_('Format'); ?>:
  152. <select id="pasteFormatter" name="pasteFormatter">
  153. <?php
  154. foreach ($FORMATTER as $key => $value):
  155. ?>
  156. <option value="<?php echo $key; ?>"<?php
  157. if ($key == $FORMATTERDEFAULT):
  158. ?> selected="selected"<?php
  159. endif;
  160. ?>><?php echo $value; ?></option>
  161. <?php
  162. endforeach;
  163. ?>
  164. </select>
  165. </div>
  166. <?php
  167. if (strlen($LANGUAGESELECTION)):
  168. ?>
  169. <div id="language" class="button">
  170. <select name="lang">
  171. <?php
  172. foreach ($LANGUAGES as $key => $value):
  173. ?>
  174. <option data-lang="<?php echo $key; ?>" value="<?php echo $key; ?>"<?php
  175. if ($key == $LANGUAGESELECTION):
  176. ?> selected="selected"<?php
  177. endif;
  178. ?>><?php echo $value[0]; ?> (<?php echo $value[1]; ?>)</option>
  179. <?php
  180. endforeach;
  181. ?>
  182. </select>
  183. </div>
  184. <?php
  185. endif;
  186. ?>
  187. </div>
  188. <?php
  189. if ($QRCODE):
  190. ?>
  191. <div id="qrcode-display"></div>
  192. <?php
  193. endif;
  194. ?> <div id="pastesuccess" class="hidden">
  195. <div id="deletelink"></div>
  196. <div id="pastelink"></div>
  197. <?php
  198. if (strlen($URLSHORTENER)):
  199. ?>
  200. <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>
  201. <?php
  202. endif;
  203. ?>
  204. </div>
  205. <?php
  206. if ($FILEUPLOAD):
  207. ?>
  208. <div id="attachment" class="hidden"><a><?php echo I18n::_('Download attachment'); ?></a></div>
  209. <div id="attach" class="hidden">
  210. <span id="clonedfile" class="hidden"><?php echo I18n::_('Cloned file attached.'); ?></span>
  211. <span id="filewrap"><?php echo I18n::_('Attach a file'); ?>: <input type="file" id="file" name="file" /></span>
  212. <span id="dragAndDropFileName" class="dragAndDropFile"><?php echo I18n::_('alternatively drag & drop a file or paste an image from the clipboard'); ?></span>
  213. <button id="fileremovebutton"><?php echo I18n::_('Remove attachment'); ?></button>
  214. </div>
  215. <?php
  216. endif;
  217. ?>
  218. <div id="preview" class="hidden">
  219. <button id="messageedit"><?php echo I18n::_('Editor'); ?></button>
  220. <button id="messagepreview"><?php echo I18n::_('Preview'); ?></button>
  221. </div>
  222. <div id="attachmentPreview" class="hidden"></div>
  223. <div id="prettymessage" class="hidden">
  224. <pre id="prettyprint" class="prettyprint linenums:1"></pre>
  225. </div>
  226. <div id="plaintext" class="hidden"></div>
  227. <textarea id="message" name="message" cols="80" rows="25" class="hidden"></textarea>
  228. </article>
  229. </section>
  230. <section>
  231. <div id="discussion" class="hidden">
  232. <h4 class="title"><?php echo I18n::_('Discussion'); ?></h4>
  233. <div id="commentcontainer"></div>
  234. </div>
  235. </section>
  236. <?php
  237. if ($DISCUSSION):
  238. ?>
  239. <div id="serverdata" class="hidden" aria-hidden="true">
  240. <div id="templates">
  241. <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>
  242. <div id="commenttailtemplate" class="comment"><button class="btn btn-default btn-sm"><?php echo I18n::_('Add comment'); ?></button></div>
  243. <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>
  244. </div>
  245. </div>
  246. <?php
  247. endif;
  248. ?>
  249. <section class="container">
  250. <div id="noscript" role="alert" class="nonworking alert alert-info noscript-hide"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true">
  251. <span> <?php echo I18n::_('Loading…'); ?></span><br>
  252. <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>
  253. </div>
  254. </section>
  255. </body>
  256. </html>