Util_PageUrls.php 22.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
<?php
namespace W3TC;

class Util_PageUrls {
	/**
	 * Returns full urls for frontpage including older pages
	 *
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_frontpage_urls( $limit_post_pages = 10 ) {
		static $frontpage_urls = array();

		if ( !isset( $frontpage_urls[$limit_post_pages] ) ) {
			$front_page = get_option( 'show_on_front' );
			$full_urls = array();
			$home_path = Util_Environment::home_url_uri();
			$site_path = Util_Environment::site_url_uri();

			$full_urls[] = get_home_url() . '/';

			if ( $site_path != $home_path ) {
				$full_urls[] = site_url() . '/';
			}

			$full_urls  = array_merge( $full_urls,
				self::get_older_pages( $home_path, $limit_post_pages ) );
			$frontpage_urls[$limit_post_pages] = $full_urls;
		}
		return $frontpage_urls[$limit_post_pages];
	}

	/**
	 * Return full urls for the page with posts including older pages
	 *
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_postpage_urls( $limit_post_pages = 10 ) {
		static $postpage_urls = array();

		if ( !isset( $postpage_urls[$limit_post_pages] ) ) {
			$posts_page_uri = '';
			$full_urls = array();
			$posts_page_id = get_option( 'page_for_posts' );
			if ( $posts_page_id ) {
				$posts_page_uri = get_page_uri( $posts_page_id );
				$page_link = get_home_url() . '/' . trim( $posts_page_uri, '/' ) . '/';
				$full_urls[] = $page_link;
			}
			if ( $posts_page_uri )
				$full_urls = array_merge( $full_urls, self::get_older_pages( $posts_page_uri, $limit_post_pages ) );
			$postpage_urls[$limit_post_pages] = $full_urls;
		}
		return $postpage_urls[$limit_post_pages];
	}

	/**
	 * Return older pages listing posts
	 *
	 * @param unknown $posts_page_uri
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static private function get_older_pages( $posts_page_uri, $limit_post_pages = 10 ) {
		$full_urls = array();
		$count_posts = wp_count_posts();
		$posts_number = $count_posts->publish;
		$posts_per_page = get_option( 'posts_per_page' );
		$posts_pages_number = @ceil( $posts_number / $posts_per_page );

		if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
			$posts_pages_number = $limit_post_pages;
		}

		for ( $pagenum = 2; $pagenum <= $posts_pages_number; $pagenum++ ) {
			$home_pagenum_link = self::get_pagenum_link( $posts_page_uri, $pagenum );
			$full_urls[] = $home_pagenum_link;
		}
		return $full_urls;
	}

	/**
	 * Returns all urls related to a post
	 *
	 * @param unknown $post_id
	 * @return array
	 */
	static public function get_post_urls( $post_id ) {
		static $post_urls = array();

		if ( !isset( $post_urls[$post_id] ) ) {
			$full_urls = array();
			$post_link = get_permalink( $post_id );
			$post_uri = str_replace( Util_Environment::home_domain_root_url(), '', $post_link );

			$full_urls[] = $post_link;
			$uris[] = $post_uri;
			$post = get_post( $post_id );
			$matches =array();
			if ( $post && ( $post_pages_number = preg_match_all( '/\<\!\-\-nextpage\-\-\>/', $post->post_content, $matches ) )>0 ) {
				global $wp_rewrite;
				$post_pages_number++;
				for ( $pagenum = 2; $pagenum <= $post_pages_number; $pagenum++ ) {
					if ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) == $post->ID )
						$post_pagenum_link = trailingslashit( $post_link ) . user_trailingslashit( "$wp_rewrite->pagination_base/" . $pagenum, 'single_paged' );
					else
						$post_pagenum_link = trailingslashit( $post_link ) . user_trailingslashit( $pagenum, 'single_paged' );
					$full_urls[] = $post_pagenum_link;
				}
			}
			$post_urls[$post_id] = $full_urls;
		}
		return $post_urls[$post_id];
	}

	/**
	 * Return full urls for the posts comment pages
	 *
	 * @param unknown $post_id
	 * @return array
	 */
	static public function get_post_comments_urls( $post_id ) {
		static $post_comments_urls = array();

		if ( !isset( $post_comments_urls[$post_id] ) ) {
			$full_urls = array();
			$comments_number = get_comments_number( $post_id );
			$comments_per_page = get_option( 'comments_per_page' );
			$comments_pages_number = @ceil( $comments_number / $comments_per_page );

			for ( $pagenum = 1; $pagenum <= $comments_pages_number; $pagenum++ ) {
				$comments_pagenum_link = self::get_comments_pagenum_link( $post_id, $pagenum );

				$full_urls[] = $comments_pagenum_link;
			}
			$post_comments_urls[$post_id] = $full_urls;
		}
		return $post_comments_urls[$post_id];
	}

	/**
	 * Return full urls for the authors pages
	 *
	 * @param unknown $post_author
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_post_author_urls( $post_author, $limit_post_pages = 10 ) {
		static $feed_author_urls = array();

		$key = md5( $post_author . ',' . $limit_post_pages );
		if ( !isset( $post_author_urls[$key] ) ) {
			$full_urls = array();
			$posts_number = count_user_posts( $post_author );
			$posts_per_page = get_option( 'posts_per_page' );
			$posts_pages_number = @ceil( $posts_number / $posts_per_page );

			if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
				$posts_pages_number = $limit_post_pages;
			}

			$author_link = get_author_posts_url( $post_author );
			$author_uri = str_replace( Util_Environment::home_domain_root_url(), '', $author_link );

			for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) {
				$author_pagenum_link = self::get_pagenum_link( $author_uri, $pagenum );
				$full_urls[] = $author_pagenum_link;
			}
			$post_author_urls[$key] = $full_urls;
		}
		return $post_author_urls[$key];
	}

	/**
	 * Returns full urls to post terms pages
	 *
	 * @param unknown $terms
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_post_terms_urls( $terms, $limit_post_pages = 10 ) {
		static $post_terms_urls = array();

		$key = md5( self::_term_hash( $terms ) . ',' . $limit_post_pages );
		if ( !isset( $post_terms_urls[$key] ) ) {
			$full_urls = array();
			$posts_per_page = get_option( 'posts_per_page' );

			foreach ( $terms as $term ) {
				$term_link = get_term_link( $term, $term->taxonomy );
				$term_uri = str_replace( Util_Environment::home_domain_root_url(), '', $term_link );
				$posts_pages_number = @ceil( $term->count / $posts_per_page );

				if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
					$posts_pages_number = $limit_post_pages;
				}

				for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) {
					$term_pagenum_link = self::get_pagenum_link( $term_uri, $pagenum );
					$full_urls[] = $term_pagenum_link;
				}
			}
			$post_terms_urls[$key] = $full_urls;
		}
		return $post_terms_urls[$key];

	}

	/**
	 * Return full urls for daily archive pages based on provided post
	 *
	 * @param unknown $post
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_daily_archive_urls( $post, $limit_post_pages = 10 ) {
		static $daily_archive_urls = array();

		$post_type = $post->post_type;
		$archive_slug = self::_get_archive_slug( $post );

		$key = md5( $post->ID . ',' . $limit_post_pages );
		if ( !isset( $daily_archive_urls[$key] ) ) {
			$full_urls = array();
			$post_date = strtotime( $post->post_date );
			$post_year = gmdate( 'Y', $post_date );
			$post_month = gmdate( 'm', $post_date );
			$post_day = gmdate( 'd', $post_date );
			$posts_per_page = get_option( 'posts_per_page' );
			$posts_number = self::get_archive_posts_count( $post_year, $post_month, $post_day, $post_type );
			$posts_pages_number = @ceil( $posts_number / $posts_per_page );

			if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
				$posts_pages_number = $limit_post_pages;
			}

			$day_link = get_day_link( $post_year, $post_month, $post_day );
			$day_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $day_link );

			for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) {
				$day_pagenum_link = self::get_pagenum_link( $day_uri, $pagenum );
				$full_urls[] = $day_pagenum_link;
			}
			$daily_archive_urls[$key] = $full_urls;
		}
		return $daily_archive_urls[$key];
	}

	/**
	 * Return full urls for montly archive pages based on provided post
	 *
	 * @param unknown $post
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_monthly_archive_urls( $post, $limit_post_pages = 10 ) {
		static $monthly_archive_urls = array();

		$post_type = $post->post_type;
		$archive_slug = self::_get_archive_slug( $post );

		$key = md5( $post->ID . ',' . $limit_post_pages );
		if ( !isset( $monthly_archive_urls[$key] ) ) {
			$full_urls = array();
			$post_date = strtotime( $post->post_date );
			$post_year = gmdate( 'Y', $post_date );
			$post_month = gmdate( 'm', $post_date );

			$posts_per_page = get_option( 'posts_per_page' );
			$posts_number = self::get_archive_posts_count( $post_year, $post_month, '', $post_type );
			$posts_pages_number = @ceil( $posts_number / $posts_per_page );

			if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
				$posts_pages_number = $limit_post_pages;
			}

			$month_link = get_month_link( $post_year, $post_month );
			$month_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $month_link );

			for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) {
				$month_pagenum_link = self::get_pagenum_link( $month_uri, $pagenum );
				$full_urls[] = $month_pagenum_link;
			}

			$monthly_archive_urls[$key] = $full_urls;
		}
		return $monthly_archive_urls[$key];
	}

	/**
	 * Return full urls for yearly archive pages based on provided post
	 *
	 * @param unknown $post
	 * @param int     $limit_post_pages default is 10
	 * @return array
	 */
	static public function get_yearly_archive_urls( $post, $limit_post_pages = 10 ) {
		static $yearly_archive_urls = array();

		$post_type = $post->post_type;
		$archive_slug = self::_get_archive_slug( $post );

		$key = md5( $post->ID . ',' . $limit_post_pages );
		if ( !isset( $yearly_archive_urls[$key] ) ) {

			$full_urls = array();
			$post_date = strtotime( $post->post_date );
			$post_year = gmdate( 'Y', $post_date );

			$posts_per_page = get_option( 'posts_per_page' );
			$posts_number =self::get_archive_posts_count( $post_year, '', '', $post_type );
			$posts_pages_number = @ceil( $posts_number / $posts_per_page );

			if ( $limit_post_pages > 0 && $posts_pages_number > $limit_post_pages ) {
				$posts_pages_number = $limit_post_pages;
			}

			$year_link = get_year_link( $post_year );
			$year_uri = $archive_slug . str_replace( Util_Environment::home_domain_root_url(), '', $year_link );

			for ( $pagenum = 1; $pagenum <= $posts_pages_number; $pagenum++ ) {
				$year_pagenum_link = self::get_pagenum_link( $year_uri, $pagenum );
				$full_urls[] = $year_pagenum_link;
			}
			$yearly_archive_urls[$key] = $full_urls;
		}
		return $yearly_archive_urls[$key];
	}

	/**
	 * Return full urls for the provided feed types
	 *
	 * @param unknown $feeds
	 * @param string|null $post_type
	 * @return array
	 */
	static public function get_feed_urls( $feeds, $post_type = null ) {
		static $feed_urls = array();

		$key = md5( implode( ',', $feeds ) . $post_type );
		if ( !isset( $feed_urls[$key] ) ) {
			$full_urls = array();
			foreach ( $feeds as $feed ) {
				$feed_link = self::get_feed_link( $feed, $post_type );

				$full_urls[] = $feed_link;
			}
			$feed_urls[$key] = $full_urls;
		}
		return $feed_urls[$key];
	}

	/**
	 * Return full urls for the provided post id and feed types
	 *
	 * @param unknown $post_id
	 * @param unknown $feeds
	 * @return array
	 */
	static public function get_feed_comments_urls( $post_id, $feeds ) {
		static $feed_comments_urls = array();

		$key = md5( implode( ',', $feeds ) . $post_id );
		if ( !isset( $feed_comments_urls[$key] ) ) {
			$full_urls = array();
			foreach ( $feeds as $feed ) {
				$post_comments_feed_link = self::get_post_comments_feed_link( $post_id, $feed );
				$full_urls[] = $post_comments_feed_link;
			}
			$feed_comments_urls[$key] = $full_urls;
		}
		return $feed_comments_urls[$key];
	}

	/**
	 * Returns full urls for the provided post author and feed types
	 *
	 * @param unknown $post_author
	 * @param unknown $feeds
	 * @return array
	 */
	static public function get_feed_author_urls( $post_author, $feeds ) {
		static $post_author_urls = array();

		$key = md5( implode( ',', $feeds ) . $post_author );
		if ( !isset( $feed_author_urls[$key] ) ) {
			$full_urls = array();
			foreach ( $feeds as $feed ) {
				$author_feed_link = self::get_author_feed_link( $post_author, $feed );
				$full_urls[] = $author_feed_link;
			}
			$feed_author_urls[$key] = $full_urls;
		}
		return $feed_author_urls[$key];
	}

	/**
	 * Returns full urls for the provided terms and feed types
	 *
	 * @param unknown $terms
	 * @param unknown $feeds
	 * @return array
	 */
	static public function get_feed_terms_urls( $terms, $feeds ) {
		static $feed_terms_urls = array();

		$key = md5( implode( ',', $feeds ) . self::_term_hash( $terms ) );
		if ( !isset( $feed_terms_urls[$key] ) ) {
			$full_urls = array();
			foreach ( $terms as $term ) {
				foreach ( $feeds as $feed ) {
					$term_feed_link = self::get_term_feed_link( $term->term_id, $term->taxonomy, $feed );
					$full_urls[] = $term_feed_link;
				}
			}
			$feed_terms_urls[$key] = $full_urls;
		}
		return $feed_terms_urls[$key];
	}

	/**
	 * Returns full urls for the provided url path based pages, ie /some/page.
	 *
	 * @param unknown $pages
	 * @return array
	 */
	static public function get_pages_urls( $pages ) {
		static $pages_urls = array();

		$key = md5( implode( ',', $pages ) );
		if ( !isset( $pages_urls[$key] ) ) {
			$full_urls = array();
			foreach ( $pages as $page_slug ) {
				if ( $page_slug ) {
					$page_link = get_home_url() . '/' . trim( $page_slug, '/' ) . '/';
					$full_urls[] = $page_link;
				}
			}
			$pages_urls[$key] = $full_urls;
		}
		return $pages_urls[$key];
	}

	/**
	 * Workaround for get_pagenum_link function
	 *
	 * @param string  $url
	 * @param int     $pagenum
	 * @return string
	 */
	static public function get_pagenum_link( $url, $pagenum = 1 ) {
		$request_uri = $_SERVER['REQUEST_URI'];
		$_SERVER['REQUEST_URI'] = $url;

		if ( is_admin() ) {
			$link = self::get_pagenum_link_admin( $pagenum );
		} else {
			$link = get_pagenum_link( $pagenum );
		}

		$_SERVER['REQUEST_URI'] = $request_uri;

		return $link;
	}


	/**
	 * Workaround for get_pagenum_link static public function when in admin
	 *
	 * @param unknown $pagenum
	 * @return string
	 */
	static public function get_pagenum_link_admin( $pagenum ) {
		global $wp_rewrite;

		$pagenum = (int) $pagenum;

		$request = remove_query_arg( 'paged' );

		$home_root = parse_url( home_url() );
		$home_root = ( isset( $home_root['path'] ) ) ? $home_root['path'] : '';
		$home_root = preg_quote( trailingslashit( $home_root ), '|' );

		$request = preg_replace( '|^'. $home_root . '|', '', $request );
		$request = preg_replace( '|^/+|', '', $request );
		$qs_regex = '|\?.*?$|';
		preg_match( $qs_regex, $request, $qs_match );

		if ( !empty( $qs_match[0] ) ) {
			$query_string = $qs_match[0];
			$request = preg_replace( $qs_regex, '', $request );
		} else {
			$query_string = '';
		}

		$request = preg_replace( "|$wp_rewrite->pagination_base/\d+/?$|", '', $request );
		$request = preg_replace( '|^index\.php|', '', $request );
		$request = ltrim( $request, '/' );

		$base = trailingslashit( get_bloginfo( 'url' ) );

		if ( $wp_rewrite->using_index_permalinks() && ( $pagenum > 1 || '' != $request ) )
			$base .= 'index.php/';

		if ( $pagenum > 1 ) {
			$request = ( ( !empty( $request ) ) ? trailingslashit( $request ) : $request ) . user_trailingslashit( $wp_rewrite->pagination_base . "/" . $pagenum, 'paged' );
		}

		$result = $base . $request . $query_string;
		$result = apply_filters( 'get_pagenum_link', $result );
		return $result;
	}

	/**
	 * Workaround for get_comments_pagenum_link function
	 *
	 * @param integer $post_id
	 * @param integer $pagenum
	 * @param integer $max_page
	 * @return string
	 */
	static public function get_comments_pagenum_link( $post_id, $pagenum = 1, $max_page = 0 ) {
		if ( isset( $GLOBALS['post'] ) && is_object( $GLOBALS['post'] ) ) {
			$old_post = &$GLOBALS['post'];
		} else {
			$GLOBALS['post'] = new stdClass();
			$old_post = null;
		}

		$GLOBALS['post']->ID = $post_id;

		$link = get_comments_pagenum_link( $pagenum, $max_page );

		if ( $old_post ) {
			$GLOBALS['post'] = &$old_post;
		}

		return $link;
	}

	/**
	 * Returns number of posts in the archive
	 *
	 * @param int     $year
	 * @param int     $month
	 * @param int     $day
	 * @return int
	 */
	static public function get_archive_posts_count( $year = 0, $month = 0, $day = 0, $post_type/* = 'post'*/ ) {
		global $wpdb;

		$filters = array(
			'post_type = "' . $post_type .'"',
			'post_status = "publish"'
		);

		if ( $year ) {
			$filters[] = sprintf( 'YEAR(post_date) = %d', $year );
		}

		if ( $month ) {
			$filters[] = sprintf( 'MONTH(post_date) = %d', $month );
		}

		if ( $day ) {
			$filters[] = sprintf( 'DAY(post_date) = %d', $day );
		}

		$where = implode( ' AND ', $filters );

		$sql = sprintf( 'SELECT COUNT(*) FROM %s WHERE %s', $wpdb->posts, $where );

		$count = (int) $wpdb->get_var( $sql );

		return $count;
	}

	/**
	 * Workaround for get_feed_link function, remove filtering.
	 *
	 * @param string  $feed
	 * @param null|string $post_type
	 * @return mixed
	 */
	static public function get_feed_link( $feed = '', $post_type=null ) {
		/**
		 *
		 *
		 * @var $wp_rewrite WP_Rewrite
		 */
		global $wp_rewrite;

		if ( $post_type )
			return get_post_type_archive_feed_link( $post_type, $feed );

		$permalink = $wp_rewrite->get_feed_permastruct();
		if ( '' != $permalink ) {
			if ( false !== strpos( $feed, 'comments_' ) ) {
				$feed = str_replace( 'comments_', '', $feed );
				$permalink = $wp_rewrite->get_comment_feed_permastruct();
			}

			if ( get_default_feed() == $feed )
				$feed = '';

			$permalink = str_replace( '%feed%', $feed, $permalink );
			$permalink = preg_replace( '#/+#', '/', "/$permalink" );
			$output =  home_url( user_trailingslashit( $permalink, 'feed' ) );
		} else {
			if ( empty( $feed ) )
				$feed = get_default_feed();

			if ( false !== strpos( $feed, 'comments_' ) )
				$feed = str_replace( 'comments_', 'comments-', $feed );

			$output = home_url( "?feed={$feed}" );
		}

		return $output;
	}

	/**
	 * Workaround for get_post_comments_feed_link function, remove filtering.
	 *
	 * @param int     $post_id
	 * @param string  $feed
	 * @return string
	 */
	static public function get_post_comments_feed_link( $post_id = 0, $feed = '' ) {
		$post_id = absint( $post_id );

		if ( ! $post_id )
			$post_id = get_the_ID();

		if ( empty( $feed ) )
			$feed = get_default_feed();

		if ( '' != get_option( 'permalink_structure' ) ) {
			if ( 'page' == get_option( 'show_on_front' ) && $post_id == get_option( 'page_on_front' ) )
				$url = _get_page_link( $post_id );
			else
				$url = get_permalink( $post_id );

			$url = trailingslashit( $url ) . 'feed';
			if ( $feed != get_default_feed() )
				$url .= "/$feed";
			$url = user_trailingslashit( $url, 'single_feed' );
		} else {
			$type = get_post_field( 'post_type', $post_id );
			if ( 'page' == $type )
				$url = home_url( "?feed=$feed&amp;page_id=$post_id" );
			else
				$url = home_url( "?feed=$feed&amp;p=$post_id" );
		}

		return $url;
	}

	/**
	 * Workaround for get_author_feed_link function, remove filtering.
	 *
	 * @param unknown $author_id
	 * @param string  $feed
	 * @return string
	 */
	static public function get_author_feed_link( $author_id, $feed = '' ) {
		$author_id = (int) $author_id;
		$permalink_structure = get_option( 'permalink_structure' );

		if ( empty( $feed ) )
			$feed = get_default_feed();

		if ( '' == $permalink_structure ) {
			$link = home_url( "?feed=$feed&amp;author=" . $author_id );
		} else {
			$link = get_author_posts_url( $author_id );
			if ( $feed == get_default_feed() )
				$feed_link = 'feed';
			else
				$feed_link = "feed/$feed";

			$link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' );
		}

		return $link;
	}

	/**
	 * Workaround for get_term_feed_link function, remove filtering.
	 *
	 * @param unknown $term_id
	 * @param string  $taxonomy
	 * @param string  $feed
	 * @return bool|string
	 */
	static public function get_term_feed_link( $term_id, $taxonomy = 'category', $feed = '' ) {
		$term_id = ( int ) $term_id;

		$term = get_term( $term_id, $taxonomy  );

		if ( empty( $term ) || is_wp_error( $term ) )
			return false;

		if ( empty( $feed ) )
			$feed = get_default_feed();

		$permalink_structure = get_option( 'permalink_structure' );

		if ( '' == $permalink_structure ) {
			if ( 'category' == $taxonomy ) {
				$link = home_url( "?feed=$feed&amp;cat=$term_id" );
			}
			elseif ( 'post_tag' == $taxonomy ) {
				$link = home_url( "?feed=$feed&amp;tag=$term->slug" );
			} else {
				$t = get_taxonomy( $taxonomy );
				$link = home_url( "?feed=$feed&amp;$t->query_var=$term->slug" );
			}
		} else {
			$link = get_term_link( $term_id, $term->taxonomy );
			if ( $feed == get_default_feed() )
				$feed_link = 'feed';
			else
				$feed_link = "feed/$feed";

			$link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' );
		}

		return $link;
	}

	static public function complement_with_mirror_urls( $queued_urls ) {
		$config = Dispatcher::config();

		if ( !$config->get_boolean( 'pgcache.mirrors.enabled' ) ||
			Util_Environment::is_wpmu_subdomain() )
			return $queued_urls;

		$home_urls = $config->get_array( 'pgcache.mirrors.home_urls' );

		$url_prefix = trailingslashit( get_home_url() );
		$urls = array_keys( $queued_urls );

		foreach ( $urls as $url ) {
			if ( substr( $url, 0, strlen( $url_prefix ) ) != $url_prefix )
				continue;

			foreach ( $home_urls as $home ) {
				if ( !empty( $home ) ) {
					$mirror_url = $home . substr( $url, strlen( $url_prefix ) );
					$queued_urls[$mirror_url] = '*';
				}
			}
		}

		return $queued_urls;
	}

	static private function _term_hash( $terms ) {
		$term_hash = array();
		foreach ( $terms as $term )
			$term_hash[] = $term->term_id;
		$term_hashed = md5( implode( ',', $term_hash ) );
		return $term_hashed;
	}

	/**
	 *
	 *
	 * @param unknown $post
	 * @return string
	 */
	static private function _get_archive_slug( $post ) {
		$archive_slug = '';
		global $wp_post_types;
		$args = $wp_post_types[$post->post_type];
		if ( $args->has_archive ) {
			global $wp_rewrite;
			$archive_slug = $args->has_archive === true ? $args->rewrite['slug'] : $args->has_archive;
			if ( $args->rewrite['with_front'] )
				$archive_slug = substr( $wp_rewrite->front, 1 ) . $archive_slug;
			else
				$archive_slug = $wp_rewrite->root . $archive_slug;
		}
		return $archive_slug;
	}
}