webfonts

package
v0.174.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: BSD-3-Clause Imports: 16 Imported by: 4

Documentation

Overview

Package webfonts provides access to the Web Fonts Developer API.

For product documentation, see: https://developers.google.com/fonts/docs/developer_api

Library status

These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.

When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/webfonts/v1"
...
ctx := context.Background()
webfontsService, err := webfonts.NewService(ctx)

In this example, Google Application Default Credentials are used for authentication. For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

To use an API key for authentication (note: some APIs do not support API keys), use google.golang.org/api/option.WithAPIKey:

webfontsService, err := webfonts.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}
// ...
token, err := config.Exchange(ctx, ...)
webfontsService, err := webfonts.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

See google.golang.org/api/option.ClientOption for details on options.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Axis added in v0.120.0

type Axis struct {
	// End: maximum value
	End float64 `json:"end,omitempty"`

	// Start: minimum value
	Start float64 `json:"start,omitempty"`

	// Tag: tag name.
	Tag string `json:"tag,omitempty"`

	// ForceSendFields is a list of field names (e.g. "End") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "End") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Axis: Metadata for a variable font axis.

func (*Axis) MarshalJSON added in v0.120.0

func (s *Axis) MarshalJSON() ([]byte, error)

func (*Axis) UnmarshalJSON added in v0.120.0

func (s *Axis) UnmarshalJSON(data []byte) error

type Service

type Service struct {
	BasePath  string // API endpoint base URL
	UserAgent string // optional additional User-Agent fragment

	Webfonts *WebfontsService
	// contains filtered or unexported fields
}

func New deprecated

func New(client *http.Client) (*Service, error)

New creates a new Service. It uses the provided http.Client for requests.

Deprecated: please use NewService instead. To provide a custom HTTP client, use option.WithHTTPClient. If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.

func NewService added in v0.3.0

func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error)

NewService creates a new Service.

type Webfont

type Webfont struct {
	// Axes: Axis for variable fonts.
	Axes []*Axis `json:"axes,omitempty"`

	// Category: The category of the font.
	Category string `json:"category,omitempty"`

	// Family: The name of the font.
	Family string `json:"family,omitempty"`

	// Files: The font files (with all supported scripts) for each one of
	// the available variants, as a key : value map.
	Files map[string]string `json:"files,omitempty"`

	// Kind: This kind represents a webfont object in the webfonts service.
	Kind string `json:"kind,omitempty"`

	// LastModified: The date (format "yyyy-MM-dd") the font was modified
	// for the last time.
	LastModified string `json:"lastModified,omitempty"`

	// Menu: Font URL for menu subset, a subset of the font that is enough
	// to display the font name
	Menu string `json:"menu,omitempty"`

	// Subsets: The scripts supported by the font.
	Subsets []string `json:"subsets,omitempty"`

	// Variants: The available variants for the font.
	Variants []string `json:"variants,omitempty"`

	// Version: The font version.
	Version string `json:"version,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Axes") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Axes") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Webfont: Metadata describing a family of fonts.

func (*Webfont) MarshalJSON

func (s *Webfont) MarshalJSON() ([]byte, error)

type WebfontList

type WebfontList struct {
	// Items: The list of fonts currently served by the Google Fonts API.
	Items []*Webfont `json:"items,omitempty"`

	// Kind: This kind represents a list of webfont objects in the webfonts
	// service.
	Kind string `json:"kind,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Items") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Items") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

WebfontList: Response containing the list of fonts currently served by the Google Fonts API.

func (*WebfontList) MarshalJSON

func (s *WebfontList) MarshalJSON() ([]byte, error)

type WebfontsListCall

type WebfontsListCall struct {
	// contains filtered or unexported fields
}

func (*WebfontsListCall) Capability added in v0.120.0

func (c *WebfontsListCall) Capability(capability ...string) *WebfontsListCall

Capability sets the optional parameter "capability": Controls the font urls in `Webfont.files`, by default, static ttf fonts are sent.

Possible values:

"CAPABILITY_UNSPECIFIED" - Default means static ttf fonts.
"WOFF2" - Use WOFF2(Compressed)instead of ttf.
"VF" - Prefer variable font files instead of static fonts

instantiated at standard weights.

func (*WebfontsListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*WebfontsListCall) Do

Do executes the "webfonts.webfonts.list" call. Exactly one of *WebfontList or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *WebfontList.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*WebfontsListCall) Family added in v0.120.0

func (c *WebfontsListCall) Family(family ...string) *WebfontsListCall

Family sets the optional parameter "family": Filters by Webfont.family, using literal match. If not set, returns all families

func (*WebfontsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*WebfontsListCall) Header

func (c *WebfontsListCall) Header() http.Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*WebfontsListCall) IfNoneMatch

func (c *WebfontsListCall) IfNoneMatch(entityTag string) *WebfontsListCall

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*WebfontsListCall) Sort

func (c *WebfontsListCall) Sort(sort string) *WebfontsListCall

Sort sets the optional parameter "sort": Enables sorting of the list.

Possible values:

"SORT_UNDEFINED" - No sorting specified, use the default sorting

method.

"ALPHA" - Sort alphabetically
"DATE" - Sort by date added
"POPULARITY" - Sort by popularity
"STYLE" - Sort by number of styles
"TRENDING" - Sort by trending

func (*WebfontsListCall) Subset added in v0.120.0

func (c *WebfontsListCall) Subset(subset string) *WebfontsListCall

Subset sets the optional parameter "subset": Filters by Webfont.subset, if subset is found in Webfont.subsets. If not set, returns all families.

type WebfontsService

type WebfontsService struct {
	// contains filtered or unexported fields
}

func NewWebfontsService

func NewWebfontsService(s *Service) *WebfontsService

func (*WebfontsService) List

func (r *WebfontsService) List() *WebfontsListCall

List: Retrieves the list of fonts currently served by the Google Fonts Developer API.

Jump to

Keyboard shortcuts

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