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

fix(server) - upload media handling http error #48

Merged
merged 2 commits into from
Sep 9, 2024
Merged

Conversation

dnkbln
Copy link
Contributor

@dnkbln dnkbln commented Sep 4, 2024

Bei großen Uploads kam es zu Mint:Http Fehlern. Ich umgehe das Problem jetzt in dem ich für die Media Uploads vorsorglich das Protokoll auf http1 umstelle.

@dnkbln dnkbln requested a review from eteubert September 4, 2024 08:54
@eteubert
Copy link
Member

eteubert commented Sep 7, 2024

Zwei Stil-Anmerkungen:

  1. In den Req.new calls ist viel Dopplung. Ich würde da nur die connect_options abhängig vom http1 Parameter anders bauen. So in der Art:
default_connect_options = [transport_opts: [verify: :verify_none]]

connect_options = if http1 do 
  Keyword.put(default_connect_options, :protocols, [:http1])
else
  default_connect_options
end

Req.new(
  base_url: site <> "/wp-json/",
  headers: [{"Content-Type", "application/json"}],
  auth: {:basic, user <> ":" <> password},
  connect_options: connect_options
)
  1. Unbenannte Parameter, vor allem booleans, sind in Elixir unüblich. Man sieht beim Aufruf nicht, was der Parameter macht. Üblich sind keyword lists, auch schon wenn es nur eine einzige Option ist. API.new(headers, http1: true) ist verständlicher als API.new(headers, true). Kannst du auch optional machen, dann musst du den Parameter von außen auch nur setzen, wenn du ihn brauchst.
  def new(headers, opts \\ []) do
    http1 = Keyword.get(opts, :http1, false)
    # ...

@dnkbln dnkbln merged commit 03c9364 into main Sep 9, 2024
2 checks passed
@dnkbln dnkbln deleted the fix/media-upload branch September 9, 2024 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants