mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
31 lines
853 B
TypeScript
31 lines
853 B
TypeScript
import {GPSMetadata} from '../../../common/entities/PhotoDTO';
|
|
import * as NodeGeocoder from 'node-geocoder';
|
|
import {LocationLookupException} from '../../exceptions/LocationLookupException';
|
|
import {LRU} from '../../../common/Utils';
|
|
|
|
export class LocationManager {
|
|
readonly geocoder: NodeGeocoder.Geocoder;
|
|
cache = new LRU<GPSMetadata>(100);
|
|
|
|
constructor() {
|
|
this.geocoder = NodeGeocoder({provider: 'openstreetmap'});
|
|
}
|
|
|
|
async getGPSData(text: string): Promise<GPSMetadata> {
|
|
if (!this.cache.get(text)) {
|
|
|
|
const ret = await this.geocoder.geocode(text);
|
|
if (ret.length < 1) {
|
|
throw new LocationLookupException('Cannot find location:' + text, text);
|
|
}
|
|
this.cache.set(text, {
|
|
latitude: ret[0].latitude,
|
|
longitude: ret[0].longitude
|
|
});
|
|
}
|
|
|
|
return this.cache.get(text);
|
|
}
|
|
|
|
}
|