devicedetector

package module
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 13, 2022 License: LGPL-3.0 Imports: 4 Imported by: 0

README

device-detector-go

GitHub issues GitHub stars GitHub license

Device-detector-go is a precise user agent parser and device detector written in Golang, backed by the largest and most up-to-date open-source user agent database and library written js.

Device-detector-go will parse any user agent and detect the browser, operating system, device used (desktop, tablet, mobile, tv, cars, console, etc.), brand and model. Works with go and in the browser.

This library uses [device-detector-js](https://github.com/etienne-martin/device-detector-js) and originial library maintainer says;
This library is heavily tested and relies on over 10,000 tests to detect thousands of user agent strings, even from rare and obscure browsers and devices.

This is a go port of device-detector-js (uses this library in v8 engine directly and exports logics) and relatively based on Matomo device-detector rules

Why this project

There is too many go user agent parsers, but none of them has powerful rules as Matomo device-detector and there is only one golang port of matomo (detector gamebtc/devicedetector), but this one works heavy like 40ms. This is too much. This projects aim is using speed of the nodejs repo. And not implement the go version from scratch.

Getting Started

Installation

To use device-detector-go in your project, run:

go get github.com/umutbasal/device-detector-go
Usage
GO import
import (
 device detector "github.com/umutbasal/device-detector-go"
)

Example - user agent detection:

import (
 devicedetector "github.com/umutbasal/device-detector-go"
)

func main() {
 userAgent := "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36"
 detector, err := devicedetector.NewDeviceDetector(devicedetector.DeviceDetectorOptions{})
 if err != nil {
  panic(err)
 }
 result, err := detector.Parse(user)
 if err != nil {
  panic(err)
 }

 fmt.Printf("%s\n", result)
 
}

Output:

{
  "client": {
    "type": "browser",
    "name": "Chrome",
    "version": "69.0",
    "engine": "Blink",
    "engineVersion": ""
  },
  "os": {
    "name": "Mac",
    "version": "10.13",
    "platform": ""
  },
  "device": {
    "type": "desktop",
    "brand": "Apple",
    "model": ""
  },
  "bot": null
}

Example - bot detection:

import (
 devicedetector "github.com/umutbasal/device-detector-go"
)

func main() {
 userAgent := "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36"
 detector, err := devicedetector.NewBotDetector(devicedetector.DeviceDetectorOptions{})
 if err != nil {
  panic(err)
 }
 result, err := detector.Parse(user)
 if err != nil {
  panic(err)
 }

 fmt.Printf("%s\n", result)
 
 
}

Output:

```json
{
  "name": "Googlebot",
  "category": "Search bot",
  "url": "http://www.google.com/bot.html",
  "producer": {
    "name": "Google Inc.",
    "url": "http://www.google.com"
  }
}

What device-detector-go is able to detect

There is a list in original js repo

Built with

Contributing

When contributing to this project, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Update the README.md with details of changes to the library.

Execute go test -v and update the tests if needed.

License

This is a free/libre library under license LGPL v3 or later.

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BotResult

type BotResult struct {
	Name     string `json:"name"`
	Category string `json:"category"`
	URL      string `json:"url"`
	Producer struct {
		Name string `json:"name"`
		URL  string `json:"url"`
	} `json:"producer"`
}

type ClientResult

type ClientResult struct {
	Name          string `json:"name"`
	Version       string `json:"version"`
	Engine        string `json:"engine"`
	EngineVersion string `json:"engineVersion"`
	Type          string `json:"type"`
	URL           string `json:"url"`
}

type DeviceDetectorOptions

type DeviceDetectorOptions struct {
	SkipBotDetection  bool
	VersionTruncation VersionTruncation
}

type DeviceDetectorResult

type DeviceDetectorResult struct {
	Client ClientResult          `json:"client"`
	Device DeviceResult          `json:"device"`
	OS     OperatingSystemResult `json:"os"`
	Bot    BotResult             `json:"bot"`
}

type DeviceResult

type DeviceResult struct {
	Type  DeviceType `json:"type"`
	Brand string     `json:"brand"`
	Model string     `json:"model"`
}

type DeviceType

type DeviceType string
const (
	DeviceTypeDesktop             DeviceType = "desktop"
	DeviceTypeSmartphone          DeviceType = "smartphone"
	DeviceTypeTablet              DeviceType = "tablet"
	DeviceTypeTelevision          DeviceType = "television"
	DeviceTypeSmartDisplay        DeviceType = "smart display"
	DeviceTypeCamera              DeviceType = "camera"
	DeviceTypeCar                 DeviceType = "car"
	DeviceTypeConsole             DeviceType = "console"
	DeviceTypePortableMediaPlayer DeviceType = "portable media player"
	DeviceTypePhablet             DeviceType = "phablet"
	DeviceTypeWearable            DeviceType = "wearable"
	DeviceTypeSmartSpeaker        DeviceType = "smart speaker"
	DeviceTypeFeaturePhone        DeviceType = "feature phone"
	DeviceTypePeripheral          DeviceType = "peripheral"
)

type OperatingSystemResult

type OperatingSystemResult struct {
	Name     string `json:"name"`
	Version  string `json:"version"`
	Platform string `json:"platform"`
}

type Parser

type Parser struct {
	Parse func(userAgent string) (result interface{}, err error)
	// contains filtered or unexported fields
}

Parser is a device detector parser.

func NewBotDetector

func NewBotDetector(options DeviceDetectorOptions) (parser Parser, err error)

NewBotDetector creates a new bot detector with options.

func NewDeviceDetector

func NewDeviceDetector(options DeviceDetectorOptions) (parser Parser, err error)

NewDeviceDetector creates a new device detector.

Example

ExampleDeviceDetector shows how to use the device detector.

userAgent := "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36"
detector, err := NewDeviceDetector(DeviceDetectorOptions{})
if err != nil {
	fmt.Printf("failed to create device detector: %v", err)
}
result, err := detector.Parse(userAgent)
if err != nil {
	fmt.Printf("failed to parse user agent: %v", err)
}
if result == nil {
	fmt.Printf("result is nil")
}
if result == "" {
	fmt.Printf("result is empty")
}
fmt.Printf("%s\n", result)
Output:

{"client":{"type":"browser","name":"Chrome Mobile","version":"41.0","engine":"Blink","engineVersion":""},"os":{"name":"Android","version":"6.0","platform":""},"device":{"type":"smartphone","brand":"Google","model":"Nexus 5X"},"bot":null}

func NewDeviceParser

func NewDeviceParser(options DeviceDetectorOptions) (parser Parser)

NewDeviceParser creates a new device parser with options

func NewOperatingSystemParser

func NewOperatingSystemParser() (parser Parser)

NewOperatingSystemParser creates a new operating system parser.

func NewVendorFragmentParser

func NewVendorFragmentParser() (parser Parser)

NewVendorFragmentParser creates a new vendor fragment parser.

type VersionTruncation

type VersionTruncation int
const (
	VC VersionTruncation = iota
	VC1
	VC2
	VC3
)

Directories

Path Synopsis
examples

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL