2023-02-14 11:38:45 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import {
|
|
|
|
type CallbackWithError,
|
|
|
|
makeCallback,
|
2023-03-08 06:44:54 -05:00
|
|
|
} from "ext:deno_node/_fs/_fs_common.ts";
|
2023-02-14 11:38:45 -05:00
|
|
|
import {
|
|
|
|
getValidatedPath,
|
|
|
|
kMaxUserId,
|
2023-03-08 06:44:54 -05:00
|
|
|
} from "ext:deno_node/internal/fs/utils.mjs";
|
|
|
|
import * as pathModule from "ext:deno_node/path.ts";
|
|
|
|
import { validateInteger } from "ext:deno_node/internal/validators.mjs";
|
|
|
|
import type { Buffer } from "ext:deno_node/buffer.ts";
|
|
|
|
import { promisify } from "ext:deno_node/internal/util.mjs";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Asynchronously changes the owner and group
|
|
|
|
* of a file.
|
|
|
|
*/
|
|
|
|
export function chown(
|
|
|
|
path: string | Buffer | URL,
|
|
|
|
uid: number,
|
|
|
|
gid: number,
|
|
|
|
callback: CallbackWithError,
|
|
|
|
) {
|
|
|
|
callback = makeCallback(callback);
|
|
|
|
path = getValidatedPath(path).toString();
|
|
|
|
validateInteger(uid, "uid", -1, kMaxUserId);
|
|
|
|
validateInteger(gid, "gid", -1, kMaxUserId);
|
|
|
|
|
|
|
|
Deno.chown(pathModule.toNamespacedPath(path), uid, gid).then(
|
|
|
|
() => callback(null),
|
|
|
|
callback,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const chownPromise = promisify(chown) as (
|
|
|
|
path: string | Buffer | URL,
|
|
|
|
uid: number,
|
|
|
|
gid: number,
|
|
|
|
) => Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronously changes the owner and group
|
|
|
|
* of a file.
|
|
|
|
*/
|
|
|
|
export function chownSync(
|
|
|
|
path: string | Buffer | URL,
|
|
|
|
uid: number,
|
|
|
|
gid: number,
|
|
|
|
) {
|
|
|
|
path = getValidatedPath(path).toString();
|
|
|
|
validateInteger(uid, "uid", -1, kMaxUserId);
|
|
|
|
validateInteger(gid, "gid", -1, kMaxUserId);
|
|
|
|
|
|
|
|
Deno.chownSync(pathModule.toNamespacedPath(path), uid, gid);
|
|
|
|
}
|