canonical-urls
2 months ago
carousel
2 days ago
comment-likes
6 months ago
comments
1 week ago
custom-post-types
3 months ago
external-media
6 months ago
google-fonts
4 months ago
gravatar
5 years ago
infinite-scroll
1 week ago
likes
1 week ago
markdown
1 week ago
memberships
1 week ago
photon-cdn
1 month ago
plugin-search
4 weeks ago
post-by-email
6 months ago
related-posts
2 days ago
scan
2 months ago
seo-tools
1 week ago
sharedaddy
1 week ago
shortcodes
1 week ago
shortlinks
1 week ago
simple-payments
6 months ago
site-icon
6 months ago
sitemaps
1 week ago
stats
5 months ago
subscriptions
2 days ago
theme-tools
2 weeks ago
tiled-gallery
1 week ago
verification-tools
2 weeks ago
videopress
1 week ago
widget-visibility
1 week ago
widgets
2 days ago
woocommerce-analytics
1 month ago
wordads
1 month ago
wpcom-tos
5 months ago
account-protection.php
1 month ago
blaze.php
6 months ago
blocks.php
6 months ago
canonical-urls.php
3 months ago
carousel.php
6 months ago
comment-likes.php
6 months ago
comments.php
2 months ago
contact-form.php
6 months ago
copy-post.php
2 weeks ago
custom-content-types.php
1 month ago
google-fonts.php
1 month ago
gravatar-hovercards.php
1 week ago
infinite-scroll.php
6 months ago
json-api.php
6 months ago
latex.php
1 week ago
likes.php
4 weeks ago
markdown.php
6 months ago
module-extras.php
6 months ago
module-headings.php
1 week ago
module-info.php
3 months ago
monitor.php
2 days ago
notes.php
5 months ago
photon-cdn.php
6 months ago
photon.php
6 months ago
plugin-search.php
4 weeks ago
post-by-email.php
1 month ago
post-list.php
6 months ago
protect.php
1 month ago
publicize.php
6 months ago
related-posts.php
2 weeks ago
search.php
6 months ago
seo-tools.php
6 months ago
sharedaddy.php
3 months ago
shortcodes.php
6 months ago
shortlinks.php
2 weeks ago
simple-payments.php
6 months ago
sitemaps.php
6 months ago
sso.php
6 months ago
stats.php
1 week ago
subscriptions.php
1 week ago
theme-tools.php
6 months ago
tiled-gallery.php
6 months ago
vaultpress.php
6 months ago
verification-tools.php
1 month ago
videopress.php
6 months ago
waf.php
6 months ago
widget-visibility.php
6 months ago
widgets.php
6 months ago
woocommerce-analytics.php
6 months ago
wordads.php
6 months ago
wpcom-reader.php
3 months ago
wpgroho.js
1 year ago
shortlinks.php
196 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: WP.me Shortlinks |
| 4 | * Module Description: Share short, easy-to-remember links to your posts and pages. |
| 5 | * Sort Order: 8 |
| 6 | * First Introduced: 1.1 |
| 7 | * Requires Connection: Yes |
| 8 | * Auto Activate: No |
| 9 | * Module Tags: Social |
| 10 | * Feature: Writing |
| 11 | * Additional Search Queries: shortlinks, wp.me |
| 12 | * |
| 13 | * @package automattic/jetpack |
| 14 | */ |
| 15 | |
| 16 | if ( ! defined( 'ABSPATH' ) ) { |
| 17 | exit( 0 ); |
| 18 | } |
| 19 | |
| 20 | add_filter( 'pre_get_shortlink', 'wpme_get_shortlink_handler', 1, 4 ); |
| 21 | |
| 22 | if ( ! function_exists( 'wpme_dec2sixtwo' ) ) { |
| 23 | /** |
| 24 | * Converts number to base 62. |
| 25 | * |
| 26 | * @param int $num Number. |
| 27 | * |
| 28 | * @return string Value in base 62. |
| 29 | */ |
| 30 | function wpme_dec2sixtwo( $num ) { |
| 31 | $index = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; |
| 32 | $out = ''; |
| 33 | |
| 34 | if ( $num < 0 ) { |
| 35 | $out = '-'; |
| 36 | $num = abs( $num ); |
| 37 | } |
| 38 | |
| 39 | for ( $t = floor( log10( $num ) / log10( 62 ) ); $t >= 0; $t-- ) { |
| 40 | $a = (int) floor( $num / pow( 62, $t ) ); |
| 41 | $out .= substr( $index, $a, 1 ); |
| 42 | $num -= $a * pow( 62, $t ); |
| 43 | } |
| 44 | |
| 45 | return $out; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Returns the WP.me shortlink. |
| 51 | * |
| 52 | * @param int $id Post ID, or 0 for the current post. |
| 53 | * @param string $context The context for the link. One of 'post' or 'query'. |
| 54 | * @param bool $allow_slugs Whether to allow post slugs in the shortlink. |
| 55 | * |
| 56 | * @return string |
| 57 | */ |
| 58 | function wpme_get_shortlink( $id = 0, $context = 'post', $allow_slugs = true ) { |
| 59 | global $wp_query; |
| 60 | |
| 61 | $blog_id = Jetpack_Options::get_option( 'id' ); |
| 62 | |
| 63 | if ( 'query' === $context ) { |
| 64 | if ( is_singular() ) { |
| 65 | $id = $wp_query->get_queried_object_id(); |
| 66 | $context = 'post'; |
| 67 | } elseif ( is_front_page() ) { |
| 68 | $context = 'blog'; |
| 69 | } else { |
| 70 | return ''; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | if ( 'blog' === $context ) { |
| 75 | if ( empty( $id ) ) { |
| 76 | $id = $blog_id; |
| 77 | } |
| 78 | |
| 79 | return 'https://wp.me/' . wpme_dec2sixtwo( $id ); |
| 80 | } |
| 81 | |
| 82 | $post = get_post( $id ); |
| 83 | |
| 84 | if ( empty( $post ) ) { |
| 85 | return ''; |
| 86 | } |
| 87 | |
| 88 | $post_id = $post->ID; |
| 89 | $type = ''; |
| 90 | |
| 91 | if ( $allow_slugs && 'publish' === $post->post_status && 'post' === $post->post_type && strlen( $post->post_name ) <= 8 && ! str_contains( $post->post_name, '%' ) |
| 92 | && ! str_contains( $post->post_name, '-' ) ) { |
| 93 | $id = $post->post_name; |
| 94 | $type = 's'; |
| 95 | } else { |
| 96 | $id = wpme_dec2sixtwo( $post_id ); |
| 97 | if ( 'page' === $post->post_type ) { |
| 98 | $type = 'P'; |
| 99 | } elseif ( 'post' === $post->post_type || post_type_supports( $post->post_type, 'shortlinks' ) ) { |
| 100 | $type = 'p'; |
| 101 | } elseif ( 'attachment' === $post->post_type ) { |
| 102 | $type = 'a'; |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | if ( empty( $type ) ) { |
| 107 | return ''; |
| 108 | } |
| 109 | |
| 110 | return 'https://wp.me/' . $type . wpme_dec2sixtwo( $blog_id ) . '-' . $id; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Get the shortlink handler. |
| 115 | * |
| 116 | * Used with the Core pre_get_shortlink hook. |
| 117 | * |
| 118 | * @param string $shortlink Shortlink value from the action. Ignored. |
| 119 | * @param int $id Post ID (0 for the current post). |
| 120 | * @param string $context The context for the link. One of 'post' or 'query'. |
| 121 | * @param bool $allow_slugs Whether to allow post slugs in the shortlink. |
| 122 | * |
| 123 | * @return string |
| 124 | */ |
| 125 | function wpme_get_shortlink_handler( $shortlink, $id, $context, $allow_slugs ) { |
| 126 | return wpme_get_shortlink( $id, $context, $allow_slugs ); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Add Shortlinks to the REST API responses. |
| 131 | * |
| 132 | * @since 6.9.0 |
| 133 | * |
| 134 | * @action rest_api_init |
| 135 | * @uses register_rest_field, wpme_rest_get_shortlink |
| 136 | */ |
| 137 | function wpme_rest_register_shortlinks() { |
| 138 | // Post types that support shortlinks by default. |
| 139 | $supported_post_types = array( |
| 140 | 'attachment', |
| 141 | 'page', |
| 142 | 'post', |
| 143 | ); |
| 144 | |
| 145 | // Add any CPT that may have declared support for shortlinks. |
| 146 | foreach ( get_post_types() as $post_type ) { |
| 147 | if ( |
| 148 | post_type_supports( $post_type, 'shortlinks' ) |
| 149 | && post_type_supports( $post_type, 'editor' ) |
| 150 | ) { |
| 151 | $supported_post_types[] = $post_type; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | register_rest_field( |
| 156 | $supported_post_types, |
| 157 | 'jetpack_shortlink', |
| 158 | array( |
| 159 | 'get_callback' => 'wpme_rest_get_shortlink', |
| 160 | 'update_callback' => null, |
| 161 | 'schema' => null, |
| 162 | ) |
| 163 | ); |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Get the shortlink of a post. |
| 168 | * |
| 169 | * @since 6.9.0 |
| 170 | * |
| 171 | * @param array $object Details of current post. |
| 172 | * |
| 173 | * @uses wpme_get_shortlink |
| 174 | * |
| 175 | * @return string |
| 176 | */ |
| 177 | function wpme_rest_get_shortlink( $object ) { |
| 178 | $object_id = $object['id'] ?? 0; |
| 179 | return wpme_get_shortlink( $object_id, array() ); |
| 180 | } |
| 181 | |
| 182 | // Add shortlinks to the REST API Post response. |
| 183 | add_action( 'rest_api_init', 'wpme_rest_register_shortlinks' ); |
| 184 | |
| 185 | /** |
| 186 | * Set the Shortlink Gutenberg extension as available. |
| 187 | */ |
| 188 | function wpme_set_extension_available() { |
| 189 | Jetpack_Gutenberg::set_extension_available( 'shortlinks' ); |
| 190 | } |
| 191 | |
| 192 | add_action( 'init', 'wpme_set_extension_available' ); |
| 193 | |
| 194 | require_once __DIR__ . '/shortlinks/abilities/class-shortlinks-abilities.php'; |
| 195 | \Automattic\Jetpack\Plugin\Abilities\Shortlinks_Abilities::init(); |
| 196 |