Skip to content

Default user domain in password Auth v3 & discarded server error message in Auth #153

Open
@tmoinel

Description

@tmoinel

When migrating from OVH Keystone API v2.0 to v3 the Authenticate method return Bad Request which isn't very explicit. After debugging it, I see that the server respond with a json error message with the reason but is discarded by the client. We should maybe extend the error type to add the return messages and/or add an error field in v3AuthResponse. I can try to do a PR to add it if it make sens for the project but I have not a good knowledge of this code base.

Reading https://docs.openstack.org/keystone/pike/contributor/http-api.html and the server response :

{
  "error": {
      "message": "Expecting to find domain in user. The server could not comply with the request since it is either malformed or otherwise incorrect. The client is assumed to be in error.",
      "code": 400,
      "title": "Bad Request"
  }
}

I resolve my issue by setting swift.Connection.Domain to default.

I can't find if the user domain is mandatory in the protocol but if it is we should be set to default if it is not provided, like in the project scope

swift/auth_v3.go

Lines 225 to 227 in 017f012

default:
v3.Auth.Scope.Project.Domain = &v3Domain{Name: "Default"}
}

adding an else seems sufficient

swift/auth_v3.go

Lines 197 to 201 in 017f012

if c.Domain != "" {
domain = &v3Domain{Name: c.Domain}
} else if c.DomainId != "" {
domain = &v3Domain{Id: c.DomainId}
}

} else {
	domain = &v3Domain{Name: "Default"}
}

I can make a PR too.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions