17 $generated_id = rand(1, 100000);
18 $file = fopen(
'mocked_geolocation_data.txt', FILE_APPEND);
21 $write_string =
"$generated_id;$a_title;$a_latitude;$a_longitude;$a_expiration_timestamp\n";
24 fwrite($file, $write_string);
32 $a_expiration_timestamp
41 $file = fopen(
'mocked_geolocation_data.txt',
'r');
44 while($row = fgetcsv($file))
52 throw new \InvalidArgumentException(
"Unknown id for geolocation: $a_id");
60 $file = fopen(
'mocked_geolocation_data.txt',
'r');
61 $geo_locations = array();
64 while($row = fgetcsv($file))
66 if($row[2] == $a_latitude && $row[3] == $a_longitude)
72 return $geo_locations;
80 $file = fopen(
'mocked_geolocation_data.txt',
'r');
83 while($row = fgetcsv($file))
100 $file = fopen(
'mocked_geolocation_data.txt',
'r');
103 while($row = fgetcsv($file))
105 if($row[2] == $a_latitude && $row[3] == $a_longitude)
120 $file = fopen(
'mocked_geolocation_data.txt',
'r');
125 foreach($geo_locations as $key => $row)
127 if($row[0] == $a_obj->
getId())
137 $file = fopen(
'mocked_geolocation_data.txt',
'w');
148 $file = fopen(
'mocked_geolocation_data.txt',
'r');
153 foreach($geo_locations as $key => $row)
155 if($row[2] == $a_searched_latitude && $row[3] == $a_searched_longitude)
157 $row[4] = $a_update_timestamp->getTimestamp();
162 $file = fopen(
'mocked_geolocation_data.txt',
'w');
172 $file = fopen(
'mocked_geolocation_data.txt',
'r');
177 foreach($geo_locations as $key => $row)
182 unset($geo_locations[$key]);
187 $file = fopen(
'mocked_geolocation_data.txt',
'w');
195 $file = fopen(
'mocked_geolocation_data.txt',
'r');
201 foreach($geo_locations as $key => $row)
204 if($row[2] == $a_latitude && $row[3] == $a_longitude)
206 unset($geo_locations[$key]);
211 $file = fopen(
'mocked_geolocation_data.txt',
'w');
222 $file = fopen(
'mocked_geolocation_data.txt',
'r');
228 foreach($geo_locations as $key => $row)
233 if($now->diff($dt)->s >= 0)
235 unset($geo_locations[$key]);
240 $file = fopen(
'mocked_geolocation_data.txt',
'w');
250 $geo_locations = array();
251 while($row = fgetcsv($file)) $geo_locations[] = $row;
252 return $geo_locations;
260 foreach($list as $obj_data)
263 $write_string = $obj_data[0].
';'.$obj_data[1].
';'.$obj_data[2].
';'.$obj_data[3].
';'.$obj_data[4].
"\n";
264 fwrite($file, $write_string .
"\n");
getGeoLocationById(int $a_id)
Get a single geo location, identified by its id.
updateGeoLocation(ilGeoLocation $a_obj)
Update all attributes of a given geo location.
getExpirationAsTimestamp()
updateGeoLocationTimestampByCoordinates(float $a_searched_latitude, float $a_searched_longitude, \DateTimeImmutable $a_update_timestamp)
Example for updating multiple objects at once.
createGeoLocation(string $a_title, float $a_latitude, float $a_longitude, \DateTimeImmutable $a_expiration_timestamp)
Create a new geo location entry.
getGeoLocationsByCoordinates(float $a_latitude, float $a_longitude)
Example for reading an array of geo locations which have a given attribute.
writeGeoLocationListToFile($file, $list)
Protected function.
deleteGeoLocationsByCoordinates(float $a_latitude, float $a_longitude)
Example for a condition based deletion of multiple geo locations.
ifGeoLocationExistsById(int $a_id)
Example for checking if a geo location (one or more) with a given attribute exists.
deleteGeoLocation(int $a_id)
Delete single geo location identified by its id.
readFileAndReturnAsList($file)
Protected function.
ifAnyGeoLocationExistsByCoordinates(float $a_latitude, float $a_longitude)
Example for checking if a geo location (one or more) with a given attribute exists.
This code is just an example for the Repository Pattern! It is a basic interface to the 'ilGeoLocatio...
deleteExpiredGeoLocations()
Example for a condition based deletion of multiple geo locations.