Advertisement
protools905

index.php yourls front page public

Jul 27th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.22 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. * This is an example file for a public interface and a bookmarklet. It
  5. * is provided so you can build from it and customize to suit your needs.
  6. * It's not really part of the project. Don't submit feature requests
  7. * about this file. It's _your_ job to make it what you need it to be :)
  8. *
  9. * Rename to .php
  10. *
  11. */
  12.  
  13. // Start YOURLS engine
  14. require_once( dirname(__FILE__).'/includes/load-yourls.php' );
  15.  
  16.  
  17. // Change this to match the URL of your public interface. Something like: http://yoursite.com/index.php
  18. $page = YOURLS_SITE . '/index.php' ;
  19.  
  20. // Part to be executed if FORM has been submitted
  21.  
  22. include('solvemedialib.php'); if ($resp != null && $resp->success) {
  23. if ( isset( $_REQUEST['url'] ) && $_REQUEST['url'] != 'http://' ) {
  24.  
  25. // Get parameters -- they will all be sanitized in yourls_add_new_link()
  26. $url = $_REQUEST['url'];
  27. $keyword = isset( $_REQUEST['keyword'] ) ? $_REQUEST['keyword'] : '' ;
  28. $title = isset( $_REQUEST['title'] ) ? $_REQUEST['title'] : '' ;
  29. $text = isset( $_REQUEST['text'] ) ? $_REQUEST['text'] : '' ;
  30.  
  31. // Create short URL, receive array $return with various information
  32. $return = yourls_add_new_link( $url, $keyword, $title );
  33.  
  34. $shorturl = isset( $return['shorturl'] ) ? $return['shorturl'] : '';
  35. $message = isset( $return['message'] ) ? $return['message'] : '';
  36. $title = isset( $return['title'] ) ? $return['title'] : '';
  37. $status = isset( $return['status'] ) ? $return['status'] : '';
  38. }
  39.  
  40.  
  41. // Stop here if bookmarklet with a JSON callback function ("instant" bookmarklets)
  42. if( isset( $_GET['jsonp'] ) && $_GET['jsonp'] == 'yourls' ) {
  43. $short = $return['shorturl'] ? $return['shorturl'] : '';
  44. $message = "Short URL (Ctrl+C to copy)";
  45. header('Content-type: application/json');
  46. echo yourls_apply_filter( 'bookmarklet_jsonp', "yourls_callback({'short_url':'$short','message':'$message'});" );
  47.  
  48. die();
  49. }
  50. }
  51.  
  52. // Insert <head> markup and all CSS & JS files
  53. yourls_html_head();
  54.  
  55. // Display title
  56. echo "<h1>All in One Paste and URL Shortener</h1>\n";
  57.  
  58. // Display left hand menu
  59. yourls_html_menu() ;
  60.  
  61. // Part to be executed if FORM has been submitted
  62. if ( isset( $_REQUEST['url'] ) && $_REQUEST['url'] != 'http://' ) {
  63.  
  64. // Display result message of short link creation
  65. if( isset( $message ) ) {
  66. echo "<h2>$message</h2>";
  67. }
  68.  
  69. if( $status == 'success' ) {
  70. // Include the Copy box and the Quick Share box
  71. yourls_share_box( $url, $shorturl, $title, $text );
  72.  
  73. // Initialize clipboard -- requires js/share.js and js/jquery.zclip.min.js to be properly loaded in the <head>
  74. echo "<script>init_clipboard();</script>\n";
  75. }
  76.  
  77. // Part to be executed when no form has been submitted
  78. } else {
  79.  
  80. $site = YOURLS_SITE;
  81.  
  82. // Display the form
  83. echo <<<HTML
  84. <h2>Enter a new URL to shorten</h2>
  85. <form method="post" action="">
  86. <p><label>URL: <input type="text" class="text" name="url" value="http://" /></label></p>
  87. <p><label>Optional custom short URL: $site/<input type="text" class="text" name="keyword" /></label></p>
  88. <p><label>Optional title: <input type="text" class="text" name="title" /></label></p>
  89. <p><input type="submit" class="button primary" value="Shorten" /></p>
  90. </form>
  91. HTML;
  92.  
  93. }
  94.  
  95. ?>
  96.  
  97. <h2>Bookmarklets</h2>
  98.  
  99. <p>Bookmark these links:</p>
  100.  
  101. <p>
  102.  
  103. <a href="javascript:(function()%7Bvar%20d=document,w=window,enc=encodeURIComponent,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),s2=((s.toString()=='')?s:enc(s)),f='<?php echo $page; ?>',l=d.location,p='?url='+enc(l.href)+'&title='+enc(d.title)+'&text='+s2,u=f+p;try%7Bthrow('ozhismygod');%7Dcatch(z)%7Ba=function()%7Bif(!w.open(u))l.href=u;%7D;if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();%7Dvoid(0);%7D)()" class="bookmarklet">Default</a>
  104.  
  105. <a href="javascript:(function()%7Bvar%20d=document,w=window,enc=encodeURIComponent,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),s2=((s.toString()=='')?s:enc(s)),f='<?php echo $page; ?>',l=d.location,k=prompt(%22Custom%20URL%22),k2=(k?'&keyword='+k:%22%22),p='?url='+enc(l.href)+'&title='+enc(d.title)+'&text='+s2+k2,u=f+p;if(k!=null)%7Btry%7Bthrow('ozhismygod');%7Dcatch(z)%7Ba=function()%7Bif(!w.open(u))l.href=u;%7D;if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();%7Dvoid(0)%7D%7D)()" class="bookmarklet">Custom</a>
  106.  
  107. <a href="javascript:(function()%7Bvar%20d=document,s=d.createElement('script');window.yourls_callback=function(r)%7Bif(r.short_url)%7Bprompt(r.message,r.short_url);%7Delse%7Balert('An%20error%20occured:%20'+r.message);%7D%7D;s.src='<?php echo $page; ?>?url='+encodeURIComponent(d.location.href)+'&jsonp=yourls';void(d.body.appendChild(s));%7D)();" class="bookmarklet">Popup</a>
  108.  
  109. <a href="javascript:(function()%7Bvar%20d=document,k=prompt('Custom%20URL'),s=d.createElement('script');if(k!=null){window.yourls_callback=function(r)%7Bif(r.short_url)%7Bprompt(r.message,r.short_url);%7Delse%7Balert('An%20error%20occured:%20'+r.message);%7D%7D;s.src='<?php echo $page; ?>?url='+encodeURIComponent(d.location.href)+'&keyword='+k+'&jsonp=yourls';void(d.body.appendChild(s));%7D%7D)();" class="bookmarklet">Custom Popup</a>
  110.  
  111. </p>
  112.  
  113.  
  114.  
  115. <?php
  116.  
  117. // Display page footer
  118. yourls_html_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement