Documentation ¶
Index ¶
- Constants
- func GetDefaultImageURL(dd models.DeviceDefinition) string
- func NewKeyedTransactorWithChainID(context context.Context, send sender.Sender, chainID *big.Int) (*bind.TransactOpts, error)
- func ParseSmartCarYears(yearsPtr *string) ([]int, error)
- type AutoIsoAPIService
- type AutoIsoVINResponse
- type DATGroupAPIService
- type DATGroupEquipment
- type DATGroupInfoResponse
- type DeviceDefinitionOnChainService
- type DeviceDefinitionTablelandModel
- type DeviceTypeAttribute
- type DrivlyAPIService
- type DrivlyVINResponse
- type FuelAPIService
- type FuelDeviceImages
- type FuelImage
- type IntegrationCapabilities
- type SmartCarCompatibilityData
- type SmartCarService
- type VincarioAPIService
- type VincarioInfoResponse
Constants ¶
const (
SmartCarVendor = "SmartCar"
)
Variables ¶
This section is empty.
Functions ¶
func GetDefaultImageURL ¶ added in v1.1.7
func GetDefaultImageURL(dd models.DeviceDefinition) string
func NewKeyedTransactorWithChainID ¶ added in v1.1.1
func ParseSmartCarYears ¶
ParseSmartCarYears parses out the years format in the smartcar document and returns an array of years
Types ¶
type AutoIsoAPIService ¶ added in v1.0.32
type AutoIsoAPIService interface {
GetVIN(vin string) (*AutoIsoVINResponse, error)
}
func NewAutoIsoAPIService ¶ added in v1.0.32
func NewAutoIsoAPIService(settings *config.Settings) AutoIsoAPIService
type AutoIsoVINResponse ¶ added in v1.0.32
type AutoIsoVINResponse struct { Version string `json:"version"` Vin string `json:"vin"` APIStatus string `json:"apiStatus"` ResponseDate string `json:"responseDate"` FunctionName string `json:"functionName"` FunctionResponse struct { Data struct { API struct { CoreVersion string `json:"core_version"` EndpointVersion int `json:"endpoint_version"` JSONVersion string `json:"json_version"` APIType string `json:"api_type"` APICache string `json:"api_cache"` DataPrecision int `json:"data_precision"` DataMatching string `json:"data_matching"` LexLang string `json:"lex_lang"` } `json:"api"` Analyze struct { VinOrginal struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"vin_orginal"` VinCorrected struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"vin_corrected"` VinYear struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"vin_year"` VinSerial struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"vin_serial"` Checkdigit struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"checkdigit"` } `json:"analyze"` Decoder struct { Make struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"make"` Model struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"model"` ModelYear struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"model_year"` Body struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"body"` FuelType struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"fuel_type"` VehicleType struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"vehicle_type"` Doors struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"doors"` EngineDisplCm3 struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_displ_cm3"` EngineDisplL struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_displ_l"` EnginePowerHp struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_power_hp"` EnginePowerKw struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_power_kw"` EngineConf struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_conf"` EngineType struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_type"` EngineVersion struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_version"` EngineHead struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_head"` EngineValves struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_valves"` EngineCylinders struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_cylinders"` EngineDisplCid struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_displ_cid"` EngineTurbo struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"engine_turbo"` DriveType struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"drive_type"` GearboxType struct { Desc string `json:"desc"` Value string `json:"value"` } `json:"gearbox_type"` EmissionStd struct { Desc string `json:"desc"` Value string `json:"value"` Co2Gkm string `json:"co2_gkm"` } `json:"emission_std"` } `json:"decoder"` } `json:"data"` } `json:"functionResponse"` LicenseInfo struct { LicenseNumber string `json:"licenseNumber"` ValidTo string `json:"validTo"` RemainingCredits int `json:"remainingCredits"` RemainingMonthlyLimit int `json:"remainingMonthlyLimit"` RemainingDailyLimit int `json:"remainingDailyLimit"` } `json:"licenseInfo"` }
func (*AutoIsoVINResponse) GetStyle ¶ added in v1.0.32
func (v *AutoIsoVINResponse) GetStyle() string
GetStyle returns a standard style string built from the data we have
func (*AutoIsoVINResponse) GetSubModel ¶ added in v1.0.32
func (v *AutoIsoVINResponse) GetSubModel() string
GetSubModel returns the Body type, which we can use as the sub model.
type DATGroupAPIService ¶ added in v1.1.0
type DATGroupAPIService interface {
GetVINv2(vin string, country string) (*DATGroupInfoResponse, error)
}
func NewDATGroupAPIService ¶ added in v1.1.0
func NewDATGroupAPIService(settings *config.Settings, logger *zerolog.Logger) DATGroupAPIService
type DATGroupEquipment ¶ added in v1.2.18
type DATGroupInfoResponse ¶ added in v1.2.18
type DATGroupInfoResponse struct { VIN string `json:"vin"` DatECode string `json:"datecode"` SalesDescription string `json:"salesDescription"` VehicleTypeName string `json:"vehicleTypeName"` // make ManufacturerName string `json:"manufacturerName"` BaseModelName string `json:"baseModelName"` SubModelName string `json:"subModelName"` // this is the model name we want to use MainTypeGroupName string `json:"mainTypeGroupName"` VinAccuracy int `json:"vinAccuracy"` // when we're unable to get exact year YearLow int `json:"yearLow"` YearHigh int `json:"yearHigh"` // we don't always get the exact year Year int `json:"year"` SeriesEquipment []DATGroupEquipment `json:"seriesEquipment"` SpecialEquipment []DATGroupEquipment `json:"specialEquipment"` DATECodeEquipment []DATGroupEquipment `json:"datECodeEquipment"` VINEquipment []DATGroupEquipment `json:"vinEquipments"` }
type DeviceDefinitionOnChainService ¶ added in v1.1.1
type DeviceDefinitionOnChainService interface { GetDeviceDefinitionByID(ctx context.Context, manufacturerID types.NullDecimal, ID string) (*models.DeviceDefinition, error) GetDeviceDefinitions(ctx context.Context, manufacturerID types.NullDecimal, ID string, model string, year int, pageIndex, pageSize int32) ([]*models.DeviceDefinition, error) CreateOrUpdate(ctx context.Context, make models.DeviceMake, dd models.DeviceDefinition) (*string, error) }
type DeviceDefinitionTablelandModel ¶ added in v1.1.1
type DeviceDefinitionTablelandModel struct { ID string `json:"id"` KSUID string `json:"ksuid"` Model string `json:"model"` Year int16 `json:"year"` DeviceType string `yaml:"deviceType"` Metadata struct { DeviceAttributes []struct { Name string `json:"name"` Value string `json:"value,omitempty"` } `json:"device_attributes"` } `json:"metadata"` }
type DeviceTypeAttribute ¶ added in v1.1.1
func GetDeviceAttributesTyped ¶ added in v1.1.1
func GetDeviceAttributesTyped(metadata null.JSON, key string) []DeviceTypeAttribute
type DrivlyAPIService ¶ added in v0.6.8
type DrivlyAPIService interface {
GetVINInfo(vin string) (*DrivlyVINResponse, error)
}
func NewDrivlyAPIService ¶ added in v0.6.8
func NewDrivlyAPIService(settings *config.Settings) DrivlyAPIService
type DrivlyVINResponse ¶ added in v0.8.5
type DrivlyVINResponse struct { Vin string `json:"vin"` WindowSticker string `json:"windowSticker"` Year string `json:"year"` Make string `json:"make"` Model string `json:"model"` SubModel string `json:"subModel"` Trim string `json:"trim"` Generation int `json:"generation"` SubGeneration int `json:"subGeneration"` ManufacturerCode string `json:"manufacturerCode"` Body string `json:"body"` Style string `json:"style"` Type string `json:"type"` Drive string `json:"drive"` Transmission string `json:"transmission"` TransmissionDetails string `json:"transmissionDetails"` Engine string `json:"engine"` EngineDetails string `json:"engineDetails"` Doors int `json:"doors"` PaintColor string `json:"paintColor"` PaintName string `json:"paintName"` PaintCode string `json:"paintCode"` Interior string `json:"interior"` Options []string `json:"options"` OptionCodes string `json:"optionCodes"` MsrpBase float64 `json:"msrpBase"` MsrpDiscount float64 `json:"msrpDiscount"` MsrpOptions float64 `json:"msrpOptions"` MsrpDelivery float64 `json:"msrpDelivery"` Msrp float64 `json:"msrp"` WarrantyBasicMonths int `json:"warrantyBasicMonths"` WarrantyCorrosionMonths int `json:"warrantyCorrosionMonths"` WarrantyEmissionsMonths int `json:"warrantyEmissionsMonths"` WarrantyFullMonths int `json:"warrantyFullMonths"` WarrantyFullMiles int `json:"warrantyFullMiles"` WarrantyDrivetrainMonths int `json:"warrantyDrivetrainMonths"` WarrantyPowertrainMonths int `json:"warrantyPowertrainMonths"` WarrantyPowertrainMiles int `json:"warrantyPowertrainMiles"` WarrantyRoadsideMonths int `json:"warrantyRoadsideMonths"` WarrantyRoadsideMiles int `json:"warrantyRoadsideMiles"` Wheelbase string `json:"wheelbase"` Fuel string `json:"fuel"` FuelTankCapacityGal float64 `json:"fuelTankCapacityGal"` Mpg int `json:"mpg"` MpgCity int `json:"mpgCity"` MpgHighway int `json:"mpgHighway"` LastOdometer int `json:"lastOdometer"` LastOdometerDate string `json:"lastOdometerDate"` EstimatedOdometer int `json:"estimatedOdometer"` Salvage bool `json:"salvage"` PreviousOwners int `json:"previousOwners"` TotalLoss bool `json:"totalLoss"` Branded bool `json:"branded"` LastTitleState string `json:"lastTitleState"` TitleIssueDate string `json:"titleIssueDate"` TitleNumber string `json:"titleNumber"` Confidence float64 `json:"confidence"` VehicleHistory []string `json:"vehicleHistory"` InstalledEquipment []string `json:"installedEquipment"` Dimensions []string `json:"dimensions"` }
func (*DrivlyVINResponse) GetExternalID ¶ added in v0.8.5
func (vir *DrivlyVINResponse) GetExternalID() string
GetExternalID builds something we can use as an external ID that is drivly specific, at the MMY level (not for style)
type FuelAPIService ¶ added in v0.9.8
type FuelAPIService interface {
FetchDeviceImages(mk, mdl string, yr int, prodID int, prodFormat int) (FuelDeviceImages, error)
}
func NewFuelAPIService ¶ added in v0.9.8
func NewFuelAPIService(settings *config.Settings, logger *zerolog.Logger) FuelAPIService
type FuelDeviceImages ¶ added in v0.9.8
type FuelDeviceImages struct { FuelAPIID string `boil:"fuelID"` Width int `boil:"width"` Height int `boil:"height"` Angle string `boil:"angle"` Images []FuelImage `boil:"images"` // use to track if we used a different year image and could not find this one NotExactImage bool // contains filtered or unexported fields }
type IntegrationCapabilities ¶
type IntegrationCapabilities struct { Location bool `json:"location"` Odometer bool `json:"odometer"` LockUnlock bool `json:"lock_unlock"` EVBattery bool `json:"ev_battery"` EVChargingStatus bool `json:"ev_charging_status"` EVStartStopCharge bool `json:"ev_start_stop_charge"` FuelTank bool `json:"fuel_tank"` TirePressure bool `json:"tire_pressure"` EngineOilLife bool `json:"engine_oil_life"` VehicleAttributes bool `json:"vehicle_attributes"` VIN bool `json:"vin"` }
IntegrationCapabilities gets stored on the association table btw a device_definition and the integrations, device_integrations
type SmartCarCompatibilityData ¶
type SmartCarCompatibilityData struct { ComponentChunkName string `json:"componentChunkName"` Path string `json:"path"` Result struct { Data struct { AllMakesTable struct { Edges []struct { Node struct { CompatibilityData map[string][]struct { Name string `json:"name"` Headers []struct { Text string `json:"text"` Tooltip *string `json:"tooltip"` } `json:"headers"` Rows [][]struct { Color *string `json:"color"` Subtext *string `json:"subtext"` Text *string `json:"text"` Type *string `json:"type"` VehicleType *string `json:"vehicleType"` } `json:"rows"` } `json:"compatibilityData"` } `json:"node"` } `json:"edges"` } `json:"allMakesTable"` } `json:"data"` } `json:"result"` }
type SmartCarService ¶
type SmartCarService interface { GetOrCreateSmartCarIntegration(ctx context.Context) (string, error) GetSmartCarVehicleData() (*SmartCarCompatibilityData, error) }
func NewSmartCarService ¶
func NewSmartCarService(dbs func() *db.ReaderWriter, logger zerolog.Logger) SmartCarService
type VincarioAPIService ¶ added in v0.7.9
type VincarioAPIService interface {
DecodeVIN(vin string) (*VincarioInfoResponse, error)
}
func NewVincarioAPIService ¶ added in v0.7.9
func NewVincarioAPIService(settings *config.Settings, log *zerolog.Logger) VincarioAPIService
type VincarioInfoResponse ¶ added in v0.7.9
type VincarioInfoResponse struct { VIN string `key:"VIN"` VehicleID int `key:"Vehicle ID"` Make string `key:"Make"` Model string `key:"Model"` ModelYear int `key:"Model Year"` ProductType string `key:"Product Type"` Body string `key:"Body"` Series string `key:"Series"` Drive string `key:"Drive"` EngineDisplacement int `key:"Engine Displacement (ccm)"` FuelType string `key:"Fuel Type - Primary"` EngineCode string `key:"Engine Code"` Transmission string `key:"Transmission"` NumberOfGears int `key:"Number of Gears"` EmissionStandard string `key:"Emission Standard"` PlantCountry string `key:"Plant Country"` ProductionStopped int `key:"Production Stopped"` EngineManufacturer string `key:"Engine Manufacturer"` EngineType string `key:"Engine Type"` AverageCO2Emission float64 `key:"Average CO2 Emission (g/km)"` NumberOfWheels int `key:"Number Wheels"` NumberOfAxles int `key:"Number of Axles"` NumberOfDoors int `key:"Number of Doors"` FrontBrakes string `key:"Front Brakes"` RearBrakes string `key:"Rear Brakes"` BrakeSystem string `key:"Brake System"` SteeringType string `key:"Steering Type"` WheelSize string `key:"Wheel Size"` WheelSizeArray []string `key:"Wheel Size Array"` Wheelbase int `key:"Wheelbase (mm)"` WheelbaseArray []int `key:"Wheelbase Array (mm)"` Height int `key:"Height (mm)"` Length int `key:"Length (mm)"` Width int `key:"Width (mm)"` RearOverhang int `key:"Rear Overhang (mm)"` FrontOverhang int `key:"Front Overhang (mm)"` TrackFront int `key:"Track Front (mm)"` TrackRear int `key:"Track Rear (mm)"` MaxSpeed int `key:"Max Speed (km/h)"` WeightEmpty int `key:"Weight Empty (kg)"` MaxWeight int `key:"Max Weight (kg)"` MaxRoofLoad int `key:"Max roof load (kg)"` TrailerLoadWithoutBrakes int `key:"Permitted trailer load without brakes (kg)"` CheckDigit string `key:"Check Digit"` SequentialNumber string `key:"Sequential Number"` }
func (*VincarioInfoResponse) GetMetadata ¶ added in v1.0.0
func (v *VincarioInfoResponse) GetMetadata() (null.JSON, error)
GetMetadata returns a map of metadata for the vehicle, in standard format.
func (*VincarioInfoResponse) GetStyle ¶ added in v0.7.9
func (v *VincarioInfoResponse) GetStyle() string
GetStyle returns a standard style string built from the data we have
func (*VincarioInfoResponse) GetSubModel ¶ added in v0.7.9
func (v *VincarioInfoResponse) GetSubModel() string
GetSubModel returns the Body type from Vincario, which we can use as the sub model.