Code Duplication    Length = 38-38 lines in 2 locations

sal/class.json-api-post-base.php 1 location

@@ 517-554 (lines=38) @@
514
		return $suggestions;
515
	}
516
517
	private function format_taxonomy( $taxonomy, $taxonomy_type, $context ) {
518
		// Permissions
519
		switch ( $context ) {
520
		case 'edit' :
521
			$tax = get_taxonomy( $taxonomy_type );
522
			if ( !current_user_can( $tax->cap->edit_terms ) )
523
				return new WP_Error( 'unauthorized', 'User cannot edit taxonomy', 403 );
524
			break;
525
		case 'display' :
526
			if ( -1 == get_option( 'blog_public' ) && ! current_user_can( 'read' ) ) {
527
				return new WP_Error( 'unauthorized', 'User cannot view taxonomy', 403 );
528
			}
529
			break;
530
		default :
531
			return new WP_Error( 'invalid_context', 'Invalid API CONTEXT', 400 );
532
		}
533
534
		$response                = array();
535
		$response['ID']          = (int) $taxonomy->term_id;
536
		$response['name']        = (string) $taxonomy->name;
537
		$response['slug']        = (string) $taxonomy->slug;
538
		$response['description'] = (string) $taxonomy->description;
539
		$response['post_count']  = (int) $taxonomy->count;
540
541
		if ( is_taxonomy_hierarchical( $taxonomy_type ) ) {
542
			$response['parent'] = (int) $taxonomy->parent;
543
		}
544
545
		$response['meta'] = (object) array(
546
			'links' => (object) array(
547
				'self' => (string) $this->links->get_taxonomy_link( $this->site->get_id(), $taxonomy->slug, $taxonomy_type ),
548
				'help' => (string) $this->links->get_taxonomy_link( $this->site->get_id(), $taxonomy->slug, $taxonomy_type, 'help' ),
549
				'site' => (string) $this->links->get_site_link( $this->site->get_id() ),
550
			),
551
		);
552
553
		return (object) $response;
554
	}
555
556
	// TODO: factor this out into site
557
	private function get_media_item_v1_1( $media_id ) {

class.json-api-endpoints.php 1 location

@@ 1404-1441 (lines=38) @@
1401
		return $this->format_taxonomy( $taxonomy, $taxonomy_type, $context );
1402
	}
1403
1404
	function format_taxonomy( $taxonomy, $taxonomy_type, $context ) {
1405
		// Permissions
1406
		switch ( $context ) {
1407
		case 'edit' :
1408
			$tax = get_taxonomy( $taxonomy_type );
1409
			if ( !current_user_can( $tax->cap->edit_terms ) )
1410
				return new WP_Error( 'unauthorized', 'User cannot edit taxonomy', 403 );
1411
			break;
1412
		case 'display' :
1413
			if ( -1 == get_option( 'blog_public' ) && ! current_user_can( 'read' ) ) {
1414
				return new WP_Error( 'unauthorized', 'User cannot view taxonomy', 403 );
1415
			}
1416
			break;
1417
		default :
1418
			return new WP_Error( 'invalid_context', 'Invalid API CONTEXT', 400 );
1419
		}
1420
1421
		$response                = array();
1422
		$response['ID']          = (int) $taxonomy->term_id;
1423
		$response['name']        = (string) $taxonomy->name;
1424
		$response['slug']        = (string) $taxonomy->slug;
1425
		$response['description'] = (string) $taxonomy->description;
1426
		$response['post_count']  = (int) $taxonomy->count;
1427
1428
		if ( is_taxonomy_hierarchical( $taxonomy_type ) ) {
1429
			$response['parent'] = (int) $taxonomy->parent;
1430
		}
1431
1432
		$response['meta'] = (object) array(
1433
			'links' => (object) array(
1434
				'self' => (string) $this->links->get_taxonomy_link( $this->api->get_blog_id_for_output(), $taxonomy->slug, $taxonomy_type ),
1435
				'help' => (string) $this->links->get_taxonomy_link( $this->api->get_blog_id_for_output(), $taxonomy->slug, $taxonomy_type, 'help' ),
1436
				'site' => (string) $this->links->get_site_link( $this->api->get_blog_id_for_output() ),
1437
			),
1438
		);
1439
1440
		return (object) $response;
1441
	}
1442
1443
	/**
1444
	 * Returns ISO 8601 formatted datetime: 2011-12-08T01:15:36-08:00