Admin Database API के बारे में जानकारी

एडमिन SDK टूल की मदद से, रीयल टाइम डेटाबेस के डेटा को एडमिन के सभी खास अधिकारों के साथ या कुछ खास सुविधाओं के साथ पढ़ा और लिखा जा सकता है. इस दस्तावेज़ में, हम आपको Firebase रीयल टाइम डेटाबेस को ऐक्सेस करने के लिए अपने प्रोजेक्ट में Firebase एडमिन SDK जोड़ने की जानकारी देंगे.

एडमिन SDK टूल का सेटअप

अपने सर्वर पर Firebase रीयल टाइम डेटाबेस का इस्तेमाल शुरू करने के लिए, सबसे पहले आपको अपनी पसंद की भाषा में Firebase एडमिन SDK टूल सेट अप करना होगा.

एडमिन SDK टूल से पुष्टि करें

Firebase एडमिन SDK का इस्तेमाल करने वाले किसी सर्वर से Firebase रीयल टाइम डेटाबेस को ऐक्सेस करने से पहले, आपको Firebase की मदद से अपने सर्वर की पुष्टि करनी होगी. जब किसी सर्वर की पुष्टि की जाती है, तो उपयोगकर्ता खाते के क्रेडेंशियल से साइन इन करने के बजाय, ऐसे सेवा खाते से पुष्टि की जाती है जो Firebase में आपके सर्वर की पहचान करता है.

Firebase एडमिन SDK का इस्तेमाल करके पुष्टि करने पर, आपको दो अलग-अलग लेवल का ऐक्सेस मिल सकता है:

Firebase एडमिन SDK टूल की पुष्टि के लिए ऐक्सेस लेवल
एडमिन के अधिकार किसी प्रोजेक्ट के रीयल टाइम डेटाबेस के लिए, पढ़ने और लिखने का ऐक्सेस पूरा करें. डेटा माइग्रेशन या स्ट्रक्चर जैसे एडमिन से जुड़े ऐसे काम पूरे करने में सावधानी बरतें जिनके लिए आपके प्रोजेक्ट के संसाधनों का बिना पाबंदी वाला ऐक्सेस ज़रूरी हो.
सीमित खास अधिकार किसी प्रोजेक्ट के रीयल टाइम डेटाबेस का ऐक्सेस. इसमें सिर्फ़ उन संसाधनों का ऐक्सेस होता है जो आपके सर्वर को चाहिए. इस लेवल का इस्तेमाल करके, एडमिन के उन कामों को पूरा करें जिनके लिए ऐक्सेस की ज़रूरी शर्तें तय की गई हैं. उदाहरण के लिए, खास जानकारी का इस्तेमाल करके, पूरे डेटाबेस का डेटा पढ़ते समय, गलती से होने वाले कॉन्टेंट से बचा जा सकता है. इसके लिए, रीड-ओनली सुरक्षा नियम सेट करें. इसके बाद, एडमिन SDK टूल को उस नियम के तहत खास अधिकारों के साथ शुरू करें.

एडमिन के खास अधिकारों की मदद से पुष्टि करें

जब आप अपने Firebase प्रोजेक्ट में एडिटर की भूमिका के साथ, किसी सेवा खाते के क्रेडेंशियल के साथ Firebase एडमिन SDK टूल शुरू करते हैं, तब उस इंस्टेंस को आपके प्रोजेक्ट के रीयल टाइम डेटाबेस के लिए, पढ़ने और लिखने का पूरा ऐक्सेस मिल जाता है.

Java
// Fetch the service account key JSON file contents
FileInputStream serviceAccount = new FileInputStream("path/to/serviceAccount.json");

// Initialize the app with a service account, granting admin privileges
FirebaseOptions options = FirebaseOptions.builder()
    .setCredentials(GoogleCredentials.fromStream(serviceAccount))
    // The database URL depends on the location of the database
    .setDatabaseUrl("https://DATABASE_NAME.firebaseio.com")
    .build();
FirebaseApp.initializeApp(options);

// As an admin, the app has access to read and write all data, regardless of Security Rules
DatabaseReference ref = FirebaseDatabase.getInstance()
    .getReference("restricted_access/secret_document");
ref.addListenerForSingleValueEvent(new ValueEventListener() {
  @Override
  public void onDataChange(DataSnapshot dataSnapshot) {
    Object document = dataSnapshot.getValue();
    System.out.println(document);
  }

  @Override
  public void onCancelled(DatabaseError error) {
  }
});
Node.js के लिए
var admin = require("firebase-admin");

// Fetch the service account key JSON file contents
var serviceAccount = require("path/to/serviceAccountKey.json");

// Initialize the app with a service account, granting admin privileges
admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  // The database URL depends on the location of the database
  databaseURL: "https://DATABASE_NAME.firebaseio.com"
});

// As an admin, the app has access to read and write all data, regardless of Security Rules
var db = admin.database();
var ref = db.ref("restricted_access/secret_document");
ref.once("value", function(snapshot) {
  console.log(snapshot.val());
});
Python
import firebase_admin
from firebase_admin import credentials
from firebase_admin import db

# Fetch the service account key JSON file contents
cred = credentials.Certificate('path/to/serviceAccountKey.json')

# Initialize the app with a service account, granting admin privileges
firebase_admin.initialize_app(cred, {
    'databaseURL': 'https://databaseName.firebaseio.com'
})

# As an admin, the app has access to read and write all data, regradless of Security Rules
ref = db.reference('restricted_access/secret_document')
print(ref.get())
शुरू करें
ctx := context.Background()
conf := &firebase.Config{
	DatabaseURL: "https://databaseName.firebaseio.com",
}
// Fetch the service account key JSON file contents
opt := option.WithCredentialsFile("path/to/serviceAccountKey.json")

// Initialize the app with a service account, granting admin privileges
app, err := firebase.NewApp(ctx, conf, opt)
if err != nil {
	log.Fatalln("Error initializing app:", err)
}

client, err := app.Database(ctx)
if err != nil {
	log.Fatalln("Error initializing database client:", err)
}

// As an admin, the app has access to read and write all data, regradless of Security Rules
ref := client.NewRef("restricted_access/secret_document")
var data map[string]interface{}
if err := ref.Get(ctx, &data); err != nil {
	log.Fatalln("Error reading from database:", err)
}
fmt.Println(data)

सीमित खास अधिकारों के साथ पुष्टि करें

सबसे सही तरीका यह है कि किसी सेवा के पास सिर्फ़ ज़रूरी संसाधनों का ऐक्सेस हो. Firebase ऐप्लिकेशन इंस्टेंस जिन संसाधनों को ऐक्सेस कर सकता है उन पर बेहतर कंट्रोल पाने के लिए, अपनी सेवा दिखाने के लिए सुरक्षा नियमों में एक यूनीक आइडेंटिफ़ायर का इस्तेमाल करें. इसके बाद, ऐसे सही नियम सेट अप करें जिनसे आपकी सेवा को अपनी ज़रूरत के संसाधनों का ऐक्सेस मिल सके. उदाहरण के लिए:

{
  "rules": {
    "public_resource": {
      ".read": true,
      ".write": true
    },
    "some_resource": {
      ".read": "auth.uid === 'my-service-worker'",
      ".write": false
    },
    "another_resource": {
      ".read": "auth.uid === 'my-service-worker'",
      ".write": "auth.uid === 'my-service-worker'"
    }
  }
}

इसके बाद, अपने सर्वर पर Firebase ऐप्लिकेशन शुरू करते समय, databaseAuthVariableOverride विकल्प का इस्तेमाल करके, उस auth ऑब्जेक्ट को बदलें जिसका इस्तेमाल आपके डेटाबेस के नियमों के लिए किया जाता है. इस कस्टम auth ऑब्जेक्ट में, uid फ़ील्ड को उस आइडेंटिफ़ायर पर सेट करें जिसका इस्तेमाल आपने सुरक्षा नियमों में अपनी सेवा दिखाने के लिए किया था.

Java
// Fetch the service account key JSON file contents
FileInputStream serviceAccount = new FileInputStream("path/to/serviceAccountCredentials.json");

// Initialize the app with a custom auth variable, limiting the server's access
Map<String, Object> auth = new HashMap<String, Object>();
auth.put("uid", "my-service-worker");

FirebaseOptions options = new FirebaseOptions.Builder()
    .setCredential(FirebaseCredentials.fromCertificate(serviceAccount))
    // The database URL depends on the location of the database
    .setDatabaseUrl("https://DATABASE_NAME.firebaseio.com")
    .setDatabaseAuthVariableOverride(auth)
    .build();
FirebaseApp.initializeApp(options);

// The app only has access as defined in the Security Rules
DatabaseReference ref = FirebaseDatabase
    .getInstance()
    .getReference("/some_resource");
ref.addListenerForSingleValueEvent(new ValueEventListener() {
    @Override
    public void onDataChange(DataSnapshot dataSnapshot) {
        String res = dataSnapshot.getValue();
        System.out.println(res);
    }
});
Node.js के लिए
var admin = require("firebase-admin");

// Fetch the service account key JSON file contents
var serviceAccount = require("path/to/serviceAccountKey.json");

// Initialize the app with a custom auth variable, limiting the server's access
admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  // The database URL depends on the location of the database
  databaseURL: "https://DATABASE_NAME.firebaseio.com",
  databaseAuthVariableOverride: {
    uid: "my-service-worker"
  }
});

// The app only has access as defined in the Security Rules
var db = admin.database();
var ref = db.ref("/some_resource");
ref.once("value", function(snapshot) {
  console.log(snapshot.val());
});
Python
import firebase_admin
from firebase_admin import credentials
from firebase_admin import db

# Fetch the service account key JSON file contents
cred = credentials.Certificate('path/to/serviceAccountKey.json')

# Initialize the app with a custom auth variable, limiting the server's access
firebase_admin.initialize_app(cred, {
    'databaseURL': 'https://databaseName.firebaseio.com',
    'databaseAuthVariableOverride': {
        'uid': 'my-service-worker'
    }
})

# The app only has access as defined in the Security Rules
ref = db.reference('/some_resource')
print(ref.get())
शुरू करें
ctx := context.Background()
// Initialize the app with a custom auth variable, limiting the server's access
ao := map[string]interface{}{"uid": "my-service-worker"}
conf := &firebase.Config{
	DatabaseURL:  "https://databaseName.firebaseio.com",
	AuthOverride: &ao,
}

// Fetch the service account key JSON file contents
opt := option.WithCredentialsFile("path/to/serviceAccountKey.json")

app, err := firebase.NewApp(ctx, conf, opt)
if err != nil {
	log.Fatalln("Error initializing app:", err)
}

client, err := app.Database(ctx)
if err != nil {
	log.Fatalln("Error initializing database client:", err)
}

// The app only has access as defined in the Security Rules
ref := client.NewRef("/some_resource")
var data map[string]interface{}
if err := ref.Get(ctx, &data); err != nil {
	log.Fatalln("Error reading from database:", err)
}
fmt.Println(data)

कुछ मामलों में, ऐसा हो सकता है कि एडमिन SDK टूल को ऐसे क्लाइंट के तौर पर काम करना पड़े जिसकी पुष्टि नहीं हुई है. ऐसा करने के लिए, डेटाबेस की पुष्टि करने वाले वैरिएबल को बदलने के लिए, null की वैल्यू दें.

Java
// Fetch the service account key JSON file contents
FileInputStream serviceAccount = new FileInputStream("path/to/serviceAccountCredentials.json");

FirebaseOptions options = new FirebaseOptions.Builder()
    .setCredential(FirebaseCredentials.fromCertificate(serviceAccount))
    // The database URL depends on the location of the database
    .setDatabaseUrl("https://DATABASE_NAME.firebaseio.com")
    .setDatabaseAuthVariableOverride(null)
    .build();
FirebaseApp.initializeApp(options);

// The app only has access to public data as defined in the Security Rules
DatabaseReference ref = FirebaseDatabase
    .getInstance()
    .getReference("/public_resource");
ref.addListenerForSingleValueEvent(new ValueEventListener() {
    @Override
    public void onDataChange(DataSnapshot dataSnapshot) {
        String res = dataSnapshot.getValue();
        System.out.println(res);
    }
});
Node.js के लिए
var admin = require("firebase-admin");

// Fetch the service account key JSON file contents
var serviceAccount = require("path/to/serviceAccountKey.json");

// Initialize the app with a null auth variable, limiting the server's access
admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  // The database URL depends on the location of the database
  databaseURL: "https://DATABASE_NAME.firebaseio.com",
  databaseAuthVariableOverride: null
});

// The app only has access to public data as defined in the Security Rules
var db = admin.database();
var ref = db.ref("/public_resource");
ref.once("value", function(snapshot) {
  console.log(snapshot.val());
});
Python
import firebase_admin
from firebase_admin import credentials
from firebase_admin import db

# Fetch the service account key JSON file contents
cred = credentials.Certificate('path/to/serviceAccountKey.json')

# Initialize the app with a None auth variable, limiting the server's access
firebase_admin.initialize_app(cred, {
    'databaseURL': 'https://databaseName.firebaseio.com',
    'databaseAuthVariableOverride': None
})

# The app only has access to public data as defined in the Security Rules
ref = db.reference('/public_resource')
print(ref.get())
शुरू करें
ctx := context.Background()
// Initialize the app with a nil auth variable, limiting the server's access
var nilMap map[string]interface{}
conf := &firebase.Config{
	DatabaseURL:  "https://databaseName.firebaseio.com",
	AuthOverride: &nilMap,
}

// Fetch the service account key JSON file contents
opt := option.WithCredentialsFile("path/to/serviceAccountKey.json")

app, err := firebase.NewApp(ctx, conf, opt)
if err != nil {
	log.Fatalln("Error initializing app:", err)
}

client, err := app.Database(ctx)
if err != nil {
	log.Fatalln("Error initializing database client:", err)
}

// The app only has access to public data as defined in the Security Rules
ref := client.NewRef("/some_resource")
var data map[string]interface{}
if err := ref.Get(ctx, &data); err != nil {
	log.Fatalln("Error reading from database:", err)
}
fmt.Println(data)

अगले चरण