अपने डेटाबेस या स्टोरेज बकेट में मौजूदा डेटा के आधार पर, नए डेटा को शर्त के हिसाब से लिखने के लिए, Firebase Security Rules का इस्तेमाल किया जा सकता है. आपके पास ऐसे नियम लिखने का विकल्प भी होता है जो डेटा डालने पर पाबंदी लगाकर, डेटा की पुष्टि करने की सुविधा लागू करते हैं. सुरक्षा से जुड़ी शर्तें बनाने के लिए, मौजूदा डेटा का इस्तेमाल करने वाले नियमों के बारे में ज़्यादा जानने के लिए, आगे पढ़ें.
डेटा की पुष्टि करने के नियमों के बारे में ज़्यादा जानने के लिए, हर सेक्शन में कोई प्रॉडक्ट चुनें.
नए डेटा पर पाबंदियां
Cloud Firestore
अगर आपको यह पक्का करना है कि कोई ऐसा दस्तावेज़ न बनाया जाए जिसमें कोई खास फ़ील्ड हो, तो उस फ़ील्ड को allow
शर्त में शामिल करें. उदाहरण के लिए, अगर आपको ranking
फ़ील्ड वाले किसी भी दस्तावेज़ को बनाने ��े रोकना है, तो create
कंडीशन में इसे अनुमति नहीं दी जा सकती.
service cloud.firestore {
match /databases/{database}/documents {
// Disallow
match /cities/{city} {
allow create: if !("ranking" in request.resource.data)
}
}
}
Realtime Database
अगर आपको यह पक्का करना है कि कुछ खास वैल्यू वाले डेटा को आपके डेटाबेस में न जोड़ा जाए, तो आपको अपने नियमों में वह वैल्यू शामिल करनी होगी और उसे लिखने की अनुमति नहीं देनी होगी. उदाहरण के लिए, अगर आपको ranking
वैल्यू वाले किसी भी दस्तावेज़ में डेटा नहीं डालना है, तो आपको ranking
वैल्यू वाले सभी दस्तावेज़ों में डेटा डालने की अनुमति नहीं देनी होगी.
{
"rules": {
// Write is allowed for all paths
".write": true,
// Allows writes only if new data doesn't include a `ranking` child value
".validate": "!newData.hasChild('ranking')
}
}
Cloud Storage
अगर आपको यह पक्का करना है कि कोई ऐसी फ़ाइल न बनाई जाए जिसमें कोई खास मेटाडेटा शामिल हो, तो allow
शर्त में मेटाडेटा शामिल करें. उदाहरण के लिए, अगर आपको ऐसी किसी भी फ़ाइल को बनाने से रोकना है जिसमें ranking
मेटाडेटा है, तो आपको create
शर्त में इसकी अनुमति नहीं देनी होगी.
service firebase.storage {
match /b/{bucket}/o {
match /files/{allFiles=**} {
// Disallow
allow create: if !("ranking" in request.resource.metadata)
}
}
}
Firebase Security Rules में मौजूदा डेटा का इस्तेमाल करना
Cloud Firestore
कई ऐप्लिकेशन, डेटाबेस में मौजूद दस्तावेज़ों पर फ़ील्ड के तौर पर ऐक्सेस कंट्रोल की जानकारी सेव करते हैं. Cloud Firestore Security Rules, दस्तावेज़ के डेटा के आधार पर ऐक्सेस को डाइनैमिक तौर पर अनुमति दे सकता है या अस्वीकार कर सकता है:
service cloud.firestore {
match /databases/{database}/documents {
// Allow the user to read data if the document has the 'visibility'
// field set to 'public'
match /cities/{city} {
allow read: if resource.data.visibility == 'public';
}
}
}
resource
वैरिएबल, अनुरोध किए गए दस्तावेज़ को दिखाता है. साथ ही, resource.data
दस्तावेज़ में सेव किए गए सभी फ़ील्ड और वैल्यू का मैप होता है. resource
वैरिएबल के बारे में ज़्यादा जानकारी के लिए, रेफ़रंस दस्तावेज़ देखें.
डेटा लिखते समय, हो सकता है कि आप आने वाले डेटा की तुलना मौजूदा डेटा से करना चाहें. इसकी मदद से, यह पक्का किया जा सकता है कि किसी फ़ील्ड में बदलाव नहीं ���ुआ है, किसी फ़ील्ड में सिर्फ़ एक की बढ़ोतरी हुई है या नई वैल्यू आने में कम से कम एक हफ़्ता बाकी है.
इस मामले में, अगर आपके नियमसेट में लिखने की मंज़ूरी बाकी है, तो request.resource
वैरिएबल में दस्तावेज़ की आने वाली स्थिति शामिल होगी. update
ऑपरेशन के लिए, जो सिर्फ़ दस्तावेज़ के फ़ील्ड के सबसेट में बदलाव करते हैं, ऑपरेशन के बाद request.resource
वैरिएबल में दस्तावेज़ की स्थिति 'मंज़ूरी बाकी है' होगी. अनचाहे या अलग-अलग डेटा अपडेट को रोकने के लिए, request.resource
में फ़ील्ड वैल्यू देखी जा सकती हैं:
service cloud.firestore {
match /databases/{database}/documents {
// Make sure all cities have a positive population and
// the name is not changed
match /cities/{city} {
allow update: if request.resource.data.population > 0
&& request.resource.data.name == resource.data.name;
}
}
}
Realtime Database
Realtime Database में, डेटा स्ट्रक्चर लागू करने और डेटा के फ़ॉर्मैट और कॉन्टेंट की पुष्टि करने के लिए, .validate
नियमों का इस्तेमाल करें. .write
नियम से ऐक्सेस मिलने की पुष्टि करने के बाद, Rules .validate
नियम चलाएं.
.validate
नियम कैस्केड नहीं होते. अगर पुष्टि करने का कोई नियम, रूल के क��सी पाथ या सबपाथ पर काम नहीं करता है, तो डेटा डालने की पूरी प्रोसेस अस्वीकार कर दी जाएगी.
इसके अलावा, पुष्टि करने वाली डेफ़िनिशन सिर्फ़ उन वैल्यू की जांच करती हैं जो शून्य नहीं हैं. साथ ही, वे डेटा मिटाने वाले किसी भी अनुरोध को अनदेखा कर देती हैं.
.validate
के इन नियमों का पालन करें:
{
"rules": {
// write is allowed for all paths
".write": true,
"widget": {
// a valid widget must have attributes "color" and "size"
// allows deleting widgets (since .validate is not applied to delete rules)
".validate": "newData.hasChildren(['color', 'size'])",
"size": {
// the value of "size" must be a number between 0 and 99
".validate": "newData.isNumber() &&
newData.val() >= 0 &&
newData.val() <= 99"
},
"color": {
// the value of "color" must exist as a key in our mythical
// /valid_colors/ index
".validate": "root.child('valid_colors/' + newData.val()).exists()"
}
}
}
}
ऊपर दिए गए नियमों के साथ डेटाबेस में अनुरोध लिखने पर, ये नतीजे मिलेंगे:
JavaScript
var ref = db.ref("/widget"); // PERMISSION_DENIED: does not have children color and size ref.set('foo'); // PERMISSION DENIED: does not have child color ref.set({size: 22}); // PERMISSION_DENIED: size is not a number ref.set({ size: 'foo', color: 'red' }); // SUCCESS (assuming 'blue' appears in our colors list) ref.set({ size: 21, color: 'blue'}); // If the record already exists and has a color, this will // succeed, otherwise it will fail since newData.hasChildren(['color', 'size']) // will fail to validate ref.child('size').set(99);
Objective-C
FIRDatabaseReference *ref = [[[FIRDatabase database] reference] child: @"widget"]; // PERMISSION_DENIED: does not have children color and size [ref setValue: @"foo"]; // PERMISSION DENIED: does not have child color [ref setValue: @{ @"size": @"foo" }]; // PERMISSION_DENIED: size is not a number [ref setValue: @{ @"size": @"foo", @"color": @"red" }]; // SUCCESS (assuming 'blue' appears in our colors list) [ref setValue: @{ @"size": @21, @"color": @"blue" }]; // If the record already exists and has a color, this will // succeed, otherwise it will fail since newData.hasChildren(['color', 'size']) // will fail to validate [[ref child:@"size"] setValue: @99];
Swift
var ref = FIRDatabase.database().reference().child("widget") // PERMISSION_DENIED: does not have children color and size ref.setValue("foo") // PERMISSION DENIED: does not have child color ref.setValue(["size": "foo"]) // PERMISSION_DENIED: size is not a number ref.setValue(["size": "foo", "color": "red"]) // SUCCESS (assuming 'blue' appears in our colors list) ref.setValue(["size": 21, "color": "blue"]) // If the record already exists and has a color, this will // succeed, otherwise it will fail since newData.hasChildren(['color', 'size']) // will fail to validate ref.child("size").setValue(99);
Java
FirebaseDatabase database = FirebaseDatabase.getInstance(); DatabaseReference ref = database.getReference("widget"); // PERMISSION_DENIED: does not have children color and size ref.setValue("foo"); // PERMISSION DENIED: does not have child color ref.child("size").setValue(22); // PERMISSION_DENIED: size is not a number Map<String,Object> map = new HashMap<String, Object>(); map.put("size","foo"); map.put("color","red"); ref.setValue(map); // SUCCESS (assuming 'blue' appears in our colors list) map = new HashMap<String, Object>(); map.put("size", 21); map.put("color","blue"); ref.setValue(map); // If the record already exists and has a color, this will // succeed, otherwise it will fail since newData.hasChildren(['color', 'size']) // will fail to validate ref.child("size").setValue(99);
REST
# PERMISSION_DENIED: does not have children color and size curl -X PUT -d 'foo' \ https://docs-examples.firebaseio.com/rest/securing-data/example.json # PERMISSION DENIED: does not have child color curl -X PUT -d '{"size": 22}' \ https://docs-examples.firebaseio.com/rest/securing-data/example.json # PERMISSION_DENIED: size is not a number curl -X PUT -d '{"size": "foo", "color": "red"}' \ https://docs-examples.firebaseio.com/rest/securing-data/example.json # SUCCESS (assuming 'blue' appears in our colors list) curl -X PUT -d '{"size": 21, "color": "blue"}' \ https://docs-examples.firebaseio.com/rest/securing-data/example.json # If the record already exists and has a color, this will # succeed, otherwise it will fail since newData.hasChildren(['color', 'size']) # will fail to validate curl -X PUT -d '99' \ https://docs-examples.firebaseio.com/rest/securing-data/example/size.json
Cloud Storage
नियमों का मूल्यांकन करते समय, हो सकता है कि आप अपलोड, डाउनलोड, संशोधित या मिटाई जा रही फ़ाइल के मेटाडेटा का मूल्यांकन करना चाहें. इसकी मदद से, जटिल और बेहतर नियम बनाए जा सकते हैं. जैसे, सिर्फ़ कुछ तरह के कॉन्टेंट वाली फ़ाइलों को अपलोड करने की अनुमति देना या सिर्फ़ तय साइज़ से बड़ी फ़ाइलों को मिटाना.
resource
ऑब्जेक्ट में, Cloud Storage ऑब्जेक्ट में दिखाए गए फ़ाइल मेटाडेटा के साथ की/वैल्यू पेयर होते हैं. डेटा की अखंडता को पक्का करने के लिए, इन प्रॉपर्टी की जांच read
या
write
अनुरोधों पर की जा सकती है. resource
ऑब्जेक्ट, आपकी Cloud Storage बकेट में मौजूद मौजूदा फ़ाइलों के मेटाडेटा की जांच करता है.
service firebase.storage {
match /b/{bucket}/o {
match /images {
match /{allImages=**} {
// Allow reads if a custom 'visibility' field is set to 'public'
allow read: if resource.metadata.visibility == 'public';
}
}
}
}
write
के अनुरोधों (जैसे, अपलोड करना, मेटाडेटा अपडेट करना, और मिटाना) के अनुरोधों पर भी request.resource
ऑब्जेक्ट का इस्तेमाल किया जा सकता है. request.resource
ऑब्जेक्ट को उस फ़ाइल से मेटाडेटा मिलता है जिसे write
की अनुमति मिलने पर लिखा जाएगा.
इन दो वैल्यू का इस्तेमाल, अनचाहे या गलत अपडेट को रोकने के लिए किया जा सकता है. इसके अलावा, फ़ाइल टाइप या साइज़ जैसी ऐप्लिकेशन की पाबंदियों को लागू करने के लिए भी इनका इस्तेमाल किया जा सकता है.
service firebase.storage {
match /b/{bucket}/o {
match /images {
// Cascade read to any image type at any path
match /{allImages=**} {
allow read;
}
// Allow write files to the path "images/*", subject to the constraints:
// 1) File is less than 5MB
// 2) Content type is an image
// 3) Uploaded content type matches existing content type
// 4) File name (stored in imageId wildcard variable) is less than 32 characters
match /{imageId} {
allow write: if request.resource.size < 5 * 1024 * 1024
&& request.resource.contentType.matches('image/.*')
&& request.resource.contentType == resource.contentType
&& imageId.size() < 32
}
}
}
}
resource
ऑब्जेक्ट में मौजूद प्रॉपर्टी की पूरी सूची,
रेफ़रंस दस्तावेज़ में उपलब्ध है.