mirror of
https://github.com/denoland/deno.git
synced 2025-09-22 18:32:28 +00:00

Some checks are pending
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Closes https://github.com/denoland/deno/issues/30534
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
import {
|
|
type CallbackWithError,
|
|
makeCallback,
|
|
} from "ext:deno_node/_fs/_fs_common.ts";
|
|
import {
|
|
getValidatedPath,
|
|
kMaxUserId,
|
|
} from "ext:deno_node/internal/fs/utils.mjs";
|
|
import { validateInteger } from "ext:deno_node/internal/validators.mjs";
|
|
import type { Buffer } from "node:buffer";
|
|
import { promisify } from "ext:deno_node/internal/util.mjs";
|
|
|
|
/**
|
|
* 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(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(path, uid, gid);
|
|
}
|