Documentation
¶
Index ¶
- Constants
- type AddressComponents
- type DeviceDefinitionsAPIService
- type DrivlyAPIService
- type DrivlyVINSummary
- type DrivlyValuationService
- type GoogleGeoAPIService
- type MapsGeocodeResp
- type NATSService
- type Result
- type UserDeviceAPIService
- type UserDeviceDataAPIService
- type ValuationRequestData
- type VincarioAPIService
- type VincarioMarketValueResponse
- type VincarioValuationService
Constants ¶
View Source
const EstMilesPerYear = 12000.0
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddressComponents ¶
type DeviceDefinitionsAPIService ¶
type DeviceDefinitionsAPIService interface {
GetDeviceDefinitionByID(ctx context.Context, id string) (*pb.GetDeviceDefinitionItemResponse, error)
GetDeviceStyleByExternalID(ctx context.Context, id string) (*pb.DeviceStyle, error)
UpdateDeviceDefAttrs(ctx context.Context, deviceDef *pb.GetDeviceDefinitionItemResponse, vinInfo map[string]any) error
}
func NewDeviceDefinitionsAPIService ¶
func NewDeviceDefinitionsAPIService(ddConn *grpc.ClientConn) DeviceDefinitionsAPIService
type DrivlyAPIService ¶
type DrivlyAPIService interface {
GetVINInfo(vin string) (map[string]interface{}, error)
GetVINPricing(vin string, reqData *ValuationRequestData) (map[string]any, error)
GetOffersByVIN(vin string, reqData *ValuationRequestData) (map[string]interface{}, error)
GetAutocheckByVIN(vin string) (map[string]interface{}, error)
GetBuildByVIN(vin string) (map[string]interface{}, error)
GetCargurusByVIN(vin string) (map[string]interface{}, error)
GetCarvanaByVIN(vin string) (map[string]interface{}, error)
GetCarmaxByVIN(vin string) (map[string]interface{}, error)
GetCarstoryByVIN(vin string) (map[string]interface{}, error)
GetEdmundsByVIN(vin string) (map[string]interface{}, error)
GetTMVByVIN(vin string) (map[string]interface{}, error)
GetKBBByVIN(vin string) (map[string]interface{}, error)
GetVRoomByVIN(vin string) (map[string]interface{}, error)
GetExtendedOffersByVIN(vin string) (*DrivlyVINSummary, error)
}
func NewDrivlyAPIService ¶
func NewDrivlyAPIService(settings *config.Settings, dbs func() *db.ReaderWriter) DrivlyAPIService
type DrivlyVINSummary ¶
type DrivlyVINSummary struct {
Pricing map[string]interface{}
Offers map[string]interface{}
AutoCheck map[string]interface{}
Build map[string]interface{}
Cargurus map[string]interface{}
Carvana map[string]interface{}
Carmax map[string]interface{}
Carstory map[string]interface{}
Edmunds map[string]interface{}
TMV map[string]interface{}
KBB map[string]interface{}
VRoom map[string]interface{}
}
type DrivlyValuationService ¶
type DrivlyValuationService interface {
PullValuation(ctx context.Context, userDeiceID, deviceDefinitionID, vin string) (core.DataPullStatusEnum, error)
PullOffer(ctx context.Context, userDeviceID string) (core.DataPullStatusEnum, error)
}
func NewDrivlyValuationService ¶
func NewDrivlyValuationService(DBS func() *db.ReaderWriter, log *zerolog.Logger, settings *config.Settings, ddSvc DeviceDefinitionsAPIService, uddSvc UserDeviceDataAPIService, udSvc UserDeviceAPIService) DrivlyValuationService
type GoogleGeoAPIService ¶
type GoogleGeoAPIService interface {
GeoDecodeLatLong(lat, lng float64) (*MapsGeocodeResp, error)
}
func NewGoogleGeoAPIService ¶
func NewGoogleGeoAPIService(settings *config.Settings) GoogleGeoAPIService
type MapsGeocodeResp ¶
type NATSService ¶
type NATSService struct {
JetStream nats.JetStreamContext
JetStreamName string
ValuationSubject string
OfferSubject string
AckTimeout time.Duration
ValuationDurableConsumer string
OfferDurableConsumer string
// contains filtered or unexported fields
}
func NewNATSService ¶
type Result ¶
type Result struct {
Results []struct {
AddressComponents []AddressComponents `json:"address_components"`
} `json:"results"`
}
type UserDeviceAPIService ¶
type UserDeviceAPIService interface {
GetUserDevice(ctx context.Context, userDeviceID string) (*pb.UserDevice, error)
GetUserDeviceByEthAddr(ctx context.Context, ethAddr string) (*pb.UserDevice, error)
GetAllUserDevice(ctx context.Context, wmi string) ([]*pb.UserDevice, error)
UpdateUserDeviceMetadata(ctx context.Context, request *pb.UpdateUserDeviceMetadataRequest) error
GetUserDeviceOffers(ctx context.Context, userDeviceID string) (*core.DeviceOffer, error)
GetUserDeviceValuations(ctx context.Context, userDeviceID, countryCode string) (*core.DeviceValuation, error)
CanRequestInstantOffer(ctx context.Context, userDeviceID string) (bool, error)
LastRequestDidGiveError(ctx context.Context, userDeviceID string) (bool, error)
}
func NewUserDeviceService ¶
func NewUserDeviceService( devicesConn *grpc.ClientConn, dbs func() *db.ReaderWriter, logger *zerolog.Logger, ) UserDeviceAPIService
type UserDeviceDataAPIService ¶
type UserDeviceDataAPIService interface {
GetUserDeviceData(ctx context.Context, id string, ddID string) (*pb.UserDeviceDataResponse, error)
}
func NewUserDeviceDataAPIService ¶
func NewUserDeviceDataAPIService(ddConn *grpc.ClientConn) UserDeviceDataAPIService
type ValuationRequestData ¶
type VincarioAPIService ¶
type VincarioAPIService interface {
GetMarketValuation(vin string) (*VincarioMarketValueResponse, error)
}
func NewVincarioAPIService ¶
func NewVincarioAPIService(settings *config.Settings, log *zerolog.Logger) VincarioAPIService
type VincarioMarketValueResponse ¶
type VincarioMarketValueResponse struct {
Vin string `json:"vin"`
Vehicle struct {
Make string `json:"make"`
Model string `json:"model"`
ModelYear int `json:"model_year"`
Transmission string `json:"transmission"`
EngineDisplacementCcm int `json:"engine_displacement_ccm"`
FuelTypePrimary string `json:"fuel_type_primary"`
} `json:"vehicle"`
Period struct {
From string `json:"from"`
To string `json:"to"`
} `json:"period"`
MarketPrice struct {
PriceCount int `json:"price_count"`
PriceCurrency string `json:"price_currency"`
PriceBelow int `json:"price_below"`
PriceMedian int `json:"price_median"`
PriceAvg int `json:"price_avg"`
PriceAbove int `json:"price_above"`
PriceStdev int `json:"price_stdev"`
} `json:"market_price"`
MarketOdometer struct {
OdometerCount int `json:"odometer_count"`
OdometerUnit string `json:"odometer_unit"`
OdometerBelow int `json:"odometer_below"`
OdometerMedian int `json:"odometer_median"`
OdometerAvg int `json:"odometer_avg"`
OdometerAbove int `json:"odometer_above"`
OdometerStdev int `json:"odometer_stdev"`
} `json:"market_odometer"`
}
type VincarioValuationService ¶
type VincarioValuationService interface {
PullValuation(ctx context.Context, userDeiceID, deviceDefinitionID, vin string) (core.DataPullStatusEnum, error)
}
func NewVincarioValuationService ¶
func NewVincarioValuationService(DBS func() *db.ReaderWriter, log *zerolog.Logger, settings *config.Settings, udSvc UserDeviceAPIService) VincarioValuationService
Source Files
¶
Click to show internal directories.
Click to hide internal directories.