How to use go mongo-driver db.getUser()

WBOY
Release: 2024-02-08 22:24:24
forward
824 people have browsed it

如何使用 go mongo-driver db.getUser()

php editor Youzi will introduce to you how to use the db.getUser() method in go mongo-driver. When using the MongoDB database, the getUser() method is a very practical function that can be used to obtain detailed information of a specified user. Through the guidance of this article, you will learn how to use this method correctly and obtain the required user information. Read this article and let’s explore this useful feature together!

Question content

I want to get user details of database using go driver.

For example. In mongoshell

> db.getuser("testuser")
null
Copy after login

How do I build bson.m or bson.d for this?

I don’t want to pass additional parameters, just retrieve the user information from the database

var op bson.m
command := bson.d{{"getuser", 1}, {"username", "testuser"}}
err = clientinfo.database(db).runcommand(context.todo(), cmd).decode(&op)
Copy after login

I tried something like the above, but it returned the following error:

(CommandNotFound) no such command: 'getUser'
Copy after login

What am I missing here?

Solution

database.runcommand() is to facilitate calling mongodb’s runcommand() Function, that is, running the specified database command .

In other words, the getuser() function you call in the mongo shell is a function, not a command.

But there is a usersinfo command to get the same data. Its syntax is:

db.runcommand(
   {
     usersinfo: <various>,
     showcredentials: <boolean>,
     showcustomdata: <boolean>,
     showprivileges: <boolean>,
     showauthenticationrestrictions: <boolean>,
     filter: <document>,
     comment: <any>
   }
)
Copy after login

This is how to execute the usersinfo command:

var op bson.m
cmd := bson.d{{key: "usersinfo", value: bson.m{
    "user": "testuser",
    "db":   "admin",
}}}
err = clientinfo.database(db).runcommand(ctx, cmd).decode(&op)
Copy after login

Please note that the usersinfo document has various specifications, such as:

{ usersinfo: 1 }
Copy after login

Returns information about the user in the database running the command. mongosh Provides a db.getusers() helper for invocations of this command.

{ usersinfo: &lt;username&gt; }
Copy after login

Returns information about the specific user that exists in the database running the command. mongosh Provides a db.getuser() helper for invocations of this command.

{ usersinfo: { user: <name>, db: <db> } }
Copy after login

Return information about the user specified by name and database.

{ usersinfo: [ { user: <name>, db: <db> }, ... ] }
{ usersinfo: [ <username1>, ... ] }
Copy after login

Return information about the specified user.

{ foralldbs: true }
Copy after login

Return information about all users in the database.

As you can see, the getuser() command is short for { usersinfo: &lt;username&gt; } and you can call it like this:

var op bson.m
cmd := bson.d{{key: "usersinfo", value: "testuser"}}
err = clientinfo.database(db).runcommand(ctx, cmd).decode(&op)
Copy after login

If you want information about multiple users, you can of course use an array:

cmd := bson.D{{Key: "usersInfo", Value: []string{"testuser", "anotheruser"}}}
Copy after login

The above is the detailed content of How to use go mongo-driver db.getUser(). For more information, please follow other related articles on the PHP Chinese website!

source:stackoverflow.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!