TestsTested | ✓ |
LangLanguage | SwiftSwift |
License | BSD |
ReleasedLast Release | Mar 2016 |
SPMSupports SPM | ✗ |
Maintained by Vincent Esche.
Sandbox aims to hide the awkward logistics required to let your app access files outside its own scope behind a simple and sane closure-based synchronous API, while keeping you in full control over your app’s logical flow.
Sandbox provides functions for…
func needsPermissionForFileAtURL(fileURL: NSURL, error: NSErrorPointer = nil) -> Bool
func askUserForSecurityScopeForFileAtURL(fileURL: NSURL, error: NSErrorPointer = nil) -> NSURL?
func accessSecurityScopedFileAtURL(fileURL: NSURL, closure: () -> ()) -> Bool
func accessAndIfNeededAskUserForSecurityScopeForFileAtURL(fileURL: NSURL, closure: () -> ()) -> Bool
let permissionManager = PermissionManager.defaultManager
permissionManager.accessAndIfNeededAskUserForSecurityScopeForFileURL(fileURL) {
// read/write fileURL
}
At some point your app may have to access dozens if not hundreds of files from potentially different directories (or even disk volumes). Accessing one file after another (and by that potentially having to ask the user for their permission) is clumsy and will annoy the user rather quickly.
Sandbox provides a convenience function for this very scenario:
func NSURL.groupByCommonPrefixURLs_sbx([NSURL]) -> ([NSURL: [NSURL]])`
It figures out the optimal grouping of resources based on their file paths and as such allows you to reduce number of permission dialogs to the very minimum, like so:
let permissionManager = PermissionManager.defaultManager
for (groupCommonFileURL, groupFileURLs) in NSURL.groupByCommonPrefixURLs_sbx(fileURLs) {
permissionManager.accessAndIfNeededAskUserForSecurityScopeForFileURL(groupCommonFileURL) {
for fileURL in groupFileURLs {
// read/write fileURL
}
}
}
Sandbox contains a demo app. (Note: Make sure to either type in or copy&paste file paths into its text field as with drag&drop the operating system will automatically create a security scope for you.)
Just copy the files in "Sandbox/Classes/..."
into your project.
Alternatively you can install Sandbox into your project with Carthage (github 'regexident/Sandbox'
) or with CocoaPods (pod 'Sandbox'
)
Sandbox is implemented in 100% Swift.
None.
OS X 10.9+
Vincent Esche (@regexident)
Sandbox is available under a modified BSD-3 clause license with the additional requirement of attribution. See the LICENSE
file for more info.