অ্যাডমিন SDK-এর সাহায্যে, আপনি সম্পূর্ণ অ্যাডমিন বিশেষাধিকার সহ, অথবা সূক্ষ্ম-দানাযুক্ত সীমিত বিশেষাধিকার সহ রিয়েলটাইম ডেটাবেস ডেটা পড়তে এবং লিখতে পারেন। এই নথিতে, আমরা Firebase Realtime Database অ্যাক্সেস করার জন্য আপনার প্রকল্পে Firebase অ্যাডমিন SDK যোগ করার মাধ্যমে আপনাকে গাইড করব।
অ্যাডমিন SDK সেটআপ
আপনার সার্ভারে Firebase রিয়েলটাইম ডেটাবেস দিয়ে শুরু করতে, আপনাকে প্রথমে আপনার পছন্দের ভাষায় Firebase অ্যাডমিন SDK সেট আপ করতে হবে।
অ্যাডমিন SDK প্রমাণীকরণ
Firebase অ্যাডমিন SDK ব্যবহার করে কোনো সার্ভার থেকে Firebase Realtime Database অ্যাক্সেস করার আগে, আপনাকে অবশ্যই Firebase-এর মাধ্যমে আপনার সার্ভারকে প্রমাণীকরণ করতে হবে। আপনি যখন ক্লায়েন্ট অ্যাপের মতো ব্যবহারকারীর অ্যাকাউন্টের শংসাপত্র দিয়ে সাইন ইন করার পরিবর্তে একটি সার্ভারকে প্রমাণীকরণ করেন, তখন আপনি একটি পরিষেবা অ্যাকাউন্ট দিয়ে প্রমাণীকরণ করেন যা আপনার সার্ভারকে Firebase-এ শনাক্ত করে।
আপনি যখন Firebase অ্যাডমিন SDK ব্যবহার করে প্রমাণীকরণ করেন তখন আপনি দুটি ভিন্ন স্তরের অ্যাক্সেস পেতে পারেন:
ফায়ারবেস অ্যাডমিন SDK প্রমাণীকরণের স্তর | |
---|---|
প্রশাসনিক সুবিধা | একটি প্রকল্পের Realtime Database সম্পূর্ণ পঠন এবং লেখার অ্যাক্সেস। প্রশাসনিক কাজগুলি সম্পূর্ণ করতে সতর্কতার সাথে ব্যবহার করুন যেমন ডেটা স্থানান্তর বা পুনর্গঠন যার জন্য আপনার প্রকল্পের সংস্থানগুলিতে সীমাবদ্ধ অ্যাক্সেস প্রয়োজন। |
সীমিত সুবিধা | একটি প্রকল্পের Realtime Database অ্যাক্সেস, শুধুমাত্র আপনার সার্ভারের প্রয়োজনীয় সংস্থানগুলির মধ্যে সীমাবদ্ধ৷ সুনির্দিষ্ট অ্যাক্সেসের প্রয়োজনীয়তা রয়েছে এমন প্রশাসনিক কাজগুলি সম্পূর্ণ করতে এই স্তরটি ব্যবহার করুন। উদাহরণ স্বরূপ, সমগ্র ডাটাবেস জুড়ে ডেটা পড়ার জন্য একটি সারসংক্ষেপ কাজ চালানোর সময়, আপনি একটি শুধুমাত্র-পঠনযোগ্য সুরক্ষা নিয়ম সেট করে এবং তারপর সেই নিয়ম দ্বারা সীমিত বিশেষাধিকার সহ অ্যাডমিন SDK শুরু করে দুর্ঘটনাজনিত লেখা থেকে রক্ষা করতে পারেন৷ |
প্রশাসক বিশেষাধিকার সঙ্গে প্রমাণীকরণ
আপনি যখন আপনার Firebase প্রকল্পে সম্পাদক ভূমিকা সহ একটি পরিষেবা অ্যাকাউন্টের জন্য শংসাপত্র সহ Firebase অ্যাডমিন SDK আরম্ভ করেন, তখন সেই উদাহরণে আপনার প্রকল্পের Realtime Database সম্পূর্ণ পড়ার এবং লেখার অ্যাক্সেস থাকে৷
জাভা
// 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()); });
পাইথন
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'" } } }
তারপর, আপনার সার্ভারে, আপনি যখন ফায়ারবেস অ্যাপ আরম্ভ করবেন, আপনার ডাটাবেস নিয়ম দ্বারা ব্যবহৃত auth
বস্তুটিকে ওভাররাইড করতে databaseAuthVariableOverride
বিকল্পটি ব্যবহার করুন৷ এই কাস্টম auth
অবজেক্টে, আপনার নিরাপত্তা নিয়মে আপনার পরিষেবার প্রতিনিধিত্ব করার জন্য আপনি যে শনাক্তকারী ব্যবহার করেছিলেন তার জন্য uid
ক্ষেত্র সেট করুন।
জাভা
// 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()); });
পাইথন
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
মান প্রদান করে এটি করতে পারেন।
জাভা
// 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()); });
পাইথন
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)
পরবর্তী পদক্ষেপ
- Realtime Database জন্য কীভাবে ডেটা গঠন করতে হয় তা শিখুন।
- একাধিক ডাটাবেস দৃষ্টান্ত জুড়ে ডেটা স্কেল করুন ।
- ডেটা সংরক্ষণ করুন।
- ডেটা পুনরুদ্ধার করুন।
- Firebase কনসোলে আপনার ডাটাবেস দেখুন।