إنشاء معالجات إجراءات بريد إلكتروني مخصّصة

بعض إجراءات إدارة المستخدمين، مثل تعديل عنوان البريد الإلكتروني للمستخدم إعادة ضبط كلمة مرور مستخدم، ينتج عنها إرسال رسائل إلكترونية إليه. هذه تحتوي الرسائل الإلكترونية على روابط يمكن للمستلمين فتحها لإكمال بيانات المستخدم أو إلغائها إدارة المشروعات. يتم تلقائيًا ربط الرسائل الإلكترونية المتعلّقة بإدارة المستخدمين بالإجراء التلقائي. معالِج، وهو صفحة ويب تتم استضافتها على عنوان URL في استضافة Firebase مجالك.

يمكنك بدلاً من ذلك إنشاء واستضافة معالج إجراءات بريد إلكتروني مخصّص لتنفيذ ودمج معالج إجراء البريد الإلكتروني مع موقعك على الويب.

تتطلب إجراءات إدارة المستخدمين التالية من المستخدم إكمال الإجراء باستخدام معالج إجراء بريد إلكتروني:

  • جارٍ إعادة ضبط كلمات المرور
  • إبطال تغييرات عنوان البريد الإلكتروني - عندما يغير المستخدمون حسابات أساسي فإن Firebase يرسل بريدًا إلكترونيًا إلى عناوينه القديمة مما يسمح للتراجع عن التغيير
  • إثبات ملكية عناوين البريد الإلكتروني

لتخصيص معالج إجراء البريد الإلكتروني لمشروع Firebase، يجب عليك إنشاء صفحة ويب تستخدم حزمة تطوير البرامج (SDK) لـ Firebase JavaScript للتحقّق من صفحة بصلاحيتها وإكمال الطلب. بعد ذلك، عليك تخصيص Firebase نماذج البريد الإلكتروني للمشروع لربطها بمعالج الإجراءات المخصصة.

إنشاء صفحة "معالج إجراء البريد الإلكتروني"

  1. يُضيف Firebase عدّة مَعلمات طلب بحث إلى عنوان URL لمعالج الإجراء عندما إنشاء رسائل إلكترونية لإدارة المستخدمين. مثل:

    https://example.com/usermgmt?mode=resetPassword&oobCode=ABC123&apiKey=AIzaSy...&lang=fr

    تحدد هذه المعلمات مهمة إدارة المستخدم التي إكماله. يجب أن تتعامل صفحة معالج إجراء البريد الإلكتروني مع الاستعلام التالي المَعلمات:

    المَعلمات
    الوضع

    إجراء إدارة المستخدمين المطلوب إكماله. يمكن أن تكون إحدى القيم التالية:

    • resetPassword
    • recoverEmail
    • verifyEmail
    رمز oobCode رمز يُستخدم لمرة واحدة ويُستخدم لتحديد طلب والتحقق منه
    مفتاح واجهة برمجة التطبيقات مفتاح واجهة برمجة التطبيقات لمشروع Firebase يتم توفيره لتسهيل الاستخدام
    عنوان URL للمتابعة هذا عنوان URL اختياري يوفر طريقة لتمرير الحالة إلى التطبيق عن طريق عنوان URL. هذه المشكلة متعلّقة بإعادة ضبط كلمة المرور والبريد الإلكتروني. وأوضاع التحقق. عند إرسال رسالة إلكترونية لإعادة تعيين كلمة المرور أو رسالة تأكيد إلكترونية، يحتاج عنصر ActionCodeSettings إلى مع عنوان URL للمتابعة حتى يصبح متاحًا. هذا النمط تمكين المستخدم من المتابعة من حيث توقف بعد إجراء البريد الإلكتروني.
    lang

    هذا هو BCP47 علامة لغة تمثل منطقة المستخدم (على سبيل المثال، fr). يمكنك استخدام هذه القيمة لتوفير بريد إلكتروني مترجم صفحات معالجات الإجراءات إلى المستخدمين.

    يمكن ضبط الترجمة عبر "وحدة تحكُّم Firebase" أو ديناميكيًا من خلال طلب واجهة برمجة تطبيقات العميل المقابلة قبل إرسال الرسالة الإلكترونية اتخاذ القرار. على سبيل المثال، استخدام JavaScript: firebase.auth().languageCode = 'fr';

    لتوفير تجربة مستخدم متسقة، تأكَّد من أن معالج إجراء البريد الإلكتروني تطابق نماذج البريد الإلكتروني.

    يوضح المثال التالي كيفية التعامل مع معلمات طلب البحث في معالج مستند إلى المتصفح. (يمكنك أيضًا تنفيذ المعالج مثل Node.js تطبيقًا يستخدم منطقًا مشابهًا).

    Web

    import { initializeApp } from "firebase/app";
    import { getAuth } from "firebase/auth";
    
    document.addEventListener('DOMContentLoaded', () => {
      // TODO: Implement getParameterByName()
    
      // Get the action to complete.
      const mode = getParameterByName('mode');
      // Get the one-time code from the query parameter.
      const actionCode = getParameterByName('oobCode');
      // (Optional) Get the continue URL from the query parameter if available.
      const continueUrl = getParameterByName('continueUrl');
      // (Optional) Get the language code if available.
      const lang = getParameterByName('lang') || 'en';
    
      // Configure the Firebase SDK.
      // This is the minimum configuration required for the API to be used.
      const config = {
        'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization
                                 // snippet found in the Firebase console.
      };
      const app = initializeApp(config);
      const auth = getAuth(app);
    
      // Handle the user management action.
      switch (mode) {
        case 'resetPassword':
          // Display reset password handler and UI.
          handleResetPassword(auth, actionCode, continueUrl, lang);
          break;
        case 'recoverEmail':
          // Display email recovery handler and UI.
          handleRecoverEmail(auth, actionCode, lang);
          break;
        case 'verifyEmail':
          // Display email verification handler and UI.
          handleVerifyEmail(auth, actionCode, continueUrl, lang);
          break;
        default:
          // Error: invalid mode.
      }
    }, false);

    Web

    document.addEventListener('DOMContentLoaded', () => {
      // TODO: Implement getParameterByName()
    
      // Get the action to complete.
      var mode = getParameterByName('mode');
      // Get the one-time code from the query parameter.
      var actionCode = getParameterByName('oobCode');
      // (Optional) Get the continue URL from the query parameter if available.
      var continueUrl = getParameterByName('continueUrl');
      // (Optional) Get the language code if available.
      var lang = getParameterByName('lang') || 'en';
    
      // Configure the Firebase SDK.
      // This is the minimum configuration required for the API to be used.
      var config = {
        'apiKey': "YOU_API_KEY" // Copy this key from the web initialization
                                // snippet found in the Firebase console.
      };
      var app = firebase.initializeApp(config);
      var auth = app.auth();
    
      // Handle the user management action.
      switch (mode) {
        case 'resetPassword':
          // Display reset password handler and UI.
          handleResetPassword(auth, actionCode, continueUrl, lang);
          break;
        case 'recoverEmail':
          // Display email recovery handler and UI.
          handleRecoverEmail(auth, actionCode, lang);
          break;
        case 'verifyEmail':
          // Display email verification handler and UI.
          handleVerifyEmail(auth, actionCode, continueUrl, lang);
          break;
        default:
          // Error: invalid mode.
      }
    }, false);
  2. تعامل مع طلبات إعادة ضبط كلمة المرور من خلال التحقّق أولاً من رمز الإجراء باستخدام verifyPasswordResetCode؛ ثم الحصول على كلمة مرور جديدة من المستخدم وتمريرها إلى confirmPasswordReset. على سبيل المثال:

    Web

    import { verifyPasswordResetCode, confirmPasswordReset } from "firebase/auth";
    
    function handleResetPassword(auth, actionCode, continueUrl, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
    
      // Verify the password reset code is valid.
      verifyPasswordResetCode(auth, actionCode).then((email) => {
        const accountEmail = email;
    
        // TODO: Show the reset screen with the user's email and ask the user for
        // the new password.
        const newPassword = "...";
    
        // Save the new password.
        confirmPasswordReset(auth, actionCode, newPassword).then((resp) => {
          // Password reset has been confirmed and new password updated.
    
          // TODO: Display a link back to the app, or sign-in the user directly
          // if the page belongs to the same domain as the app:
          // auth.signInWithEmailAndPassword(accountEmail, newPassword);
    
          // TODO: If a continue URL is available, display a button which on
          // click redirects the user back to the app via continueUrl with
          // additional state determined from that URL's parameters.
        }).catch((error) => {
          // Error occurred during confirmation. The code might have expired or the
          // password is too weak.
        });
      }).catch((error) => {
        // Invalid or expired action code. Ask user to try to reset the password
        // again.
      });
    }

    Web

    function handleResetPassword(auth, actionCode, continueUrl, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
    
      // Verify the password reset code is valid.
      auth.verifyPasswordResetCode(actionCode).then((email) => {
        var accountEmail = email;
    
        // TODO: Show the reset screen with the user's email and ask the user for
        // the new password.
        var newPassword = "...";
    
        // Save the new password.
        auth.confirmPasswordReset(actionCode, newPassword).then((resp) => {
          // Password reset has been confirmed and new password updated.
    
          // TODO: Display a link back to the app, or sign-in the user directly
          // if the page belongs to the same domain as the app:
          // auth.signInWithEmailAndPassword(accountEmail, newPassword);
    
          // TODO: If a continue URL is available, display a button which on
          // click redirects the user back to the app via continueUrl with
          // additional state determined from that URL's parameters.
        }).catch((error) => {
          // Error occurred during confirmation. The code might have expired or the
          // password is too weak.
        });
      }).catch((error) => {
        // Invalid or expired action code. Ask user to try to reset the password
        // again.
      });
    }
  3. التعامل مع عمليات إبطال تغيير عنوان البريد الإلكتروني من خلال التحقُّق أولاً من رمز الإجراء مع checkActionCode؛ ثم استعادة عنوان البريد الإلكتروني للمستخدم من خلال applyActionCode على سبيل المثال:

    Web

    import { checkActionCode, applyActionCode, sendPasswordResetEmail } from "firebase/auth";
    
    function handleRecoverEmail(auth, actionCode, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
      let restoredEmail = null;
      // Confirm the action code is valid.
      checkActionCode(auth, actionCode).then((info) => {
        // Get the restored email address.
        restoredEmail = info['data']['email'];
    
        // Revert to the old email.
        return applyActionCode(auth, actionCode);
      }).then(() => {
        // Account email reverted to restoredEmail
    
        // TODO: Display a confirmation message to the user.
    
        // You might also want to give the user the option to reset their password
        // in case the account was compromised:
        sendPasswordResetEmail(auth, restoredEmail).then(() => {
          // Password reset confirmation sent. Ask user to check their email.
        }).catch((error) => {
          // Error encountered while sending password reset code.
        });
      }).catch((error) => {
        // Invalid code.
      });
    }

    Web

    function handleRecoverEmail(auth, actionCode, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
      var restoredEmail = null;
      // Confirm the action code is valid.
      auth.checkActionCode(actionCode).then((info) => {
        // Get the restored email address.
        restoredEmail = info['data']['email'];
    
        // Revert to the old email.
        return auth.applyActionCode(actionCode);
      }).then(() => {
        // Account email reverted to restoredEmail
    
        // TODO: Display a confirmation message to the user.
    
        // You might also want to give the user the option to reset their password
        // in case the account was compromised:
        auth.sendPasswordResetEmail(restoredEmail).then(() => {
          // Password reset confirmation sent. Ask user to check their email.
        }).catch((error) => {
          // Error encountered while sending password reset code.
        });
      }).catch((error) => {
        // Invalid code.
      });
    }
  4. يمكنك معالجة عملية إثبات ملكية عنوان البريد الإلكتروني من خلال الاتصال بالرقم applyActionCode. على سبيل المثال:

    Web

    function handleVerifyEmail(auth, actionCode, continueUrl, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
      // Try to apply the email verification code.
      applyActionCode(auth, actionCode).then((resp) => {
        // Email address has been verified.
    
        // TODO: Display a confirmation message to the user.
        // You could also provide the user with a link back to the app.
    
        // TODO: If a continue URL is available, display a button which on
        // click redirects the user back to the app via continueUrl with
        // additional state determined from that URL's parameters.
      }).catch((error) => {
        // Code is invalid or expired. Ask the user to verify their email address
        // again.
      });
    }

    Web

    function handleVerifyEmail(auth, actionCode, continueUrl, lang) {
      // Localize the UI to the selected language as determined by the lang
      // parameter.
      // Try to apply the email verification code.
      auth.applyActionCode(actionCode).then((resp) => {
        // Email address has been verified.
    
        // TODO: Display a confirmation message to the user.
        // You could also provide the user with a link back to the app.
    
        // TODO: If a continue URL is available, display a button which on
        // click redirects the user back to the app via continueUrl with
        // additional state determined from that URL's parameters.
      }).catch((error) => {
        // Code is invalid or expired. Ask the user to verify their email address
        // again.
      });
    }
  5. يمكنك استضافة الصفحة في مكان ما، مثلاً استضافة Firebase.

بعد ذلك، عليك ضبط مشروع Firebase للربط بعنوان بريدك الإلكتروني المخصّص. في رسائل البريد الإلكتروني لإدارة المستخدمين.

لضبط مشروع Firebase لاستخدام معالج إجراء البريد الإلكتروني المخصّص، يُرجى اتّباع الخطوات التالية:

  1. افتح مشروعك في وحدة تحكُّم Firebase.
  2. انتقِل إلى صفحة نماذج الرسائل الإلكترونية في قسم المصادقة.
  3. في أي من أنواع البريد الإلكتروني، انقر على رمز القلم الرصاص لتعديل نموذج رسالة إلكترونية.
  4. انقر على تخصيص عنوان URL للإجراء، وحدِّد عنوان URL لبريدك الإلكتروني المخصّص. بمعالِج الإجراءات.

بعد حفظ عنوان URL، سيتم استخدامه من خلال جميع الرسائل الإلكترونية الخاصة بمشروعك في Firebase. النماذج.