<?php
	if ( ! defined( 'ABSPATH' ) ) {
		exit;
	}

	/* String Helpers.
	--------------------------------------------------------------------------------------------*/
	function rw_starts_with( $haystack, $needle ) {
		$length = strlen( $needle );

		return ( substr( $haystack, 0, $length ) === $needle );
	}

	function rw_ends_with( $haystack, $needle ) {
		$length = strlen( $needle );
		$start  = $length * - 1; //negative
		return ( substr( $haystack, $start ) === $needle );
	}

	function rw_last_index_of( $haystack, $needle ) {
		$index = strpos( strrev( $haystack ), strrev( $needle ) );

		if ( $index ) {
			$index = strlen( $haystack ) - strlen( $needle ) - $index;

			return $index;
		}

		return - 1;
	}

	function __rw( $key ) {
		global $rw_text;

		if ( ! isset( $rw_text ) ) {
			require_once( dirname( __FILE__ ) . '/rw-text.php' );
		}

		return isset( $rw_text[ $key ] ) ? $rw_text[ $key ] : $key;
	}

	function _erw( $key ) {
		echo __rw( $key );
	}

	/* Url.
	--------------------------------------------------------------------------------------------*/
	function rw_admin_url( $path = 'admin.php', $page = WP_RW__ADMIN_MENU_SLUG, $scheme = 'admin' ) {
		echo rw_get_admin_url( $path, $page, $scheme );
	}

	function rw_get_admin_url( $path = 'admin.php', $page = WP_RW__ADMIN_MENU_SLUG, $scheme = 'admin' ) {
		return add_query_arg( array( 'page' => $page ), admin_url( $path, $scheme ) );
	}

	function rw_admin_plugin_url( $slug ) {
		echo rw_get_admin_plugin_url( $slug );
	}

	function rw_get_admin_plugin_url( $slug ) {
		return rw_get_admin_url( 'admin.php', WP_RW__ADMIN_MENU_SLUG . '-' . $slug );
	}

	function rw_get_site_url( $path = '' ) {
		if ( 0 === strpos( $path, 'http' ) ) {
			return $path;
		}

		$anchor     = '';
		$anchor_pos = strpos( $path, '#' );
		if ( false !== $anchor_pos ) {
			$anchor = substr( $path, $anchor_pos );
			$path   = substr( $path, 0, $anchor_pos );
		}

		$query     = '';
		$query_pos = strpos( $path, '?' );
		if ( false !== $query_pos ) {
			$query = substr( $path, $query_pos );
			$path  = substr( $path, 0, $query_pos );
		}

		return empty( $path ) ?
			WP_RW__ADDRESS :
			WP_RW__ADDRESS . '/' . trim( $path, '/' ) . ( false === strpos( $path, '.' ) ? '/' : '' ) . $query . $anchor;
	}

	function rw_the_site_url( $path = '' ) {
		echo rw_get_site_url( $path );
	}

	function rw_get_blog_url( $path = '' ) {
		return rw_get_site_url( '/blog/' . ltrim( $path, '/' ) );
	}

	function rw_get_url_daily_cache_killer() {
		return date( '\YY\Mm\Dd' );
	}

	function rw_get_js_url( $js ) {
		if ( rw_starts_with( $js, 'http' ) || rw_starts_with( $js, '//' ) ) {
			return $js;
		}

		if ( ( ( ! WP_RW__LOCALHOST && ! WP_RW__LOCALHOST_SCRIPTS ) || ! WP_RW__DEBUG ) && rw_ends_with( $js, '.php' ) ) {
			$js = substr( $js, 0, strlen( $js ) - 3 ) . 'js';
		}

		return WP_RW__ADDRESS_JS . $js . '?ck=' . rw_get_url_daily_cache_killer();
	}

	function rw_get_css_url( $css ) {
		if ( rw_starts_with( $css, 'http' ) || rw_starts_with( $css, '//' ) ) {
			return $css;
		}

		if ( ( ( ! WP_RW__LOCALHOST && ! WP_RW__LOCALHOST_SCRIPTS ) || ! WP_RW__DEBUG ) && rw_ends_with( $css, '.php' ) ) {
			$css = substr( $css, 0, strlen( $css ) - 3 ) . 'css';
		}

		return WP_RW__ADDRESS_CSS . $css . '?ck=' . rw_get_url_daily_cache_killer();
	}

	function rw_get_thumb_url( $img, $width = 160, $height = 100, $permalink = '' ) {
		return rw_get_img_thumb_url(
			( is_string( $img ) && 0 < strlen( $img ) ) ? $img : $permalink,
			$width,
			$height
		);
	}

	function rw_get_post_thumb_url( $post, $width = 160, $height = 100 ) {
		$img = ratingwidget()->GetPostImage( $post, WP_RW__CACHE_TIMEOUT_POST_THUMB_EXTRACT );

		return rw_get_thumb_url( $img, $width, $height, get_permalink( $post->ID ) );
	}

	function rw_get_img_thumb_url( $src, $width = 160, $height = 100 ) {
		return WP_RW__ADDRESS_TMB . '?src=' . urlencode( $src ) . '&w=' . $width . '&h=' . $height . '&zc=1';
	}

	function rw_get_plugin_img_url( $path ) {
		return WP_RW__PLUGIN_URL . 'resources/img/' . trim( $path, '/' );
	}

	function rw_get_plugin_img_path( $path ) {
            return trailingslashit( WP_RW__PLUGIN_DIR ) . 'resources/img/' . trim( $path, '/' );
	}

	function rw_get_plugin_css_path( $path ) {
		return WP_RW__PLUGIN_URL . 'resources/css/' . trim( $path, '/' );
	}

	function rw_get_site_img_path( $path ) {
		return WP_RW__ADDRESS_IMG . trim( $path, '/' );
	}

	/* Views.
	--------------------------------------------------------------------------------------------*/
	function rw_get_view_path( $path ) {
		return WP_RW__PLUGIN_VIEW_DIR . trim( $path, '/' );
	}

	function rw_include_view( $path, &$params = null ) {
		$VARS = &$params;
		include( rw_get_view_path( $path ) );
	}

	function rw_include_once_view( $path, &$params = null ) {
		$VARS = &$params;
		include_once( rw_get_view_path( $path ) );
	}

	function rw_require_view( $path, &$params = null ) {
		$VARS = &$params;
		require( rw_get_view_path( $path ) );
	}

	function rw_get_view( $path, &$params = null ) {
		$VARS = &$params;
		ob_start();
		require( rw_get_view_path( $path ) );

		return ob_get_clean();
	}

	function rw_require_once_view( $path, &$params = null ) {
		$VARS = &$params;
		require_once( rw_get_view_path( $path ) );
	}

	/* Scripts and styles including.
	--------------------------------------------------------------------------------------------*/
	function rw_register_style( $handle, $src = false, $ver = WP_RW__VERSION ) {
		wp_register_style( $handle, rw_get_css_url( $src ), array(), $ver );
	}

	function rw_enqueue_style( $handle, $src = false, $ver = WP_RW__VERSION ) {
		wp_enqueue_style( $handle, rw_get_css_url( $src ), array(), $ver );
	}

	function rw_register_script( $handle, $src = false, $ver = WP_RW__VERSION ) {
		wp_register_script( $handle, rw_get_js_url( $src ), array(), $ver );
	}

	function rw_enqueue_script( $handle, $src = false, $ver = WP_RW__VERSION ) {
		wp_enqueue_script( $handle, rw_get_js_url( $src ), array(), $ver );
	}

	/* Redirect.
	--------------------------------------------------------------------------------------------*/
	function rw_admin_redirect( $location = 'admin.php' ) {
		rw_redirect( rw_get_admin_url( $location ) );
		exit();
	}

	function rw_site_redirect( $location = '' ) {
		rw_redirect( rw_get_site_url( $location ) );
		exit();
	}

	/* Core Redirect (copied from BuddyPress).
	--------------------------------------------------------------------------------------------*/
	/**
	 * Redirects to another page, with a workaround for the IIS Set-Cookie bug.
	 *
	 * @link  http://support.microsoft.com/kb/q176113/
	 * @since 1.5.1
	 * @uses  apply_filters() Calls 'wp_redirect' hook on $location and $status.
	 *
	 * @param string $location The path to redirect to
	 * @param int    $status   Status code to use
	 *
	 * @return bool False if $location is not set
	 */
	function rw_redirect( $location, $status = 302 ) {
		global $is_IIS;

		if ( headers_sent() ) {
			return false;
		}

		if ( ! $location ) // allows the wp_redirect filter to cancel a redirect
		{
			return false;
		}

		$location = rw_sanitize_redirect( $location );

		if ( $is_IIS ) {
			header( "Refresh: 0;url=$location" );
		} else {
			if ( php_sapi_name() != 'cgi-fcgi' ) {
				status_header( $status );
			} // This causes problems on IIS and some FastCGI setups
			header( "Location: $location" );
		}
	}

	/**
	 * Sanitizes a URL for use in a redirect.
	 *
	 * @since 2.3
	 *
	 * @return string redirect-sanitized URL
	 **/
	function rw_sanitize_redirect( $location ) {
		$location = preg_replace( '|[^a-z0-9-~+_.?#=&;,/:%!]|i', '', $location );
		$location = rw_kses_no_null( $location );

		// remove %0d and %0a from location
		$strip = array( '%0d', '%0a' );
		$found = true;
		while ( $found ) {
			$found = false;
			foreach ( (array) $strip as $val ) {
				while ( strpos( $location, $val ) !== false ) {
					$found    = true;
					$location = str_replace( $val, '', $location );
				}
			}
		}

		return $location;
	}

	/**
	 * Removes any NULL characters in $string.
	 *
	 * @since 1.0.0
	 *
	 * @param string $string
	 *
	 * @return string
	 */
	function rw_kses_no_null( $string ) {
		$string = preg_replace( '/\0+/', '', $string );
		$string = preg_replace( '/(\\\\0)+/', '', $string );

		return $string;
	}

	/* Request handlers.
	--------------------------------------------------------------------------------------------*/
	function rw_request_get( $key, $def = false ) {
		return isset( $_REQUEST[ $key ] ) ? $_REQUEST[ $key ] : $def;
	}

	function rw_request_is_post() {
		return ( 'post' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
	}

	function rw_request_is_get() {
		return ( 'get' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
	}

	function rw_request_is_action( $action, $action_key = 'action' ) {
		$is_action = ( ! empty( $_REQUEST[ $action_key ] ) && $action === $_REQUEST[ $action_key ] );

		if ( $is_action ) {
			return true;
		}

		if ( $action_key == 'action' ) {
			$action_key = 'rw_action';

			return ( ! empty( $_REQUEST[ $action_key ] ) && $action === $_REQUEST[ $action_key ] );
		}

		return false;
	}