123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package domains
- import (
- "devel.mephi.ru/iacherepanov/openstack-gophercloud"
- "devel.mephi.ru/iacherepanov/openstack-gophercloud/pagination"
- )
- // ListOptsBuilder allows extensions to add additional parameters to
- // the List request
- type ListOptsBuilder interface {
- ToDomainListQuery() (string, error)
- }
- // ListOpts provides options to filter the List results.
- type ListOpts struct {
- // Enabled filters the response by enabled domains.
- Enabled *bool `q:"enabled"`
- // Name filters the response by domain name.
- Name string `q:"name"`
- }
- // ToDomainListQuery formats a ListOpts into a query string.
- func (opts ListOpts) ToDomainListQuery() (string, error) {
- q, err := gophercloud.BuildQueryString(opts)
- return q.String(), err
- }
- // List enumerates the domains to which the current token has access.
- func List(client *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager {
- url := listURL(client)
- if opts != nil {
- query, err := opts.ToDomainListQuery()
- if err != nil {
- return pagination.Pager{Err: err}
- }
- url += query
- }
- return pagination.NewPager(client, url, func(r pagination.PageResult) pagination.Page {
- return DomainPage{pagination.LinkedPageBase{PageResult: r}}
- })
- }
- // Get retrieves details on a single domain, by ID.
- func Get(client *gophercloud.ServiceClient, id string) (r GetResult) {
- _, r.Err = client.Get(getURL(client, id), &r.Body, nil)
- return
- }
- // CreateOptsBuilder allows extensions to add additional parameters to
- // the Create request.
- type CreateOptsBuilder interface {
- ToDomainCreateMap() (map[string]interface{}, error)
- }
- // CreateOpts provides options used to create a domain.
- type CreateOpts struct {
- // Name is the name of the new domain.
- Name string `json:"name" required:"true"`
- // Description is a description of the domain.
- Description string `json:"description,omitempty"`
- // Enabled sets the domain status to enabled or disabled.
- Enabled *bool `json:"enabled,omitempty"`
- }
- // ToDomainCreateMap formats a CreateOpts into a create request.
- func (opts CreateOpts) ToDomainCreateMap() (map[string]interface{}, error) {
- return gophercloud.BuildRequestBody(opts, "domain")
- }
- // Create creates a new Domain.
- func Create(client *gophercloud.ServiceClient, opts CreateOptsBuilder) (r CreateResult) {
- b, err := opts.ToDomainCreateMap()
- if err != nil {
- r.Err = err
- return
- }
- _, r.Err = client.Post(createURL(client), &b, &r.Body, &gophercloud.RequestOpts{
- OkCodes: []int{201},
- })
- return
- }
- // Delete deletes a domain.
- func Delete(client *gophercloud.ServiceClient, domainID string) (r DeleteResult) {
- _, r.Err = client.Delete(deleteURL(client, domainID), nil)
- return
- }
- // UpdateOptsBuilder allows extensions to add additional parameters to
- // the Update request.
- type UpdateOptsBuilder interface {
- ToDomainUpdateMap() (map[string]interface{}, error)
- }
- // UpdateOpts represents parameters to update a domain.
- type UpdateOpts struct {
- // Name is the name of the domain.
- Name string `json:"name,omitempty"`
- // Description is the description of the domain.
- Description string `json:"description,omitempty"`
- // Enabled sets the domain status to enabled or disabled.
- Enabled *bool `json:"enabled,omitempty"`
- }
- // ToUpdateCreateMap formats a UpdateOpts into an update request.
- func (opts UpdateOpts) ToDomainUpdateMap() (map[string]interface{}, error) {
- return gophercloud.BuildRequestBody(opts, "domain")
- }
- // Update modifies the attributes of a domain.
- func Update(client *gophercloud.ServiceClient, id string, opts UpdateOptsBuilder) (r UpdateResult) {
- b, err := opts.ToDomainUpdateMap()
- if err != nil {
- r.Err = err
- return
- }
- _, r.Err = client.Patch(updateURL(client, id), b, &r.Body, &gophercloud.RequestOpts{
- OkCodes: []int{200},
- })
- return
- }
|