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

[Bug] メールアドレスに"+"記号が含まれている場合に、翻訳機能が正しく機能せず「INVALID EMAIL PROVIDED」と表示される #30

Open
sounisi5011 opened this issue Sep 2, 2023 · 1 comment

Comments

@sounisi5011
Copy link

sounisi5011 commented Sep 2, 2023

Klearsky上で「翻訳する」ボタンを押した場合、KlearskyはMyMemoryを使用して翻訳を行います。この時、deパラメータにアカウントに使っているメールアドレスが指定されるのですが、このメールアドレス内の+がパーセントエンコーディングされていないために、以下のようなレスポンスが返ってきてしまいます:

{
    "responseData": {
        "translatedText": "INVALID EMAIL PROVIDED"
    },
    "quotaFinished": null,
    "mtLangSupported": null,
    "responseDetails": "INVALID EMAIL PROVIDED",
    "responseStatus": "403",
    "responderId": null,
    "exception_code": null,
    "matches": ""
}

URLのクエリストリングにおいて、+ を意味します。しかし、Klearskyはメールアドレス内の+%2Bに置換しません。このためMyMemoryには が含まれるメールアドレスと認識され、「誤ったメールアドレス」と判定されるようです。

該当するコードは以下になります。encodeURIComponentによる変換処理は、mainState.atp.session?.emailにも必要です

const url = `https://api.mymemory.translated.net/get?q=${encodeURIComponent(text)}&langpair=${langpair}|${dstLanguage}&de=${mainState.atp.session?.email}`

Note
なお、encodeURIComponentによる変換は不完全です。RFC3986に基づく「URL内で許可されていない文字」の一部(!'()*)を変換しません。
参照:encodeURIComponentが世界基準だと誤解してた話 - Qiita
これによる問題はおそらく無いはずですが、念のために

  • URLの組み立てに文字列結合とencodeURIComponentを使わず、URLオブジェクトURLSearchParamsオブジェクトを使う

    const url = new URL("https://api.mymemory.translated.net/get");
    url.searchParams.set("q", text);
    url.searchParams.set("langpair", `${langpair}|${dstLanguage}`);
    url.searchParams.set("de", mainState.atp.session?.email);
    const response = await fetch(url).catch(() => { // Note: fetch関数はURLオブジェクトを直接受け取れるため、url.toString()メソッドで文字列化する必要はありません
    ...
    const url = new URL("https://api.mymemory.translated.net/get");
    // Note: url.searchParamsプロパティは読み取り専用なので、代わりにurl.searchプロパティに代入して上書きします
    url.search = new URLSearchParams({
      q: text,
      langpair: `${langpair}|${dstLanguage}`,
      de: mainState.atp.session?.email,
    }).toString();
    const response = await fetch(url).catch(() => {
    ...
    const url = `https://api.mymemory.translated.net/get?`${new URLSearchParams({
      q: text,
      langpair: `${langpair}|${dstLanguage}`,
      de: mainState.atp.session?.email,
    }).toString()}`;
    const response = await fetch(url).catch(() => {
    ...
  • encodeURIComponentの代わりにstrict-uri-encodeのようなRFC3986準拠のエンコード関数を使う

のどちらかが良いかもしれません。

@mimonelu
Copy link
Owner

mimonelu commented Sep 5, 2023

@sounisi5011
情報提供ありがとうございます。そこは考慮漏れでした…次回更新時に対応しますmm

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

No branches or pull requests

2 participants