กฎความปลอดภัยและการตรวจสอบสิทธิ์ Firebase

Firebase Security Rules ให้การควบคุมการเข้าถึงและการตรวจสอบข้อมูลในรูปแบบที่รองรับความซับซ้อนหลายระดับ หากต้องการสร้างระบบการเข้าถึงตามผู้ใช้และตามบทบาทที่จะรักษาข้อมูลของผู้ใช้ให้ปลอดภัย ให้ใช้ Firebase Authentication กับ Firebase Security Rules

ระบุผู้ใช้

Authentication จะระบุผู้ใช้ที่ขอสิทธิ์เข้าถึงข้อมูลของคุณ และระบุข้อมูลดังกล่าวเป็นตัวแปรที่คุณสามารถใช้ในกฎ ตัวแปร auth จะมีข้อมูลต่อไปนี้

  • uid: รหัสผู้ใช้ที่ไม่ซ้ำซึ่งกำหนดให้กับผู้ใช้ที่ส่งคำขอ
  • token: แผนที่ค่าที่รวบรวมโดย Authentication

ตัวแปร auth.token มีค่าต่อไปนี้

ช่อง คำอธิบาย
email อีเมลที่เชื่อมโยงกับบัญชี หากมี
email_verified true หากผู้ใช้ยืนยันว่ามีสิทธิ์เข้าถึงอีเมล email ผู้ให้บริการบางรายจะยืนยันอีเมลที่ตนเป็นเจ้าของโดยอัตโนมัติ
phone_number หมายเลขโทรศัพท์ที่เชื่อมโยงกับบัญชี (หากมี)
name ชื่อที่แสดงของผู้ใช้ หากตั้งค่าไว้
sub Firebase UID ของผู้ใช้ ซึ่งต้องไม่ซ้ำกันภายในโปรเจ็กต์
firebase.identities พจนานุกรมของข้อมูลประจำตัวทั้งหมดที่เชื่อมโยงกับบัญชีของผู้ใช้นี้ คีย์ของพจนานุกรมอาจเป็น email, phone, google.com, facebook.com, github.com, twitter.com ก็ได้ ค่าของพจนานุกรมคืออาร์เรย์ของตัวระบุที่ไม่ซ้ำกันสำหรับผู้ให้บริการข้อมูลประจำตัวแต่ละรายที่เชื่อมโยงกับบัญชี เช่น auth.token.firebase.identities["google.com"][0] มีรหัสผู้ใช้ Google รายการแรกที่เชื่อมโยงกับบัญชี
firebase.sign_in_provider ผู้ให้บริการการลงชื่อเข้าใช้ที่ใช้เพื่อรับโทเค็นนี้ โดยอาจเป็นสตริงใดก็ได้ต่อไปนี้ custom, password, phone, anonymous, google.com, facebook.com, github.com, twitter.com
firebase.tenant tenantId ที่เชื่อมโยงกับบัญชี (หากมี) เช่น tenant2-m6tyz

หากต้องการเพิ่มแอตทริบิวต์การตรวจสอบสิทธิ์ที่กําหนดเอง ตัวแปร auth.token จะมีการอ้างสิทธิ์ที่กําหนดเอง ที่คุณระบุด้วย

เมื่อผู้ใช้ที่ขอสิทธิ์เข้าถึงไม่ได้ลงชื่อเข้าใช้ ตัวแปร auth จะเป็น null คุณใช้ประโยชน์จากข้อมูลนี้ในกฎได้ เช่น หากต้องการจำกัดสิทธิ์การอ่านให้กับผู้ใช้ที่ตรวจสอบสิทธิ์แล้วเท่านั้น auth != null อย่างไรก็ตาม โดยทั่วไปเราขอแนะนำให้จํากัดการเข้าถึงระดับเขียนเพิ่มเติม

ดูข้อมูลเพิ่มเติมเกี่ยวกับตัวแปร auth ได้ที่เอกสารอ้างอิงสำหรับ Cloud Firestore, Realtime Database และ Cloud Storage

ใช้ประโยชน์จากข้อมูลผู้ใช้ในกฎ

ในทางปฏิบัติ การใช้ข้อมูลที่ตรวจสอบสิทธิ์แล้วในกฎจะทำให้กฎมีประสิทธิภาพและยืดหยุ่นมากขึ้น คุณควบคุมการเข้าถึงข้อมูลตามข้อมูลประจำตัวของผู้ใช้ได้

ในกฎ ให้กําหนดวิธีที่ข้อมูลในตัวแปร auth ซึ่งเป็นข้อมูลผู้ใช้ของผู้ขอ ตรงกับข้อมูลผู้ใช้ที่เชื่อมโยงกับข้อมูลที่ขอ

เช่น แอปอาจต้องการตรวจสอบว่าผู้ใช้อ่านและเขียนได้เฉพาะข้อมูลของตนเองเท่านั้น ในกรณีนี้ คุณต้องการให้ตัวแปร auth.uid จับคู่กับรหัสผู้ใช้ในข้อมูลที่ขอ

Cloud Firestore

service cloud.firestore {
  match /databases/{database}/documents {
    // Make sure the uid of the requesting user matches name of the user
    // document. The wildcard expression {userId} makes the userId variable
    // available in rules.
    match /users/{userId} {
      allow read, write: if request.auth != null && request.auth.uid == userId;
    }
  }
}

Realtime Database

{
  "rules": {
    "users": {
      "$userId": {
        // grants write access to the owner of this user account
        // whose uid must exactly match the key ($userId)
        ".write": "$userId === auth.uid"
      }
    }
  }
}

Cloud Storage

service firebase.storage {
  // Only a user can upload their file, but anyone can view it
  match /users/{userId}/{fileName} {
    allow read;
    allow write: if request.auth != null && request.auth.uid == userId;
  }
}

กําหนดข้อมูลผู้ใช้ที่กําหนดเอง

คุณใช้ประโยชน์จากตัวแปร auth เพิ่มเติมเพื่อกำหนดช่องที่กำหนดเองให้กับผู้ใช้แอปได้

ตัวอย่างเช่น สมมติว่าคุณต้องการสร้างบทบาท "ผู้ดูแลระบบ" ที่เปิดใช้สิทธิ์การเขียนในบางเส้นทาง คุณจะกําหนดแอตทริบิวต์นั้นให้กับผู้ใช้ แล้วใช้ประโยชน์ในแอตทริบิวต์นั้นในกฎที่ให้สิทธิ์เข้าถึงในเส้นทาง

ใน Cloud Firestore คุณสามารถเพิ่มช่องที่กำหนดเองลงในเอกสารของผู้ใช้และเรียกใช้ค่าของช่องนั้นด้วยการอ่านแบบฝังในกฎ ดังนั้น กฎที่อิงตามผู้ดูแลระบบจะมีลักษณะดังตัวอย่างต่อไปนี้

Cloud Firestore

service cloud.firestore {
  match /databases/{database}/documents/some_collection: {
    // Remember that, in Cloud Firestore, reads embedded in your rules are billed operations
    write: if request.auth != null && get(/databases/(database)/documents/users/$(request.auth.uid)).data.admin == true;
    read: if request.auth != null;
  }
}

คุณจะเข้าถึงการอ้างสิทธิ์ที่กำหนดเองใน Rules ได้หลังจากสร้างการอ้างสิทธิ์ที่กำหนดเองใน Authentication จากนั้นคุณจะอ้างอิงการอ้างสิทธิ์ที่กำหนดเองเหล่านั้นได้โดยใช้ตัวแปร auth.token

Cloud Firestore

service cloud.firestore {
  match /databases/{database}/documents {
    // For attribute-based access control, check for an admin claim
    allow write: if request.auth.token.admin == true;
    allow read: true;

    // Alterntatively, for role-based access, assign specific roles to users
    match /some_collection/{document} {
     allow read: if request.auth.token.reader == "true";
     allow write: if request.auth.token.writer == "true";
   }
  }
}

Realtime Database

{
  "rules": {
    "some_path/$sub_path": {
      // Create a custom claim for the admin role
      ".write": "auth.uid !== null && auth.token.writer === true"
      ".read": "auth.uid !== null"
      }
    }
  }

Cloud Storage

service firebase.storage {
  // Create a custom claim for the admin role
  match /files/{fileName} {
    allow read: if request.auth.uid != null;
    allow write: if request.auth.token.admin == true;
  }
}

ดูตัวอย่างเพิ่มเติมของRulesการใช้ประโยชน์จากAuthenticationพื้นฐานได้ที่กฎความปลอดภัยพื้นฐาน