PluginProbe
Github Embed / 2.2.0
Github Embed v2.2.0
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.0.1 2.0.2 2.1.0 2.2.0 2.2.1
← All changes | github-embed.php +90 -121 1.72.2.0 View file →
@@ -1,16 +1,16 @@
1 1 <?php
2 2 /*
3 3 Plugin Name: Github Embed
4 -Plugin URI: http://www.leewillis.co.uk/wordpress-plugins
4 +Plugin URI: https://wordpress.org/plugins/github-embed/
5 5 Description: Paste the URL to a Github project into your posts or pages, and have the project information pulled in and displayed automatically
6 -Version: 1.7
7 -Author: Lee Willis
8 -Author URI: http://www.leewillis.co.uk/
6 +Version: 2.2.0
7 +Author: Ademti Software Ltd.
8 +Author URI: https://www.ademti-software.co.uk/
9 9 */
10 10
11 11 /**
12 - * Copyright (c) 2013-2019 Lee Willis. All rights reserved.
12 + * Copyright (c) 2013-2025 Ademti Software. All rights reserved.
13 13 *
14 14 * Released under the GPL license v2
15 15 * https://www.gnu.org/licenses/gpl-2.0.en.html
16 16 *
@@ -35,9 +35,8 @@
35 35 * we can embed, and handling the actual oEmbed calls. It relies on the github_api
36 36 * class to retrieve the information from the GitHub API.
37 37 * @uses class github_api
38 38 */
39 -
40 39 class github_embed {
41 40
42 41 private $api;
43 42
@@ -42,8 +41,9 @@
42 41 private $api;
43 42
44 43 /**
45 44 * Constructor. Registers hooks and filters
45 + *
46 46 * @param class $api An instance of the github_api classs
47 47 */
48 48 public function __construct( $api ) {
49 49 $this->api = $api;
@@ -58,9 +58,9 @@
58 58 /**
59 59 * Make sure we have a scheduled event set to clear down the oEmbed cache until
60 60 * WordPress supports cache_age in oEmbed responses.
61 61 */
62 - function schedule_expiry() {
62 + public function schedule_expiry() {
63 63 if ( ! wp_next_scheduled( 'github_embed_cron' ) ) {
64 64 $frequency = apply_filters( 'github_embed_cache_frequency', 'daily' );
65 65 wp_schedule_event( time(), $frequency, 'github_embed_cron' );
66 66 }
@@ -70,11 +70,11 @@
70 70 * Expire old oEmbeds.
71 71 * Note: This is a bit sledgehammer-to-crack-a-nut hence why I'm only running it
72 72 * daily. Ideally WP should honour cache_age in oEmbed responses properly
73 73 */
74 - function cron() {
74 + public function cron() {
75 75 global $wpdb, $table_prefix;
76 - $sql = "DELETE
76 + $sql = "DELETE
77 77 FROM {$table_prefix}postmeta
78 78 WHERE meta_key LIKE '_oembed_%'";
79 79 $results = $wpdb->get_results( $sql );
80 80 }
@@ -82,9 +82,9 @@
82 82 /**
83 83 * Enqueue the frontend CSS
84 84 * @return void
85 85 */
86 - function enqueue_styles() {
86 + public function enqueue_styles() {
87 87 wp_register_style( 'github-embed', plugins_url( basename( dirname( __FILE__ ) ) . '/css/github-embed.css' ) );
88 88 wp_enqueue_style( 'github-embed' );
89 89 }
90 90
@@ -91,14 +91,16 @@
91 91 /**
92 92 * Register the oEmbed provider, and point it at a local endpoint since github
93 93 * doesn't directly support oEmbed yet. Our local endpoint will use the github
94 94 * API to fulfil the request.
95 - * @param array $providers The current list of providers
95 + *
96 + * @param array $providers The current list of providers
97 + *
96 98 * @return array The list, with our new provider added
97 99 */
98 100 public function register_oembed_handler() {
99 101 $oembed_url = home_url();
100 - $key = $this->get_key();
102 + $key = $this->get_key();
101 103 $oembed_url = add_query_arg( array( 'github_oembed' => $key ), $oembed_url );
102 104 wp_oembed_add_provider( '#https?://github.com/.*#i', $oembed_url, true );
103 105 }
104 106
@@ -112,8 +114,9 @@
112 114 if ( ! $key ) {
113 115 $key = md5( time() . rand( 0, 65535 ) );
114 116 add_option( 'github_oembed_key', $key, '', 'yes' );
115 117 }
118 +
116 119 return $key;
117 120 }
118 121
119 122 /**
@@ -137,9 +140,9 @@
137 140 die( 'Sad Octocat is sad.' );
138 141 }
139 142
140 143 // Check we have the required information
141 - $url = isset( $_REQUEST['url'] ) ? $_REQUEST['url'] : null;
144 + $url = isset( $_REQUEST['url'] ) ? $_REQUEST['url'] : null;
142 145 $format = isset( $_REQUEST['format'] ) ? $_REQUEST['format'] : null;
143 146
144 147 if ( ! empty( $format ) && 'json' !== $format ) {
145 148 header( 'HTTP/1.0 501 Not implemented' );
@@ -175,43 +178,47 @@
175 178 }
176 179 }
177 180
178 181 /**
182 + * Capture then return output of template, provided theme or fallback to plugin default.
183 + *
184 + * @param string $template The template name to process.
185 + * @param string $data Array, object, or variable that the template needs.
186 + *
187 + * @return string
188 + */
189 + private function process_template( $template, $data ) {
190 + ob_start();
191 + if ( ! locate_template( 'wp-github-oembed/' . $template, true, false, ['data' => $data] ) ) {
192 + require_once 'templates/' . $template;
193 + }
194 +
195 + return ob_get_clean();
196 + }
197 +
198 + /**
179 199 * Retrieve a list of contributors for a project
180 - * @param string $owner The owner of the repository
181 - * @param string $repository The repository name
200 + *
201 + * @param string $owner The owner of the repository
202 + * @param string $repository The repository name
182 203 */
183 204 private function oembed_github_repo_contributors( $owner, $repository ) {
184 - $repo = $this->api->get_repo( $owner, $repository );
185 - $contributors = $this->api->get_repo_contributors( $owner, $repository );
205 + $data = [];
206 + $data['repo'] = $this->api->get_repo( $owner, $repository );
207 + $data['contributors'] = $this->api->get_repo_contributors( $owner, $repository );
208 + $data['gravatar_size'] = apply_filters( 'github_oembed_gravatar_size', 64 );
209 + $data['logo_class'] = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-octocat' );
210 + $data['details_expanded'] = apply_filters( 'wp_github_oembed_contributor_details_expanded', true );
186 211
187 - $response = new stdClass();
188 - $response->type = 'rich';
189 - $response->width = '10';
190 - $response->height = '10';
212 + $response = new stdClass();
213 + $response->type = 'rich';
214 + $response->width = '10';
215 + $response->height = '10';
191 216 $response->version = '1.0';
192 - $response->title = $repo->description;
217 + $response->title = $data['repo']->description;
218 + $response->html = $this->process_template(
219 + 'repository_contributors.php', $data );
193 220
194 - $gravatar_size = apply_filters( 'github_oembed_gravatar_size', 64 );
195 -
196 - // @TODO This should all be templated
197 - $logo_class = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-octocat' );
198 - $response->html = '<div class="github-embed github-embed-repo-contributors ' . $logo_class . '">';
199 - $response->html .= '<p><a href="' . esc_attr( $repo->html_url ) . '" target="_blank">';
200 - $response->html .= '<strong>' . esc_html( $repo->description ) . '</strong></a><br/>';
201 - $response->html .= '<span class="github-heading">Contributors: </span>';
202 - $response->html .= '<ul class="github-repo-contributors">';
203 - foreach ( $contributors as $contributor ) {
204 - $response->html .= '<li class="github-repo-contributor">';
205 - $response->html .= '<img class="github-repo-contributor-avatar" src="';
206 - $response->html .= esc_url( add_query_arg( array( 's' => $gravatar_size ), $contributor->author->avatar_url ) );
207 - $response->html .= '" alt="Picture of ' . esc_attr( $contributor->author->login ) . '">';
208 - $response->html .= '<span class="github-repo-contributor-login">';
209 - $response->html .= '<a href="https://github.com/' . esc_attr( $contributor->author->login ) . '">' . esc_attr( $contributor->author->login ) . '</a></span>';
210 - }
211 - $response->html .= '</ul>';
212 - $response->html .= '<div style="clear: both;"></div>';
213 - $response->html .= '</div>';
214 221 header( 'Content-Type: application/json' );
215 222 echo json_encode( $response );
216 223 die();
217 224 }
@@ -220,40 +227,22 @@
220 227 * Retrieve the summary information for a repo's milestone, and
221 228 * output it as an oembed response
222 229 */
223 230 private function oembed_github_repo_milestone_summary( $owner, $repository, $milestone ) {
224 - $repo = $this->api->get_repo( $owner, $repository );
225 - $summary = $this->api->get_repo_milestone_summary( $owner, $repository, $milestone );
231 + $data = [];
232 + $data['repo'] = $this->api->get_repo( $owner, $repository );
233 + $data['summary'] = $this->api->get_repo_milestone_summary( $owner, $repository, $milestone );
234 + $data['logo_class'] = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-octocat' );
226 235
227 - $response = new stdClass();
228 - $response->type = 'rich';
229 - $response->width = '10';
230 - $response->height = '10';
236 + $response = new stdClass();
237 + $response->type = 'rich';
238 + $response->width = '10';
239 + $response->height = '10';
231 240 $response->version = '1.0';
232 - $response->title = $repo->description;
241 + $response->title = $data['repo']->description;
242 + $response->html = $this->process_template(
243 + 'repository_milestone_summary.php', $data );
233 244
234 - // @TODO This should all be templated
235 - $logo_class = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-octocat' );
236 - $response->html = '<div class="github-embed github-embed-milestone-summary ' . $logo_class . '">';
237 - $response->html .= '<p><a href="' . esc_attr( $repo->html_url ) . '" target="_blank"><strong>' . esc_html( $repo->description ) . '</strong></a><br/>';
238 -
239 - $response->html .= '<span class="github-heading">Milestone: </span>';
240 - $response->html .= '<span class="github-milestone-title">' . esc_html( $summary->title ) . '</span><br>';
241 -
242 - $response->html .= '<span class="github-heading">Issues: </span>';
243 - $response->html .= '<span class="github-milestone-issues">';
244 - $response->html .= esc_html( number_format_i18n( $summary->open_issues ) ) . ' open, ';
245 - $response->html .= esc_html( number_format_i18n( $summary->closed_issues ) ) . ' closed.</span><br>';
246 -
247 - if ( ! empty( $summary->due_on ) ) {
248 - $response->html .= '<span class="github-heading">Due: </span>';
249 - $due_date = date_format( date_create( $summary->due_on ), 'jS F Y' );
250 - $response->html .= '<span class="github-milestone-due-date">' . esc_html( $due_date ) . '</span><br>';
251 - }
252 -
253 - $response->html .= '<p class="github-milestone-description">' . nl2br( esc_html( $summary->description ) ) . '</p><br>';
254 - $response->html .= '</div>';
255 -
256 245 header( 'Content-Type: application/json' );
257 246 echo json_encode( $response );
258 247 die();
259 248
@@ -262,46 +251,28 @@
262 251 /**
263 252 * Retrieve the information from github for a repo, and
264 253 * output it as an oembed response
265 254 */
266 - private function oembed_github_repo ( $owner, $repository ) {
267 - $repo = $this->api->get_repo( $owner, $repository );
268 - $commits =$this->api->get_repo_commits( $owner, $repository );
255 + private function oembed_github_repo( $owner, $repository ) {
256 + $data = [
257 + 'owner_slug' => $owner,
258 + 'repo_slug' => $repository,
259 + ];
260 + $data['repo'] = $this->api->get_repo( $owner, $repository );
261 + $data['commits'] = $this->api->get_repo_commits( $owner, $repository );
262 + $data['logo_class'] = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-mark' );
263 + $data['details_expanded'] = apply_filters( 'wp_github_oembed_repository_commit_details_expanded', true );
269 264
270 - $response = new stdClass();
271 - $response->type = 'rich';
272 - $response->width = '10';
273 - $response->height = '10';
265 + $response = new stdClass();
266 + $response->type = 'rich';
267 + $response->width = '10';
268 + $response->height = '10';
274 269 $response->version = '1.0';
275 - $response->title = $repo->description;
270 + $response->title = $data['repo']->description;
271 + $response->html = $this->process_template(
272 + 'repository.php', $data );
276 273
277 - // @TODO This should all be templated
278 - $logo_class = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-mark' );
279 - $response->html = '<div class="github-embed github-embed-repository ' . $logo_class . '">';
280 - $response->html .= '<p><a href="' . esc_attr( $repo->html_url ) . '" target="_blank"><strong>' . esc_html( $repo->description ) . '</strong></a><br/>';
281 - $response->html .= '<a href="' . esc_attr( $repo->html_url ) . '" target="_blank">' . esc_html( $repo->html_url ) . '</a><br/>';
282 - $response->html .= '<a href="' . esc_attr( $repo->html_url . '/network' ) . '" target="_blank">' . esc_html( number_format_i18n( $repo->forks_count ) ) . '</a> forks.<br/>';
283 - $response->html .= '<a href="' . esc_attr( $repo->html_url . '/stargazers' ) . '" target="_blank">' . esc_html( number_format_i18n( $repo->stargazers_count ) ) . '</a> stars.<br/>';
284 - $response->html .= '<a href="' . esc_attr( $repo->html_url . '/issues' ) . '" target="_blank">' . esc_html( number_format_i18n( $repo->open_issues_count ) ) . '</a> open issues.<br/>';
285 274
286 - if ( count( $commits ) ) {
287 - $cnt = 0;
288 - $response->html .= 'Recent commits:';
289 - $response->html .= '<ul class="github_commits">';
290 - foreach ( $commits as $commit ) {
291 - if ( $cnt > 4 ) {
292 - break;
293 - }
294 - $response->html .= '<li class="github_commit">';
295 - $response->html .= '<a href="https://github.com/' . $owner . '/' . $repository . '/commit/' . esc_attr( $commit->sha ) . '" target="_blank">' . esc_html( $commit->commit->message ) . '</a>, ';
296 - $response->html .= esc_html( $commit->commit->committer->name );
297 - $response->html .= '</li>';
298 - $cnt++;
299 - }
300 - $response->html .= '</ul>';
301 - }
302 - $response->html .= '</p>';
303 - $response->html .= '</div>';
304 275 header( 'Content-Type: application/json' );
305 276 echo json_encode( $response );
306 277 die();
307 278 }
@@ -309,26 +280,24 @@
309 280 /**
310 281 * Retrieve the information from github for an author, and output
311 282 * it as an oembed response
312 283 */
313 - private function oembed_github_author ( $owner ) {
284 + private function oembed_github_author( $owner ) {
285 + $data = [];
286 + $data["owner"] = $owner;
287 + $data["owner_info"] = $this->api->get_user( $owner );
288 + $data["logo_class"] = apply_filters( 'wp_github_oembed_logo_class',
289 + 'github-logo-octocat' );
314 290
315 - $owner_info = $this->api->get_user( $owner );
316 -
317 - $response = new stdClass();
318 - $response->type = 'rich';
319 - $response->width = '10';
320 - $response->height = '10';
291 + $response = new stdClass();
292 + $response->type = 'rich';
293 + $response->width = '10';
294 + $response->height = '10';
321 295 $response->version = '1.0';
322 - $response->title = $owner_info->name;
296 + $response->title = $data['owner_info']->name;
297 + $response->html = $this->process_template(
298 + 'author.php', $data );
323 299
324 - // @TODO This should all be templated
325 - $logo_class = apply_filters( 'wp_github_oembed_logo_class', 'github-logo-octocat' );
326 - $response->html = '<div class="github-embed github-embed-user ' . $logo_class . '">';
327 - $response->html .= '<p><a href="https://github.com/' . esc_attr( $owner ) . '" target="_blank"><strong>' . esc_html( $owner ) . '</strong></a><br/>';
328 - $response->html .= esc_html( number_format_i18n( $owner_info->public_repos ) ) . ' repositories, ';
329 - $response->html .= esc_html( number_format_i18n( $owner_info->followers ) ) . ' followers.</p>';
330 - $response->html .= '</div>';
331 300 header( 'Content-Type: application/json' );
332 301 echo json_encode( $response );
333 302 die();
334 303 }
@@ -335,6 +304,6 @@
335 304 }
336 305
337 306 require_once( 'github-api.php' );
338 307
339 -$github_api = new github_api();
308 +$github_api = new github_api();
340 309 $github_embed = new github_embed( $github_api );