/**
  * Build a social profile object.
  *
  * <code>
  * $options = new Joomla\Registry\Registry(array(
  *    'platform' => 'socialcommunity',
  *    'user_id'  => 1
  * ));
  *
  * $factory = new Prism\Integration\Profile\Factory($options);
  * $profile = $factory->create();
  * </code>
  */
 public function create()
 {
     switch ($this->options->get('platform')) {
         case 'socialcommunity':
             jimport('Socialcommunity.init');
             /** @var  $params Registry */
             $params = \JComponentHelper::getParams('com_socialcommunity');
             $filesystemHelper = new Helper($params);
             $url = $filesystemHelper->getMediaFolderUri();
             $profile = new Socialcommunity(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             $profile->setMediaUrl($url);
             break;
         case 'gravatar':
             $profile = new Gravatar(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             break;
         case 'kunena':
             $profile = new Kunena(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             break;
         case 'jomsocial':
             // Register JomSocial Router
             if (!class_exists('CRoute')) {
                 \JLoader::register('CRoute', JPATH_SITE . '/components/com_community/libraries/core.php');
             }
             $profile = new JomSocial(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             // Load language file.
             $lang = \JFactory::getLanguage();
             $lang->load('com_community.country', JPATH_BASE);
             break;
         case 'easysocial':
             $profile = new EasySocial(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             break;
         case 'easyprofile':
             $profile = new EasyProfile(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             break;
         case 'communitybuilder':
             $profile = new CommunityBuilder(\JFactory::getDbo());
             $profile->load($this->options->get('user_id'));
             break;
         default:
             $profile = null;
             break;
     }
     return $profile;
 }
Esempio n. 2
0
 /**
  * Build a social profile object.
  *
  * <code>
  * $options = array(
  *    "social_platform" => "socialcommunity",
  *    "user_id" => 1
  * );
  *
  * $profileBuilder = new Prism\Integration\Profile\Builder($options);
  * $profileBuilder->build();
  *
  * $profile = $profileBuilder->getProfile();
  * </code>
  */
 public function build()
 {
     $type = ArrayHelper::getValue($this->config, 'social_platform');
     $userId = ArrayHelper::getValue($this->config, 'user_id');
     switch ($type) {
         case 'socialcommunity':
             jimport('socialcommunity.init');
             /** @var  $params Registry */
             $params = \JComponentHelper::getParams('com_socialcommunity');
             $path = $params->get('images_directory', '/images/profiles');
             $profile = new SocialCommunity(\JFactory::getDbo());
             $profile->load($userId);
             $profile->setPath($path);
             break;
         case 'gravatar':
             $profile = new Gravatar(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case 'kunena':
             $profile = new Kunena(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case 'jomsocial':
             // Register JomSocial Router
             if (!class_exists('CRoute')) {
                 \JLoader::register('CRoute', JPATH_SITE . '/components/com_community/libraries/core.php');
             }
             $profile = new JomSocial(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case 'easysocial':
             $profile = new EasySocial(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case 'easyprofile':
             $profile = new EasyProfile(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case 'communitybuilder':
             $profile = new CommunityBuilder(\JFactory::getDbo());
             $profile->load($userId);
             break;
         default:
             $profile = null;
             break;
     }
     $this->profile = $profile;
 }
Esempio n. 3
0
 /**
  * Build a social profile object.
  *
  * <code>
  * $options = array(
  *    "social_platform" => "socialcommunity",
  *    "user_id" => 1
  * );
  *
  * $profileBuilder = new Prism\Integration\Profile\Builder($options);
  * $profileBuilder->build();
  *
  * $profile = $profileBuilder->getProfile();
  * </code>
  */
 public function build()
 {
     $type = ArrayHelper::getValue($this->config, "social_platform");
     $userId = ArrayHelper::getValue($this->config, "user_id");
     switch ($type) {
         case "socialcommunity":
             jimport("socialcommunity.init");
             /** @var  $params Registry */
             $params = \JComponentHelper::getParams("com_socialcommunity");
             $path = $params->get("images_directory", "/images/profiles");
             $profile = new SocialCommunity(\JFactory::getDbo());
             $profile->load($userId);
             $profile->setPath($path);
             break;
         case "gravatar":
             $profile = new Gravatar(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case "kunena":
             $profile = new Kunena(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case "jomsocial":
             // Register JomSocial Router
             if (!class_exists("CRoute")) {
                 \JLoader::register("CRoute", JPATH_SITE . "/components/com_community/libraries/core.php");
             }
             $profile = new JomSocial(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case "easysocial":
             $profile = new EasySocial(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case "easyprofile":
             $profile = new EasyProfile(\JFactory::getDbo());
             $profile->load($userId);
             break;
         case "communitybuilder":
             $profile = new CommunityBuilder(\JFactory::getDbo());
             $profile->load($userId);
             break;
         default:
             $profile = null;
             break;
     }
     $this->profile = $profile;
 }