|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* GitHub's Gist site supports oEmbed but their oembed provider only |
|
4
|
|
|
* returns raw HTML (no styling) and the first little bit of the code. |
|
5
|
|
|
* |
|
6
|
|
|
* Their JavaScript-based embed method is a lot better, so that's what we're using. |
|
7
|
|
|
* |
|
8
|
|
|
* Supported formats: |
|
9
|
|
|
* Full URL: https://gist.github.com/57cc50246aab776e110060926a2face2 |
|
10
|
|
|
* Full URL with username: https://gist.github.com/jeherve/57cc50246aab776e110060926a2face2 |
|
11
|
|
|
* Full URL linking to specific file: https://gist.github.com/jeherve/57cc50246aab776e110060926a2face2#file-wp-config-php |
|
12
|
|
|
* Full URL, no username, linking to specific file: https://gist.github.com/57cc50246aab776e110060926a2face2#file-wp-config-php |
|
13
|
|
|
* Gist ID: [gist]57cc50246aab776e110060926a2face2[/gist] |
|
14
|
|
|
* Gist ID within tag: [gist 57cc50246aab776e110060926a2face2] |
|
15
|
|
|
* Gist ID with username: [gist jeherve/57cc50246aab776e110060926a2face2] |
|
16
|
|
|
* Gist private ID with username: [gist xknown/fc5891af153e2cf365c9] |
|
17
|
|
|
* |
|
18
|
|
|
* @package Jetpack |
|
19
|
|
|
*/ |
|
20
|
|
|
|
|
21
|
|
|
wp_embed_register_handler( 'github-gist', '#https?://gist\.github\.com/([a-zA-Z0-9/]+)(\#file\-[a-zA-Z0-9\_\-]+)?#', 'github_gist_embed_handler' ); |
|
22
|
|
|
add_shortcode( 'gist', 'github_gist_shortcode' ); |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Handle gist embeds. |
|
26
|
|
|
* |
|
27
|
|
|
* @since 2.8.0 |
|
28
|
|
|
* |
|
29
|
|
|
* @global WP_Embed $wp_embed |
|
30
|
|
|
* |
|
31
|
|
|
* @param array $matches Results after parsing the URL using the regex in wp_embed_register_handler(). |
|
32
|
|
|
* @param array $attr Embed attributes. |
|
33
|
|
|
* @param string $url The original URL that was matched by the regex. |
|
34
|
|
|
* @param array $rawattr The original unmodified attributes. |
|
35
|
|
|
* @return string The embed HTML. |
|
36
|
|
|
*/ |
|
37
|
|
|
function github_gist_embed_handler( $matches, $attr, $url, $rawattr ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
38
|
|
|
// Let the shortcode callback do all the work. |
|
39
|
|
|
return github_gist_shortcode( $matches, $url ); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* Extract an ID from a Gist shortcode or a full Gist URL. |
|
44
|
|
|
* |
|
45
|
|
|
* @since 7.3.0 |
|
46
|
|
|
* |
|
47
|
|
|
* @param string $gist Gist shortcode or full Gist URL. |
|
48
|
|
|
* |
|
49
|
|
|
* @return array $gist_info { |
|
50
|
|
|
* Array of information about our gist. |
|
51
|
|
|
* @type string $id Unique identifier for the gist. |
|
52
|
|
|
* @type string $file File name if the gist links to a specific file. |
|
53
|
|
|
* } |
|
54
|
|
|
*/ |
|
55
|
|
|
function jetpack_gist_get_shortcode_id( $gist = '' ) { |
|
56
|
|
|
$gist_info = array( |
|
57
|
|
|
'id' => '', |
|
58
|
|
|
'file' => '', |
|
59
|
|
|
); |
|
60
|
|
|
// Simple shortcode, with just an ID. |
|
61
|
|
|
if ( ctype_alnum( $gist ) ) { |
|
62
|
|
|
$gist_info['id'] = $gist; |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
// Full URL? Only keep the relevant parts. |
|
66
|
|
|
$parsed_url = wp_parse_url( $gist ); |
|
67
|
|
|
if ( |
|
68
|
|
|
! empty( $parsed_url ) |
|
69
|
|
|
&& is_array( $parsed_url ) |
|
70
|
|
|
&& isset( $parsed_url['scheme'], $parsed_url['host'], $parsed_url['path'] ) |
|
71
|
|
|
) { |
|
72
|
|
|
// Not a Gist URL? Bail. |
|
73
|
|
|
if ( 'gist.github.com' !== $parsed_url['host'] ) { |
|
74
|
|
|
return array( |
|
75
|
|
|
'id' => '', |
|
76
|
|
|
'file' => '', |
|
77
|
|
|
); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
// Keep the file name if there was one. |
|
81
|
|
View Code Duplication |
if ( ! empty( $parsed_url['fragment'] ) ) { |
|
82
|
|
|
$gist_info['file'] = preg_replace( '/(?:file-)(.+)/', '$1', $parsed_url['fragment'] ); |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
// Keep the unique identifier without any leading or trailing slashes. |
|
86
|
|
View Code Duplication |
if ( ! empty( $parsed_url['path'] ) ) { |
|
87
|
|
|
$gist_info['id'] = preg_replace( '/^\/([^\.]+)\./', '$1', $parsed_url['path'] ); |
|
88
|
|
|
// Overwrite $gist with our identifier to clean it up below. |
|
89
|
|
|
$gist = $gist_info['id']; |
|
90
|
|
|
} |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
// Not a URL nor an ID? Look for "username/id", "/username/id", or "id", and only keep the ID. |
|
94
|
|
|
if ( preg_match( '#^/?(([a-z0-9_-]+/)?([a-z0-9]+))$#i', $gist, $matches ) ) { |
|
95
|
|
|
$gist_info['id'] = $matches[3]; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
return $gist_info; |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* Callback for gist shortcode. |
|
103
|
|
|
* |
|
104
|
|
|
* @since 2.8.0 |
|
105
|
|
|
* |
|
106
|
|
|
* @param array $atts Attributes found in the shortcode. |
|
107
|
|
|
* @param string $content Content enclosed by the shortcode. |
|
108
|
|
|
* |
|
109
|
|
|
* @return string The gist HTML. |
|
110
|
|
|
*/ |
|
111
|
|
|
function github_gist_shortcode( $atts, $content = '' ) { |
|
112
|
|
|
|
|
113
|
|
View Code Duplication |
if ( empty( $atts[0] ) && empty( $content ) ) { |
|
114
|
|
|
if ( current_user_can( 'edit_posts' ) ) { |
|
115
|
|
|
return esc_html__( 'Please specify a Gist URL or ID.', 'jetpack' ); |
|
116
|
|
|
} else { |
|
117
|
|
|
return '<!-- Missing Gist ID -->'; |
|
118
|
|
|
} |
|
119
|
|
|
} |
|
120
|
|
|
|
|
121
|
|
|
$id = ( ! empty( $content ) ) ? $content : $atts[0]; |
|
122
|
|
|
|
|
123
|
|
|
// Parse a URL to get an ID we can use. |
|
124
|
|
|
$gist_info = jetpack_gist_get_shortcode_id( $id ); |
|
125
|
|
|
if ( empty( $gist_info['id'] ) ) { |
|
126
|
|
|
if ( current_user_can( 'edit_posts' ) ) { |
|
127
|
|
|
return esc_html__( 'The Gist ID you provided is not valid. Please try a different one.', 'jetpack' ); |
|
128
|
|
|
} else { |
|
129
|
|
|
return '<!-- Invalid Gist ID -->'; |
|
130
|
|
|
} |
|
131
|
|
|
} else { |
|
132
|
|
|
// Add trailing .json to all unique gist identifiers. |
|
133
|
|
|
$id = $gist_info['id'] . '.json'; |
|
134
|
|
|
} |
|
135
|
|
|
|
|
136
|
|
|
// The file name can come from the URL passed, or from a shortcode attribute. |
|
137
|
|
|
if ( ! empty( $gist_info['file'] ) ) { |
|
138
|
|
|
$file = $gist_info['file']; |
|
139
|
|
|
} elseif ( ! empty( $atts['file'] ) ) { |
|
140
|
|
|
$file = $atts['file']; |
|
141
|
|
|
} else { |
|
142
|
|
|
$file = ''; |
|
143
|
|
|
} |
|
144
|
|
|
|
|
145
|
|
|
// Replace - by . to get a real file name from slug. |
|
146
|
|
|
if ( ! empty( $file ) ) { |
|
147
|
|
|
// Find the last -. |
|
148
|
|
|
$dash_position = strrpos( $file, '-' ); |
|
149
|
|
|
if ( false !== $dash_position ) { |
|
150
|
|
|
// Replace the - by a period. |
|
151
|
|
|
$file = substr_replace( $file, '.', $dash_position, 1 ); |
|
152
|
|
|
} |
|
153
|
|
|
|
|
154
|
|
|
$file = rawurlencode( $file ); |
|
155
|
|
|
} |
|
156
|
|
|
|
|
157
|
|
|
if ( |
|
158
|
|
|
class_exists( 'Jetpack_AMP_Support' ) |
|
159
|
|
|
&& Jetpack_AMP_Support::is_amp_request() |
|
160
|
|
|
) { |
|
161
|
|
|
/* |
|
162
|
|
|
* According to <https://www.ampproject.org/docs/reference/components/amp-gist#height-(required)>: |
|
163
|
|
|
* |
|
164
|
|
|
* > Note: You must find the height of the gist by inspecting it with your browser (e.g., Chrome Developer Tools). |
|
165
|
|
|
* |
|
166
|
|
|
* However, this does not seem to be the case any longer. The actual height of the content does get set in the |
|
167
|
|
|
* page after loading. So this is just the initial height. |
|
168
|
|
|
* See <https://github.com/ampproject/amphtml/pull/17738>. |
|
169
|
|
|
*/ |
|
170
|
|
|
$height = 240; |
|
171
|
|
|
|
|
172
|
|
|
$amp_tag = sprintf( |
|
173
|
|
|
'<amp-gist layout="fixed-height" data-gistid="%s" height="%s"', |
|
174
|
|
|
esc_attr( basename( $id, '.json' ) ), |
|
175
|
|
|
esc_attr( $height ) |
|
176
|
|
|
); |
|
177
|
|
|
if ( ! empty( $file ) ) { |
|
178
|
|
|
$amp_tag .= sprintf( ' data-file="%s"', esc_attr( $file ) ); |
|
179
|
|
|
} |
|
180
|
|
|
$amp_tag .= '></amp-gist>'; |
|
181
|
|
|
return $amp_tag; |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
// URL points to the entire gist, including the file name if there was one. |
|
185
|
|
|
$id = ( ! empty( $file ) ? $id . '?file=' . $file : $id ); |
|
186
|
|
|
|
|
187
|
|
|
wp_enqueue_script( |
|
188
|
|
|
'jetpack-gist-embed', |
|
189
|
|
|
Jetpack::get_file_url_for_environment( '_inc/build/shortcodes/js/gist.min.js', 'modules/shortcodes/js/gist.js' ), |
|
190
|
|
|
array( 'jquery' ), |
|
191
|
|
|
JETPACK__VERSION, |
|
192
|
|
|
true |
|
193
|
|
|
); |
|
194
|
|
|
|
|
195
|
|
|
// inline style to prevent the bottom margin to the embed that themes like TwentyTen, et al., add to tables. |
|
196
|
|
|
$return = '<style>.gist table { margin-bottom: 0; }</style><div class="gist-oembed" data-gist="' . esc_attr( $id ) . '"></div>'; |
|
197
|
|
|
|
|
198
|
|
|
if ( |
|
199
|
|
|
// No need to check for a nonce here, that's already handled by Core further up. |
|
200
|
|
|
// phpcs:disable WordPress.Security.NonceVerification.Missing |
|
201
|
|
|
isset( $_POST['type'] ) |
|
202
|
|
|
&& 'embed' === $_POST['type'] |
|
203
|
|
|
&& isset( $_POST['action'] ) |
|
204
|
|
|
&& 'parse-embed' === $_POST['action'] |
|
205
|
|
|
// phpcs:enable WordPress.Security.NonceVerification.Missing |
|
206
|
|
|
) { |
|
207
|
|
|
return github_gist_simple_embed( $id ); |
|
208
|
|
|
} |
|
209
|
|
|
|
|
210
|
|
|
return $return; |
|
211
|
|
|
} |
|
212
|
|
|
|
|
213
|
|
|
/** |
|
214
|
|
|
* Use script tag to load shortcode in editor. |
|
215
|
|
|
* Can't use wp_enqueue_script here. |
|
216
|
|
|
* |
|
217
|
|
|
* @since 3.9.0 |
|
218
|
|
|
* |
|
219
|
|
|
* @param string $id The ID of the gist. |
|
220
|
|
|
*/ |
|
221
|
|
|
function github_gist_simple_embed( $id ) { |
|
222
|
|
|
$id = str_replace( 'json', 'js', $id ); |
|
223
|
|
|
return '<script src="' . esc_url( "https://gist.github.com/$id" ) . '"></script>'; // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedScript |
|
224
|
|
|
} |
|
225
|
|
|
|