<?php
/**
 * Custom TechSmart template tags
 *
 * Eventually, some of the functionality here could be replaced by core features.
 */

if ( ! function_exists( 'techsmart_entry_meta' ) ) :
/**
 * Prints HTML with meta information for the categories, tags.
 *
 * Create your own techsmart_entry_meta() function to override in a child theme.
 */
function techsmart_entry_meta() {

	if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
		techsmart_entry_date();
	}

	$format = get_post_format();
	if ( current_theme_supports( 'post-formats', $format ) ) {
		printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
			sprintf( '<span class="screen-reader-text">%s </span>', _x( 'Format', 'Used before post format.', 'techsmart' ) ),
			esc_url( get_post_format_link( $format ) ),
			get_post_format_string( $format )
		);
	}

	if ( 'post' === get_post_type() ) {
		techsmart_entry_taxonomies();
	}

	if ( ! is_singular() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
		echo '<span class="comments-link">';
		comments_popup_link( sprintf( __( 'Leave a comment<span class="screen-reader-text"> on %s</span>', 'techsmart' ), get_the_title() ) );
		echo '</span>';
	}
}
endif;

if ( ! function_exists( 'techsmart_entry_date' ) ) :
/**
 * Prints HTML with date information for current post.
 *
 * Create your own techsmart_entry_date() function to override in a child theme.
 */
function techsmart_entry_date() {
	$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';

	if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
		$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
	}

	$time_string = sprintf( $time_string,
		esc_attr( get_the_date( 'c' ) ),
		get_the_date(),
		esc_attr( get_the_modified_date( 'c' ) ),
		get_the_modified_date()
	);

	printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span>%3$s</span>',
		_x( 'Posted on', 'Used before publish date.', 'techsmart' ),
		esc_url( get_permalink() ),
		$time_string
	);
}
endif;

if ( ! function_exists( 'techsmart_entry_date_homepage' ) ) :
/**
 * Prints HTML with date information for homepage posts.
 *
 * Create your own techsmart_entry_date() function to override in a child theme.
 */
function techsmart_entry_date_homepage( $id ) {
	$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';

	$time_string = sprintf( $time_string,
		esc_attr( get_the_date( '', $id ) ),
		esc_html(get_the_date( '', $id ) )
	);

	printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span>%2$s</span>',
		_x( 'Posted on', 'Used before publish date.', 'techsmart' ),
		$time_string
	);
}
endif;

if ( ! function_exists( 'techsmart_entry_taxonomies' ) ) :
/**
 * Prints HTML with category and tags for current post.
 *
 * Create your own techsmart_entry_taxonomies() function to override in a child theme.
 */
function techsmart_entry_taxonomies() {
	$categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'techsmart' ) );
	if ( $categories_list && techsmart_categorized_blog() ) {
		printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
			_x( 'Categories', 'Used before category names.', 'techsmart' ),
			$categories_list
		);
	}

	$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'techsmart' ) );
	if ( $tags_list ) {
		printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
			_x( 'Tags', 'Used before tag names.', 'techsmart' ),
			$tags_list
		);
	}
}
endif;

if ( ! function_exists( 'techsmart_post_thumbnail' ) ) :
/**
 * Displays an optional post thumbnail.
 *
 * Wraps the post thumbnail in an anchor element on index views, or a div
 * element when on single views.
 *
 * Create your own techsmart_post_thumbnail() function to override in a child theme.
 */
function techsmart_post_thumbnail() {
	if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
		return;
	}

	if ( is_singular() ) :
	?>

	<div class="post-thumbnail">
		<?php the_post_thumbnail('large'); ?>
	</div><!-- .post-thumbnail -->

	<?php else : ?>

	<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
		<?php the_post_thumbnail( 'large', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
	</a>

	<?php endif; // End is_singular()
}
endif;

if ( ! function_exists( 'techsmart_excerpt' ) ) :
	/**
	 * Displays the optional excerpt.
	 *
	 * Wraps the excerpt in a div element.
	 *
	 * Create your own techsmart_excerpt() function to override in a child theme.
	 *
	 * @param string $class Optional. Class string of the div element. Defaults to 'entry-summary'.
	 */
	function techsmart_excerpt( $class = 'entry-summary' ) {
		$class = esc_attr( $class );

		if ( has_excerpt() || is_search() ) : ?>
			<div class="<?php echo $class; ?>">
				<?php the_excerpt(); ?>
			</div><!-- .<?php echo $class; ?> -->
		<?php endif;
	}
endif;

if ( ! function_exists( 'techsmart_excerpt_more' ) && ! is_admin() ) :
/**
 * Replaces "[...]" (appended to automatically generated excerpts) with ... and
 * a 'Continue reading' link.
 *
 * Create your own techsmart_excerpt_more() function to override in a child theme.
 *
 * @return string 'Continue reading' link prepended with an ellipsis.
 */
function techsmart_excerpt_more() {
	if ( !is_front_page() ) {
		$link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
			esc_url( get_permalink( get_the_ID() ) ),
			/* translators: %s: Name of current post */
			sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'techsmart' ), get_the_title( get_the_ID() ) )
		);
		/*return ' &hellip; ' . $link;*/
		return '';
	} else {
		return '';
	}
}
add_filter( 'excerpt_more', 'techsmart_excerpt_more' );
endif;

/**
 * Get post excerpt by post ID.
 *
 * @return string
 */
function techsmart_get_post_excerpt_by_id( $post_id ) {
	global $post;
	$post = get_post( $post_id );
	setup_postdata( $post );
	$the_excerpt = get_the_excerpt();
	wp_reset_postdata();
	return $the_excerpt;
}

/**
 * Determines whether blog/site has more than one category.
 *
 * Create your own techsmart_categorized_blog() function to override in a child theme.
 *
 * @return bool True if there is more than one category, false otherwise.
 */
function techsmart_categorized_blog() {
	if ( false === ( $all_the_cool_cats = get_transient( 'techsmart_categories' ) ) ) {
		// Create an array of all the categories that are attached to posts.
		$all_the_cool_cats = get_categories( array(
			'fields'     => 'ids',
			// We only need to know if there is more than one category.
			'number'     => 2,
		) );

		// Count the number of categories that are attached to the posts.
		$all_the_cool_cats = count( $all_the_cool_cats );

		set_transient( 'techsmart_categories', $all_the_cool_cats );
	}

	if ( $all_the_cool_cats > 1 ) {
		// This blog has more than 1 category so techsmart_categorized_blog should return true.
		return true;
	} else {
		// This blog has only 1 category so techsmart_categorized_blog should return false.
		return false;
	}
}

/**
 * Flushes out the transients used in techsmart_categorized_blog().
 */
function techsmart_category_transient_flusher() {
	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
		return;
	}
	// Like, beat it. Dig?
	delete_transient( 'techsmart_categories' );
}
add_action( 'edit_category', 'techsmart_category_transient_flusher' );
add_action( 'save_post',     'techsmart_category_transient_flusher' );

if ( ! function_exists( 'techsmart_the_custom_logo' ) ) :
/**
 * Displays the optional custom logo.
 *
 * Does nothing if the custom logo is not available.
 */
function techsmart_the_custom_logo() {
	if ( function_exists( 'the_custom_logo' ) ) {
		the_custom_logo();
	}
}
endif;


