/home/nbcgowuy/kdosheleads.com/wp-content/plugins/wp-social/lib/provider/counter-factory.php
<?php

namespace WP_Social\Lib\Provider;

use WP_Social\Lib\Provider\Counter\Comments_Counter;
use WP_Social\Lib\Provider\Counter\Dribbble_Counter;
use WP_Social\Lib\Provider\Counter\Facebook_Counter;
use WP_Social\Lib\Provider\Counter\Instagram_Counter;
use WP_Social\Lib\Provider\Counter\Tiktok_Counter;
use WP_Social\Lib\Provider\Counter\No_Provider_Counter;
use WP_Social\Lib\Provider\Counter\Pinterest_Counter;
use WP_Social\Lib\Provider\Counter\Posts_Counter;
use WP_Social\Lib\Provider\Counter\Twitter_Counter;
use WP_Social\Lib\Provider\Counter\Youtube_Counter;


class Counter_Factory {

	private $provider_type;

	public $factory;

	private $def_cache_time;


	public function __construct($cache_time = 43200) {

		$this->def_cache_time = $cache_time;
	}


	public function make($type) {

		$this->provider_type = $type;

		switch($type) {

			case 'instagram' :
				$this->factory = new Instagram_Counter();
				break;

			case 'tiktok' :
				$this->factory = new Tiktok_Counter();
				break;

//			case 'mailchimp' :
//				$this->factory = new Mailchimp_Counter();
//				break;

			case 'facebook' :
				$this->factory = new Facebook_Counter();
				break;

			case 'twitter' :
				$this->factory = new Twitter_Counter();
				break;

			case 'pinterest' :
				$this->factory = new Pinterest_Counter();
				break;

			case 'dribbble' :
				$this->factory = new Dribbble_Counter();
				break;

			case 'youtube' :
				$this->factory = new Youtube_Counter();
				break;

			case 'comments' :
				$this->factory = new Comments_Counter();
				break;

			case 'posts' :
				$this->factory = new Posts_Counter();
				break;

			default:
				$this->factory = new No_Provider_Counter();

		}

		$this->factory->set_cache_time($this->def_cache_time);

		return $this->factory;
	}
}