本文整理汇总了PHP中owa_coreAPI::getGeolocationFromIpAddress方法的典型用法代码示例。如果您正苦于以下问题:PHP owa_coreAPI::getGeolocationFromIpAddress方法的具体用法?PHP owa_coreAPI::getGeolocationFromIpAddress怎么用?PHP owa_coreAPI::getGeolocationFromIpAddress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类owa_coreAPI
的用法示例。
在下文中一共展示了owa_coreAPI::getGeolocationFromIpAddress方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: notify
/**
* 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;
}
}
示例2: resolveState
static function resolveState($state, $event)
{
if (!$state) {
$location = owa_coreAPI::getGeolocationFromIpAddress($event->get('ip_address'));
return $location->getState();
}
}
示例3: setGeolocation
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);
}
}