Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
<?php

class NextendSocialLoginPROProviderExtensionGoogle extends NextendSocialLoginPROProviderExtensionWithSyncData {

    /** @var NextendSocialProviderGoogle */
    protected $provider;

    public function providerEnabled() {

        parent::providerEnabled();
        add_filter('nsl_' . $this->provider->getId() . '_sync_field_genders', array(
            $this,
            'sync_field_genders'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_biographies', array(
            $this,
            'sync_field_biographies'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_birthdays', array(
            $this,
            'sync_field_birthdays'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_occupations', array(
            $this,
            'sync_field_occupations'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_organizations', array(
            $this,
            'sync_field_organizations'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_locations', array(
            $this,
            'sync_field_locations'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_ageRanges', array(
            $this,
            'sync_field_ageRanges'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_addresses', array(
            $this,
            'sync_field_addresses'
        ), 10, 2);

        add_filter('nsl_' . $this->provider->getId() . '_sync_field_phoneNumbers', array(
            $this,
            'sync_field_phoneNumbers'
        ), 10, 2);

        //Sync data warning
        add_filter('nsl_' . $this->provider->getId() . '_sync_warning', array(
            $this,
            'google_sync_warning'
        ), 10);
    }


    public function sync_field_genders($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            return $original_value[0]['value'];
        }

        return false;
    }

    public function sync_field_biographies($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            return $original_value[0]['value'];
        }

        return false;
    }

    public function sync_field_birthdays($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            $date = $original_value[0]['date'];
            if (!empty($date['year']) && !empty($date['month']) && !empty($date['day'])) {
                return $date['year'] . '-' . $date['month'] . '-' . $date['day'];
            }
        }

        return false;
    }

    public function sync_field_occupations($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            return $original_value[0]['value'];
        }

        return false;
    }

    public function sync_field_organizations($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            $organizations = array();
            foreach ($original_value as $organization) {
                $primary = 'false';
                if (isset($organization['metadata']['primary']) && $organization['metadata']['primary']) {
                    $primary = 'true';
                }

                $organizations[] = array(
                    'name'           => $organization['name'],
                    'title'          => $organization['title'],
                    'type'           => $organization['type'],
                    'startDate'      => $organization['startDate']['year'],
                    'endDate'        => $organization['endDate']['year'],
                    'primary'        => $primary,
                    'jobDescription' => $organization['jobDescription'],
                );
            }

            return maybe_serialize($organizations);
        }

        return false;
    }

    public function sync_field_locations($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            $locations = array();
            foreach ($original_value as $location) {
                $current = 'false';
                if (isset($location['current']) && $location['current']) {
                    $current = 'true';
                }

                $locations[] = array(
                    'current' => $current,
                    'value'   => $location['value']
                );
            }

            return maybe_serialize($locations);
        }

        return false;
    }


    public function sync_field_ageRanges($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            return $original_value[0]['ageRange'];
        }

        return false;
    }

    public function sync_field_addresses($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            $addresses = array();
            foreach ($original_value as $address) {
                $addresses[] = array(
                    'formattedValue' => $address['formattedValue'],
                );
            }

            return maybe_serialize($addresses);
        }

        return false;
    }

    public function sync_field_phoneNumbers($value, $original_value) {
        if (isset($original_value) && is_array($original_value)) {
            $phoneNumbers = array();
            foreach ($original_value as $phoneNumber) {
                $phoneNumbers[] = array(
                    'type'  => $phoneNumber['type'],
                    'value' => $phoneNumber['value'],
                );
            }

            return maybe_serialize($phoneNumbers);
        }

        return false;
    }

    public function google_sync_warning() {
        $sync_warning_message = sprintf(__('Most of these information can only be retrieved, when the field is marked as Public on the user\'s %s page!', 'nextend-facebook-connect'), '<a href="https://aboutme.google.com/" target="_blank">About Me</a>');

        return $sync_warning_message;
    }


    protected function getRemoteData($node = 'me') {
        switch ($node) {
            case 'me':
                return $this->provider->getMe();
            case 'people':
                return $this->provider->getMyPeople();
        }

        return array();
    }
}