エリクサーでこれをリファクタリングして読みやすくする方法はありますか?エリクサーのネストされたif文を避けるには?
def validate(params) do
Repo.start_link
if validate_oauth_params(params) === true do
oauth_client = Repo.get_by(OauthClient, random_id: params["client_id"], secret: params["secret"])
if oauth_client != nil do
allowed_grant_types = Poison.Parser.parse!(oauth_client.allowed_grant_types)
if Map.has_key?(allowed_grant_types, params["grant_type"]) do
case params["grant_type"] do
"password" ->
process_password_grant(params, oauth_client)
"refresh_token" ->
process_refresh_token_grant(params["refresh_token"], oauth_client)
"client_credentials" ->
process_client_credentials_grant(oauth_client)
nil ->
%{message: "Invalid oauth credentials", code: 400}
end
end
else
%{message: "Invalid oauth credentials", code: 400}
end
else
%{message: "Invalid oauth credentials", code: 400}
end
end
このコードはPHPのように見えるので、それを行うためのエリクサーの方法は何ですか。私はそれを書いていない。
コードをサブファンクションに分解します。私は今すぐコードを書き直す時間がありませんが、最も内側の 'if'を別の関数に抽象化し、他の' if'の場合と同様にしてください。 –
開発者はこの素晴らしいスタートガイドを読んで理解する必要があります少なくとも重要なポイント:http://elixir-lang.org/getting-started/introduction.html – webdeb
この問題は、Code Review Exchangeで自宅にいるようです。 –