GithubHelp home page GithubHelp logo

Comments (3)

oschwald avatar oschwald commented on June 14, 2024 1

The reader doesn't panic. The panic is coming from your panic(err) call. The error is returned as the reader doesn't know about this database type. Assuming the database is similar to the MaxMind GeoLite2 ASN database, it could likely be added to that case in the switch statement:

case "GeoLite2-ASN":

from geoip2-golang.

mhf-ir avatar mhf-ir commented on June 14, 2024

Seems be this bug mapping from https://github.com/oschwald/maxminddb-golang

package main

import (
	"fmt"
	"log"
	"net"

	mmdb "github.com/oschwald/maxminddb-golang"
)

func main() {

	mmdbASN, err := mmdb.Open("dbip-asn.mmdb")
	if err != nil {
		panic(err)
	}
	ipParsed := net.ParseIP("1.1.1.1")
	var record interface{}
	err = mmdbASN.Lookup(ipParsed, &record)
	if err != nil {
		log.Panic(err)
	}
	fmt.Printf("%v", record)

	return
}

Output:

map[autonomous_system_number:13335 autonomous_system_organization:Cloudflare, Inc.]

from geoip2-golang.

mhf-ir avatar mhf-ir commented on June 14, 2024
fmt.Println(db.Metadata.DatabaseType)
// DBIP-ASN-Lite (compat=GeoLite2-ASN)

I think it's better using regex/match instead of switch. MaxMind is db structure and database information might be different if you build your own database.

https://github.com/maxmind/MaxMind-DB-Writer-perl

database_type         => 'My-Special-ASN-List-InOurCompany (compat=GeoLite2-ASN)',

from geoip2-golang.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.