mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-27 06:25:13 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
# infer-owner
|
|
|
|
Infer the owner of a path based on the owner of its nearest existing parent
|
|
|
|
## USAGE
|
|
|
|
```js
|
|
const inferOwner = require('infer-owner')
|
|
|
|
inferOwner('/some/cache/folder/file').then(owner => {
|
|
// owner is {uid, gid} that should be attached to
|
|
// the /some/cache/folder/file, based on ownership
|
|
// of /some/cache/folder, /some/cache, /some, or /,
|
|
// whichever is the first to exist
|
|
})
|
|
|
|
// same, but not async
|
|
const owner = inferOwner.sync('/some/cache/folder/file')
|
|
|
|
// results are cached! to reset the cache (eg, to change
|
|
// permissions for whatever reason), do this:
|
|
inferOwner.clearCache()
|
|
```
|
|
|
|
This module endeavors to be as performant as possible. Parallel requests
|
|
for ownership of the same path will only stat the directories one time.
|
|
|
|
## API
|
|
|
|
* `inferOwner(path) -> Promise<{ uid, gid }>`
|
|
|
|
If the path exists, return its uid and gid. If it does not, look to
|
|
its parent, then its grandparent, and so on.
|
|
|
|
* `inferOwner(path) -> { uid, gid }`
|
|
|
|
Sync form of `inferOwner(path)`.
|
|
|
|
* `inferOwner.clearCache()`
|
|
|
|
Delete all cached ownership information and in-flight tracking.
|