1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/backend/model/database/LocationManager.ts

31 lines
853 B
TypeScript
Raw Normal View History

import {GPSMetadata} from '../../../common/entities/PhotoDTO';
2021-04-06 17:32:31 +08:00
import * as NodeGeocoder from 'node-geocoder';
import {LocationLookupException} from '../../exceptions/LocationLookupException';
import {LRU} from '../../../common/Utils';
export class LocationManager {
2021-04-06 17:32:31 +08:00
readonly geocoder: NodeGeocoder.Geocoder;
cache = new LRU<GPSMetadata>(100);
2021-04-06 17:32:31 +08:00
constructor() {
this.geocoder = NodeGeocoder({provider: 'openstreetmap'});
}
async getGPSData(text: string): Promise<GPSMetadata> {
2021-04-06 17:32:31 +08:00
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);
}
}