Skip to content

Commit

Permalink
Merge pull request #225 from sunnydanu/feat(new-tool)--ip-geolocation
Browse files Browse the repository at this point in the history
feat(new-tool):-ip-geolocation
  • Loading branch information
sunnydanu authored Nov 3, 2024
2 parents 035e2c3 + a986de3 commit 62d61cc
Show file tree
Hide file tree
Showing 4 changed files with 136 additions and 1 deletion.
3 changes: 3 additions & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ declare module '@vue/runtime-core' {
ImageResizer: typeof import('./src/tools/image-resizer/image-resizer.vue')['default']
InputCopyable: typeof import('./src/components/InputCopyable.vue')['default']
IntegerBaseConverter: typeof import('./src/tools/integer-base-converter/integer-base-converter.vue')['default']
IpGeoLocation: typeof import('./src/tools/ip-geo-location/ip-geo-location.vue')['default']
Ipv4AddressConverter: typeof import('./src/tools/ipv4-address-converter/ipv4-address-converter.vue')['default']
Ipv4RangeExpander: typeof import('./src/tools/ipv4-range-expander/ipv4-range-expander.vue')['default']
Ipv4SubnetCalculator: typeof import('./src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue')['default']
Expand Down Expand Up @@ -153,6 +154,7 @@ declare module '@vue/runtime-core' {
MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default']
MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default']
MultiLinkDownloader: typeof import('./src/tools/multi-link-downloader/multi-link-downloader.vue')['default']
NA: typeof import('naive-ui')['NA']
NAlert: typeof import('naive-ui')['NAlert']
NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default']
NButton: typeof import('naive-ui')['NButton']
Expand Down Expand Up @@ -180,6 +182,7 @@ declare module '@vue/runtime-core' {
NLayout: typeof import('naive-ui')['NLayout']
NLayoutSider: typeof import('naive-ui')['NLayoutSider']
NMenu: typeof import('naive-ui')['NMenu']
NP: typeof import('naive-ui')['NP']
NProgress: typeof import('naive-ui')['NProgress']
NScrollbar: typeof import('naive-ui')['NScrollbar']
NSelect: typeof import('naive-ui')['NSelect']
Expand Down
6 changes: 5 additions & 1 deletion src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { tool as asciiTextDrawer } from './ascii-text-drawer';
import { tool as textToUnicode } from './text-to-unicode';
import { tool as gzipConverter } from './gzip-converter';
import { tool as ocrImage } from './ocr-image';
import { tool as ipGeoLocation } from './ip-geo-location';
import { tool as safelinkDecoder } from './safelink-decoder';
import { tool as xmlToJson } from './xml-to-json';
import { tool as jsonToXml } from './json-to-xml';
Expand Down Expand Up @@ -177,7 +178,9 @@ export const toolsByCategory: ToolCategory[] = [
qrCodeGenerator,
wifiQrCodeGenerator,
svgPlaceholderGenerator,
cameraRecorder, imageResizer, ocrImage,
cameraRecorder,
imageResizer,
ocrImage,
imageExifReader,
],
},
Expand Down Expand Up @@ -213,6 +216,7 @@ export const toolsByCategory: ToolCategory[] = [
macAddressGenerator,
ipv6UlaGenerator,
dnsQueries,
ipGeoLocation,
],
},
{
Expand Down
12 changes: 12 additions & 0 deletions src/tools/ip-geo-location/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { World } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
name: 'IP Geo Location',
path: '/ip-geo-location',
description: 'Retrieve information about an IPv4/6 address or domain location',
keywords: ['ip', 'domain', 'geo', 'location'],
component: () => import('./ip-geo-location.vue'),
icon: World,
createdAt: new Date('2024-01-17'),
});
116 changes: 116 additions & 0 deletions src/tools/ip-geo-location/ip-geo-location.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<script setup lang="ts">
import type { CKeyValueListItems } from '@/ui/c-key-value-list/c-key-value-list.types';
const ip = ref('8.8.8.8');
const errorMessage = ref('');
const fields: Array<{ field: string; name: string }> = [
{ field: 'ip', name: 'IP' },
{ field: 'hostname', name: 'Host Name' },
{ field: 'country', name: 'Country Code' },
{ field: 'region', name: 'Region/state Code' },
{ field: 'city', name: 'City' },
{ field: 'postal', name: 'Postal Code' },
{ field: 'loc', name: 'Latitude/Longitude' },
{ field: 'timezone', name: 'Timezone' },
{ field: 'org', name: 'Organization Name' },
];
const geoInfos = ref<CKeyValueListItems>([]);
const geoInfosData = ref<{
loc?: string
}>({});
const status = ref<'pending' | 'error' | 'success'>('pending');
const token = useStorage('ip-geoloc:token', '');
const openStreetMapUrl = computed(
() => {
const [gpsLatitude, gpsLongitude] = geoInfosData.value.loc?.split(',') || [];
return gpsLatitude && gpsLongitude ? `https://www.openstreetmap.org/?mlat=${gpsLatitude}&mlon=${gpsLongitude}#map=18/${gpsLatitude}/${gpsLongitude}` : undefined;
},
);
async function onGetInfos() {
try {
status.value = 'pending';
const geoInfoQueryResponse = await fetch(
token.value !== ''
? `https://ipinfo.io/${ip.value}/json?token=${token.value}`
: `https://ipinfo.io/${ip.value}/json`);
if (!geoInfoQueryResponse.ok) {
throw geoInfoQueryResponse.statusText;
}
const data = await geoInfoQueryResponse.json();
const allGeoInfos = [];
for (const field of fields) {
if (data[field.field]) {
allGeoInfos.push({
label: field.name,
value: data[field.field],
});
}
}
status.value = 'success';
geoInfos.value = allGeoInfos;
geoInfosData.value = data;
}
catch (e: any) {
errorMessage.value = e.toString();
status.value = 'error';
return [];
}
}
</script>

<template>
<div>
<div flex items-center gap-2>
<c-input-text
v-model:value="ip"
placeholder="Enter an IPv4/6"
@update:value="() => { status = 'pending' }"
/>
<c-button align-center @click="onGetInfos">
Get GEO Location Infos
</c-button>
</div>

<details mt-2>
<summary>Optional ipinfo.io token</summary>
<c-input-text
v-model:value="token"
placeholder="Optional ipinfo.io token"
@update:value="() => { status = 'pending' }"
/>
<n-p>
<n-a href="https://ipinfo.io/">
Signup for a free token
</n-a>
</n-p>
</details>

<n-divider />

<c-card v-if="status === 'pending'" mt-5>
Click on button above to get latest infos
</c-card>

<c-card v-if="status === 'success' && openStreetMapUrl" mt-4>
<c-button :href="openStreetMapUrl" target="_blank">
Localize on Open Street Map
</c-button>
</c-card>

<c-card v-if="status === 'success'" mt-5>
<c-key-value-list :items="geoInfos" />
</c-card>

<n-alert v-if="status === 'error'" title="Errors occured" type="error" mt-5>
{{ errorMessage }}
</n-alert>
</div>
</template>

0 comments on commit 62d61cc

Please sign in to comment.