]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - admin/tools.php
Merge branch 'master' of https://github.com/ozh/YOURLS
[Github/YOURLS.git] / admin / tools.php
1 <?php
2 define( 'YOURLS_ADMIN', true );
3 require_once( dirname( dirname( __FILE__ ) ).'/includes/load-yourls.php' );
4 yourls_maybe_require_auth();
5
6 yourls_html_head( 'tools', yourls__( 'Cool YOURLS Tools' ) );
7 yourls_html_logo();
8 yourls_html_menu();
9 ?>
10
11         <div class="sub_wrap">
12         
13         <h2><?php yourls_e( 'Bookmarklets' ); ?></h2>
14         
15                 <p><?php yourls_e( 'YOURLS comes with handy <span>bookmarklets</span> for easier link shortening and sharing.' ); ?></p>
16
17                 <h3><?php yourls_e( 'Standard or Instant, Simple or Custom' ); ?></h3>
18                 
19                 <ul>
20                         <li><?php yourls_e( 'The <span>Standard Bookmarklets</span> will take you to a page where you can easily edit or delete your brand new short URL.' ); ?></li>
21                         
22                         <li><?php yourls_e( 'The <span>Instant Bookmarklets</span> will pop the short URL without leaving the page you are viewing.' ); ?></li>
23                         
24                         <li><?php yourls_e( 'The <span>Simple Bookmarklets</span> will generate a short URL with a random or sequential keyword.' ); ?></li>
25                         
26                         <li><?php yourls_e( 'The <span>Custom Keyword Bookmarklets</span> will prompt you for a custom keyword first.' ); ?></li>
27                 </ul>
28                 
29                 <p><?php
30                 yourls_e( "If you want to share a description along with the link you're shortening, simply <span>select text</span> on the page you're viewing before clicking on your bookmarklet link" );
31                 ?></p>
32                 
33                 <h3><?php yourls_e( 'The Bookmarklets' ); ?></h3>
34                 
35                 <p><?php yourls_e( 'Click and drag links to your toolbar (or right-click and bookmark it)' ); ?></p>
36                 
37                 <table class="tblSorter" cellpadding="0" cellspacing="1">
38                         <thead>
39                         <tr>
40                                 <td>&nbsp;</td>
41                                 <th><?php yourls_e( 'Standard (new page)' ); ?></th>
42                                 <th><?php yourls_e( 'Instant (popup)' ); ?></th>
43                         </tr>
44                         </thead>
45                         <tbody>
46                         <tr>
47                                 <th class="header"><?php yourls_e( 'Simple' ); ?></th>
48                                 <td><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 yourls_admin_url('index.php'); ?>',l=d.location,p='?u='+enc(l.href)+'&t='+enc(d.title)+'&s='+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" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'Shorten' ); ?></a></td>
49                                 <td><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 yourls_admin_url('index.php'); ?>?u='+encodeURIComponent(d.location.href)+'&jsonp=yourls';void(d.body.appendChild(s));%7D)();" class="bookmarklet" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'Instant Shorten' ); ?></a></td>
50                         </tr>
51                         <tr>
52                                 <th class="header"><?php yourls_e( 'Custom Keyword' ); ?></th>
53                                 <td><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 yourls_admin_url('index.php'); ?>',l=d.location,k=prompt(%22Custom%20URL%22),k2=(k?'&k='+k:%22%22),p='?u='+enc(l.href)+'&t='+enc(d.title)+'&s='+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" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'Custom shorten' ); ?></a></td>
54                                 <td><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 yourls_admin_url('index.php'); ?>?u='+encodeURIComponent(d.location.href)+'&k='+k+'&jsonp=yourls';void(d.body.appendChild(s));%7D%7D)();" class="bookmarklet" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'Instant Custom Shorten' ); ?></a></td>
55                         </tr>
56                         </tbody>
57                 </table>
58                 
59                 <h3><?php yourls_e( 'Social Bookmarklets' ); ?></h3>
60                 
61                 <p><?php yourls_e( 'Create a short URL and share it on social networks, all in one click!' ); ?>        
62                 <?php yourls_e( 'Click and drag links to your toolbar (or right-click and bookmark it)' ); ?></p>
63
64                 <p><?php yourls_e( 'Shorten and share:' ); ?>
65                 <a href="javascript:(function(){var%20d=document,enc=encodeURIComponent,share='facebook',f='<?php echo yourls_admin_url('index.php'); ?>',l=d.location,p='?u='+enc(l.href)+'&t='+enc(d.title)+'&share='+share,u=f+p;try{throw('ozhismygod');}catch(z){a=function(){if(!window.open(u,'Share','width=500,height=340,left=100','_blank'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0);})();" class="bookmarklet" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'YOURLS &amp; Facebook' ); ?></a>
66
67                 <a href="javascript:(function(){var%20d=document,w=window,enc=encodeURIComponent,share='twitter',e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),s2=((s.toString()=='')?s:'%20%22'+enc(s)+'%22'),f='<?php echo yourls_admin_url("index.php"); ?>',l=d.location,p='?u='+enc(l.href)+'&t='+enc(d.title)+s2+'&share='+share,u=f+p;try{throw('ozhismygod');}catch(z){a=function(){if(!w.open(u,'Share','width=780,height=265,left=100','_blank'))l.href=u;};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();}void(0);})();" class="bookmarklet" onclick="alert('<?php echo yourls_esc_attr__( 'Drag to your toolbar!' ); ?>');return false;"><?php yourls_e( 'YOURLS &amp; Twitter' ); ?></a>
68                 
69                 <?php // Bookmarklets, unformatted for readability: https://gist.github.com/ozh/5495656 ?>
70                 
71                 <?php yourls_do_action( 'social_bookmarklet_buttons_after' ); ?>
72                 
73                 </p>
74
75         <h2><?php yourls_e( 'Prefix-n-Shorten' ); ?></h2>
76                 
77                 <p><?php yourls_se( "When viewing a page, you can also prefix its full URL: just head to your browser's address bar, add \"<span>%s</span>\" to the beginning of the current URL (right before its 'http://' part) and hit enter.", preg_replace('@https?://@', '', YOURLS_SITE) . '/' ); ?></p>
78                 
79                 <p><?php
80                 yourls_e( 'Note: this will probably not work if your web server is running on Windows' );
81                 if( yourls_is_windows() )
82                         yourls_e( ' (which seems to be the case here)' );
83                 ?>.</p>
84
85
86         <?php if( yourls_is_private() ) { ?>
87
88         <h2><?php yourls_e( 'Secure passwordless API call' ); ?></h2>
89         
90                 <p><?php
91                 yourls_e( 'YOURLS allows API calls the old fashioned way, using <tt>username</tt> and <tt>password</tt> parameters.' );
92                 echo "\n";
93                 yourls_e( "If you're worried about sending your credentials into the wild, you can also make API calls without using your login or your password, using a secret signature token." );
94                 ?></p>
95
96                 <p><?php
97                 yourls_se( 'Your secret signature token: <strong><code>%s</code></strong>', yourls_auth_signature() );
98                 yourls_e( "(It's a secret. Keep it secret) ");
99                 ?></p>
100
101                 <p><?php yourls_e( 'This signature token can only be used with the API, not with the admin interface.' ); ?></p>
102                 
103                 <ul>
104                         <li><h3><?php yourls_e( 'Usage of the signature token' ); ?></h3>
105                         <p><?php yourls_e( 'Simply use parameter <tt>signature</tt> in your API requests. Example:' ); ?></p>
106                         <p><code><?php echo YOURLS_SITE; ?>/yourls-api.php?signature=<?php echo yourls_auth_signature(); ?>&action=...</code></p>
107                         </li>
108                 
109                         <li><h3><?php yourls_e( 'Usage of a time limited signature token' ); ?></h3>
110 <pre><code>&lt;?php
111 $timestamp = time();
112 <tt>// <?php yourls_e( 'actual value:' ); ?> $time = <?php $time = time(); echo $time; ?></tt>
113 $signature = md5( $timestamp . '<?php echo yourls_auth_signature(); ?>' ); 
114 <tt>// <?php yourls_e( 'actual value:' ); ?> $signature = "<?php $sign = md5( $time. yourls_auth_signature() ); echo $sign; ?>"</tt>
115 ?> 
116 </code></pre>
117                 <p><?php yourls_e( 'Now use parameters <tt>signature</tt> and <tt>timestamp</tt> in your API requests. Example:' ); ?></p>
118                 <p><code><?php echo YOURLS_SITE; ?>/yourls-api.php?timestamp=<strong>$timestamp</strong>&signature=<strong>$signature</strong>&action=...</code></p>
119                 <p><?php yourls_e( 'Actual values:' ); ?><br/>
120                 <tt><?php echo YOURLS_SITE; ?>/yourls-api.php?timestamp=<?php echo $time; ?>&signature=<?php echo $sign; ?>&action=...</tt></p>
121                 <p><?php yourls_se( 'This URL would be valid for only %s seconds', YOURLS_NONCE_LIFE ); ?></p>
122                 </li>
123         </ul>
124         
125         <p><?php yourls_se( 'See the <a href="%s">API documentation</a> for more', YOURLS_SITE . '/readme.html#API' ); ?></p>
126
127         </div>
128
129         <?php } // end is private ?>
130
131 <?php yourls_html_footer(); ?>