/**
  * Notify Event Handler
  *
  * @param 	unknown_type $event
  * @access 	public
  */
 function notify($event)
 {
     if ($event->get('location_id') || $event->get('ip_address')) {
         $h = owa_coreAPI::entityFactory('base.location_dim');
         // look for location id on the event. This happens when
         // another event has already created it.
         if ($event->get('location_id')) {
             $location_id = $event->get('location_id');
             // else look to see if he event has the minimal geo properties
             // if it does then assume that geo properties are set.
         } elseif ($event->get('country')) {
             $key = $event->get('country') . $event->get('city');
             $location_id = $h->generateId($key);
             // load the geo properties from the geo service.
         } else {
             $location = owa_coreAPI::getGeolocationFromIpAddress($event->get('ip_address'));
             owa_coreAPI::debug('geolocation: ' . print_r($location, true));
             //set properties of the session
             $event->set('country', $location->getCountry());
             $event->set('city', $location->getCity());
             $event->set('latitude', $location->getLatitude());
             $event->set('longitude', $location->getLongitude());
             $event->set('country_code', $location->getCountryCode());
             $event->set('state', $location->getState());
             $key = $event->get('country') . $event->get('city');
             $location_id = $h->generateId($key);
         }
         // look up the county code if it's missing
         if (!$event->get('country_code') && $event->get('country')) {
             $event->set('country_code', $this->lookupCountryCodeFromName($event->get('country')));
         }
         $h->getByPk('id', $location_id);
         $id = $h->get('id');
         if (!$id) {
             $location = owa_coreAPI::getGeolocationFromIpAddress($event->get('ip_address'));
             owa_coreAPI::debug('geolocation: ' . print_r($location, true));
             //set properties of the session
             $h->set('country', $event->get('country'));
             $h->set('city', $event->get('city'));
             $h->set('latitude', $event->get('latitude'));
             $h->set('longitude', $event->get('longitude'));
             $h->set('country_code', $event->get('country_code'));
             $h->set('state', $event->get('state'));
             $h->set('id', $location_id);
             $ret = $h->create();
             if ($ret) {
                 return OWA_EHS_EVENT_HANDLED;
             } else {
                 return OWA_EHS_EVENT_FAILED;
             }
         } else {
             owa_coreAPI::debug('Not Logging. Location already exists');
             return OWA_EHS_EVENT_HANDLED;
         }
     } else {
         owa_coreAPI::notice('Not persisting location dimension. Location id or ip address missing from event.');
         return OWA_EHS_EVENT_HANDLED;
     }
 }
 static function resolveState($state, $event)
 {
     if (!$state) {
         $location = owa_coreAPI::getGeolocationFromIpAddress($event->get('ip_address'));
         return $location->getState();
     }
 }
Ejemplo n.º 3
0
 function setGeolocation()
 {
     if (!$this->event->get('country')) {
         $location = owa_coreAPI::getGeolocationFromIpAddress($this->event->get('ip_address'));
         owa_coreAPI::debug('geolocation: ' . print_r($location, true));
         $this->event->set('country', $location->getCountry());
         $this->event->set('city', $location->getCity());
         $this->event->set('latitude', $location->getLatitude());
         $this->event->set('longitude', $location->getLongitude());
         $this->event->set('country_code', $location->getCountryCode());
         $this->event->set('state', $location->getState());
         $location_id = $location->generateId();
     } else {
         $s = owa_coreAPI::serviceSingleton();
         $location_id = $s->geolocation->generateId($this->event->get('country'), $this->event->get('state'), $this->event->get('city'));
     }
     if ($location_id) {
         $this->event->set('location_id', $location_id);
     }
 }