1: <?php
2:
3: namespace GeoIp2\Model;
4:
5: /**
6: * This class provides a model for the data returned by the GeoIP2 Country
7: * end point.
8: *
9: * The only difference between the City, City/ISP/Org, and Omni model
10: * classes is which fields in each record may be populated. See
11: * http://dev.maxmind.com/geoip/geoip2/web-services more details.
12: *
13: * @property \GeoIp2\Record\Continent $continent Continent data for the
14: * requested IP address.
15: *
16: * @property \GeoIp2\Record\Country $country Country data for the requested
17: * IP address. This object represents the country where MaxMind believes the
18: * end user is located.
19: *
20: * @property \GeoIp2\Record\MaxMind $maxmind Data related to your MaxMind
21: * account.
22: *
23: * @property \GeoIp2\Record\Country $registeredCountry Registered country
24: * data for the requested IP address. This record represents the country
25: * where the ISP has registered a given IP block and may differ from the
26: * user's country.
27: *
28: * @property \GeoIp2\Record\RepresentedCountry $representedCountry
29: * Represented country data for the requested IP address. The represented
30: * country is used for things like military bases or embassies. It is only
31: * present when the represented country differs from the country.
32: *
33: * @property \GeoIp2\Record\Traits $traits Data for the traits of the
34: * requested IP address.
35: */
36: class Country implements \JsonSerializable
37: {
38: private $continent;
39: private $country;
40: private $locales;
41: private $maxmind;
42: private $registeredCountry;
43: private $representedCountry;
44: private $traits;
45: private $raw;
46:
47: /**
48: * @ignore
49: */
50: public function __construct($raw, $locales = array('en'))
51: {
52: $this->raw = $raw;
53:
54: $this->continent = new \GeoIp2\Record\Continent(
55: $this->get('continent'),
56: $locales
57: );
58: $this->country = new \GeoIp2\Record\Country(
59: $this->get('country'),
60: $locales
61: );
62: $this->maxmind = new \GeoIp2\Record\MaxMind($this->get('maxmind'));
63: $this->registeredCountry = new \GeoIp2\Record\Country(
64: $this->get('registered_country'),
65: $locales
66: );
67: $this->representedCountry = new \GeoIp2\Record\RepresentedCountry(
68: $this->get('represented_country'),
69: $locales
70: );
71: $this->traits = new \GeoIp2\Record\Traits($this->get('traits'));
72:
73: $this->locales = $locales;
74: }
75:
76: /**
77: * @ignore
78: */
79: protected function get($field)
80: {
81: return isset($this->raw[$field]) ? $this->raw[$field] : array();
82: }
83:
84: /**
85: * @ignore
86: */
87: public function __get($attr)
88: {
89: if ($attr != "instance" && isset($this->$attr)) {
90: return $this->$attr;
91: }
92:
93: throw new \RuntimeException("Unknown attribute: $attr");
94: }
95:
96: /**
97: * @ignore
98: */
99: public function __isset($attr)
100: {
101: return $attr != "instance" && isset($this->$attr);
102: }
103:
104: public function jsonSerialize()
105: {
106: return $this->raw;
107: }
108: }
109: