swc/bundler/tests/.cache/deno/af75a4ca6fef72670fb344d6a0b5e5cbef7949a3.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

63 lines
1.5 KiB
TypeScript

// Loaded from https://deno.land/x/mongo@v0.20.0/src/client.ts
import { assert } from "../deps.ts";
import { Database } from "./database.ts";
import { WireProtocol } from "./protocol/mod.ts";
import { ConnectOptions, Document, ListDatabaseInfo } from "./types.ts";
import { parse } from "./utils/uri.ts";
export class MongoClient {
#protocol?: WireProtocol;
#conn?: Deno.Conn;
async connect(options: ConnectOptions | string) {
let hostname = "127.0.0.1",
port = 27017;
if (typeof options === "string") {
const opt = parse(options);
hostname = opt.servers[0].host;
port = opt.servers[0].port;
}
const conn = await Deno.connect({
hostname,
port,
});
this.#conn = conn;
this.#protocol = new WireProtocol(conn);
await this.#protocol.connect();
}
async listDatabases(options?: {
filter?: Document;
nameOnly?: boolean;
authorizedCollections?: boolean;
comment?: Document;
}): Promise<ListDatabaseInfo[]> {
assert(this.#protocol);
if (!options) {
options = {};
}
const { databases } = await this.#protocol.commandSingle("admin", {
listDatabases: 1,
...options,
});
return databases;
}
database(name: string): Database {
assert(this.#protocol);
return new Database(this.#protocol, name);
}
close() {
if (this.#conn) {
Deno.close(this.#conn.rid);
this.#conn = undefined;
this.#protocol = undefined;
}
}
}