Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allowing disabling percent encoding for some HTTP header fields #529

Open
zunda-pixel opened this issue Feb 17, 2024 · 10 comments
Open

Allowing disabling percent encoding for some HTTP header fields #529

zunda-pixel opened this issue Feb 17, 2024 · 10 comments
Labels
area/generator Affects: plugin, CLI, config file. area/openapi Adding/updating a feature defined in OpenAPI. area/runtime Affects: the runtime library. kind/usability Usability of generated code, ergonomics.
Milestone

Comments

@zunda-pixel
Copy link

Question

I want to redirect to domain2.com from domain1.com.

I can redirect same domain.
ex: fromdomain1.com/login to domain1.com/account.

responses:
  '303':
    headers:
      location:
        schema:
          type: string
func login(_ input: Operations.login.Input) async throws -> Operations.login.Output {
  // login
  return .seeOther(.init(headers: .init(location: "https:/example2.com")))
}
@zunda-pixel zunda-pixel added kind/support Adopter support requests. status/triage Collecting information required to triage the issue. labels Feb 17, 2024
@czechboy0
Copy link
Collaborator

Hi @zunda-pixel,

just to confirm, you're writing a server here, right? You can return a completely arbitrary URL in the response's Location header, can you clarify why you say you can't redirect to a different domain?

@zunda-pixel
Copy link
Author

zunda-pixel commented Feb 17, 2024

Yes, I am writing a server.

Base url is keeping...

http://127.0.0.1:8080/login -> http://127.0.0.1:8080/https%3A%2F%2Fexample2.com

@czechboy0
Copy link
Collaborator

Hmm, baseURL is only a client-side concept in Swift OpenAPI Generator, not a server one. Can you describe in detail how you're testing this and how you're getting this URL?

@zunda-pixel
Copy link
Author

zunda-pixel commented Feb 18, 2024

This is sample repository that has issue I told. Please check.
https://github.com/zunda-pixel/LoginServer

openapi: '3.1.0'
info:
  title: LoginService
  version: 1.0.0
servers:
  - url: https://example.com/
    description: Example service deployment.
paths:
  /login:
    get:
      operationId: login
      responses:
        '303':
          description: A success response Login
          headers:
            location:
              schema:
                type: string
import OpenAPIRuntime
import OpenAPIVapor
import Vapor

struct Handler: APIProtocol {
  func login(_ input: Operations.login.Input) async throws -> Operations.login.Output {
    return .seeOther(.init(headers: .init(location: "https://apple.com")))
  }
}

@main struct LoginServer {
  static func main() async throws {
    let app = Vapor.Application()
    let transport = VaporTransport(routesBuilder: app)
    let handler = Handler()
    try handler.registerHandlers(on: transport)
    try await app.execute()
  }
}

@czechboy0
Copy link
Collaborator

Can you clarify what the issue is? The code in the project all looks correct.

What are the steps you're taking, what is the result you see, and what is the result you expect? That'll help us understand where the mismatch is.

@zunda-pixel
Copy link
Author

@czechboy0
Copy link
Collaborator

Which HTTP client are you using? A web browser? curl?

@zunda-pixel
Copy link
Author

I use a web browser.

@czechboy0
Copy link
Collaborator

Thank you @zunda-pixel, I was able to isolate the issue.

The problem is that OpenAPI-defined headers are serialized according to the rules of RFC6570 (details here), which dictate that non-reserved characters need to be percent encoded. However, in the Location header, that causes the URL in the response header to be percent-encoded, and the web browser client doesn't remove the percent encoding, it seems.

As a workaround, add a middleware that removes the percent encoding of the Location header:

import OpenAPIRuntime
import OpenAPIVapor
import Vapor
import HTTPTypes

struct Handler: APIProtocol {
  func login(_ input: Operations.login.Input) async throws -> Operations.login.Output {
    return .seeOther(.init(headers: .init(location: "https://apple.com")))
  }
}

@main struct LoginServer {
  static func main() async throws {
    let app = Vapor.Application()
    let transport = VaporTransport(routesBuilder: app)
    let handler = Handler()
    try handler.registerHandlers(on: transport, middlewares: [
        UnescapeLocationHeaderMiddleware()
    ])
    try await app.execute()
  }
}

struct UnescapeLocationHeaderMiddleware: ServerMiddleware {
    func intercept(
        _ request: HTTPRequest,
        body: HTTPBody?,
        metadata: ServerRequestMetadata,
        operationID: String,
        next: (HTTPRequest, HTTPBody?, ServerRequestMetadata) async throws -> (HTTPResponse, HTTPBody?)
    ) async throws -> (HTTPResponse, HTTPBody?) {
        var (response, responseBody) = try await next(request, body, metadata)
        guard let location = response.headerFields[.location] else {
            return (response, responseBody)
        }
        response.headerFields[.location] = location.removingPercentEncoding
        return (response, responseBody)
    }
}

Now, thanks for reporting this. It's a bit troubling, and I suspect we'll need some way to make this more compatible with clients that don't percent-decode header fields.

If you don't mind, I'll repurpose this issue to track improving Swift OpenAPI Generator this way and rename it.

@czechboy0 czechboy0 added area/generator Affects: plugin, CLI, config file. area/openapi Adding/updating a feature defined in OpenAPI. area/runtime Affects: the runtime library. kind/bug Feature doesn't work as expected. kind/usability Usability of generated code, ergonomics. and removed status/triage Collecting information required to triage the issue. kind/support Adopter support requests. kind/bug Feature doesn't work as expected. labels Feb 19, 2024
@czechboy0 czechboy0 changed the title [Question] How to Redirect(30x) to other domain? Allowing disabling percent encoding for some HTTP header fields Feb 19, 2024
@czechboy0 czechboy0 added this to the Post-1.0 milestone Feb 19, 2024
@zunda-pixel
Copy link
Author

Thank you for looking into this issue, and providing a workaround.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/generator Affects: plugin, CLI, config file. area/openapi Adding/updating a feature defined in OpenAPI. area/runtime Affects: the runtime library. kind/usability Usability of generated code, ergonomics.
Projects
None yet
Development

No branches or pull requests

2 participants