summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_chmod.ts
blob: eec8c7a8a995ea01ac8d96a406b1d759f5067a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

// TODO(petamoriken): enable prefer-primordials for node polyfills
// deno-lint-ignore-file prefer-primordials

import type { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
import { getValidatedPath } from "ext:deno_node/internal/fs/utils.mjs";
import * as pathModule from "node:path";
import { parseFileMode } from "ext:deno_node/internal/validators.mjs";
import { Buffer } from "node:buffer";
import { promisify } from "ext:deno_node/internal/util.mjs";

export function chmod(
  path: string | Buffer | URL,
  mode: string | number,
  callback: CallbackWithError,
) {
  path = getValidatedPath(path).toString();

  try {
    mode = parseFileMode(mode, "mode");
  } catch (error) {
    // TODO(PolarETech): Errors should not be ignored when Deno.chmod is supported on Windows.
    // https://github.com/denoland/deno_std/issues/2916
    if (Deno.build.os === "windows") {
      mode = 0; // set dummy value to avoid type checking error at Deno.chmod
    } else {
      throw error;
    }
  }

  Deno.chmod(pathModule.toNamespacedPath(path), mode).catch((error) => {
    // Ignore NotSupportedError that occurs on windows
    // https://github.com/denoland/deno_std/issues/2995
    if (!(error instanceof Deno.errors.NotSupported)) {
      throw error;
    }
  }).then(
    () => callback(null),
    callback,
  );
}

export const chmodPromise = promisify(chmod) as (
  path: string | Buffer | URL,
  mode: string | number,
) => Promise<void>;

export function chmodSync(path: string | URL, mode: string | number) {
  path = getValidatedPath(path).toString();

  try {
    mode = parseFileMode(mode, "mode");
  } catch (error) {
    // TODO(PolarETech): Errors should not be ignored when Deno.chmodSync is supported on Windows.
    // https://github.com/denoland/deno_std/issues/2916
    if (Deno.build.os === "windows") {
      mode = 0; // set dummy value to avoid type checking error at Deno.chmodSync
    } else {
      throw error;
    }
  }

  try {
    Deno.chmodSync(pathModule.toNamespacedPath(path), mode);
  } catch (error) {
    // Ignore NotSupportedError that occurs on windows
    // https://github.com/denoland/deno_std/issues/2995
    if (!(error instanceof Deno.errors.NotSupported)) {
      throw error;
    }
  }
}