This is the official Swift iOS for Filestack — API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.
- Xcode 11+ (Xcode 12+ required for SPM support)
- Swift 4.2+ / Objective-C
- iOS 11.0+
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate Filestack into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Filestack', '~> 2.9.6'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate Filestack into your Xcode project using Carthage, specify it in your Cartfile
:
github "filestack/filestack-ios" ~> 2.9.6
Run carthage update
to build the framework and drag the built Filestack.framework
into your Xcode project. Additionally, add Filestack.framework
, FilestackSDK.framework
, and ZIPFoundation.framework
to the embedded frameworks build phase of your app's target.
Add https://github.com/filestack/filestack-ios.git
as a Swift Package Manager dependency to your Xcode project.
Alternatively, if you are adding Filestack
to your own Swift Package, declare the dependency in your Package.swift
:
dependencies: [
.package(name: "Filestack", url: "https://github.com/filestack/filestack-ios.git", .upToNextMajor(from: "2.9.6"))
]
Open up Terminal, cd into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:
$ git init
Add Filestack and its dependencies as git submodules by running the following commands:
$ git submodule add https://github.com/filestack/filestack-ios.git
$ git submodule add https://github.com/filestack/filestack-swift.git
$ git submodule add https://github.com/weichsel/ZIPFoundation.git
Open the new filestack-ios
folder, and drag the Filestack.xcodeproj
into the Project Navigator of your application's Xcode project.
It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
Select the Filestack.xcodeproj
in the Project Navigator and verify the deployment target matches that of your application target.
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
In the tab bar at the top of that window, open the "General" panel.
Click on the + button under the "Embedded Binaries" section and choose the Filestack.framework
for iOS.
Repeat the same process for adding FilestackSDK
, and ZIPFoundation
dependent frameworks.
Any source files that need to use the Filestack iOS SDK should import the Filestack
and FilestackSDK
frameworks:
import Filestack
import FilestackSDK
// Initialize a `Policy` with the expiry time and permissions you need.
let oneDayInSeconds: TimeInterval = 60 * 60 * 24 // expires tomorrow
let policy = Policy(// Set your expiry time (24 hours in our case)
expiry: Date(timeIntervalSinceNow: oneDayInSeconds),
// Set the permissions you want your policy to have
call: [.pick, .read, .store])
// Initialize a `Security` object by providing a `Policy` object and your app secret.
// You can find and/or enable your app secret in the Developer Portal.
guard let security = try? Security(policy: policy, appSecret: "YOUR-APP-SECRET") else {
return
}
// Create `Config` object.
let config = Filestack.Config()
// Make sure to assign a callback URL scheme that is handled by your app.
config.callbackURLScheme = "filestackdemo"
let client = Filestack.Client(apiKey: "YOUR-API-KEY", security: security, config: config)
let localURL = URL(string: "file:///an-app-sandbox-friendly-local-url")!
let uploader = client.upload(using: localURL, uploadProgress: { (progress) in
// Here you may update the UI to reflect the upload progress.
print("progress = \(String(describing: progress))")
}) { (response) in
// Try to obtain Filestack handle
if let json = response?.json, let handle = json["handle"] as? String {
// Use Filestack handle
} else if let error = response?.error {
// Handle error
}
}
// The view controller that will be presenting the image picker.
let presentingViewController = self
// The source type (e.g. `.camera`, `.photoLibrary`, or `.documents`)
let sourceType: LocalSource = .camera
// Upload options for any uploaded files.
let uploadOptions: UploadOptions = .defaults
// Store options for any uploaded files.
uploadOptions.storeOptions = StorageOptions(location: .s3, access: .public)
let behavior = .uploadAndStore(uploadOptions: uploadOptions)
let uploader = client.pickFiles(using: presentingViewController,
source: sourceType,
behavior: behavior,
pickCompletionHandler: { (urls) in
// Copy, move, or access the contents of the returned files at this point while they are still available.
// Once this closure call returns, all the files will be automatically removed.
}) { (responses) in
for response in responses {
// Try to obtain Filestack handle
if let json = response?.json, let handle = json["handle"] as? String {
// Use Filestack handle
} else if let error = response?.error {
// Handle error
}
}
}
// OPTIONAL: Monitor upload progress.
let uploadObserver = uploader.progress.observe(\.fractionCompleted, options: [.new]) { (progress, change) in
// TODO: Use `progress` or `change` objects.
})
In all the previous uploading examples, an upload may be cancelled at anytime by calling cancel()
on the Uploader
:
uploader.cancel()
client.folderList(provider: .googleDrive, path: "/", pageToken: nil) { response in
if let error = response.error {
// Handle error
return
}
if let contents = response.contents {
// Contents received — do something with them.
print("Received \(contents.count) entries.")
}
if let nextToken = response.nextToken {
// More contents are available — to retrieve next page, pass this `nextToken` as a parameter in the `folderList` function.
} else {
// No more contents available — we are done.
}
}
// Store options for your uploaded files.
// Here we are saying our storage location is S3 and access for uploaded files should be public.
let storeOptions = StorageOptions(location: .s3, access: .public)
client.store(provider: .googleDrive, path: "/some-large-image.jpg", storeOptions: storeOptions) { (response) in
if let error = response.error {
// Handle error
return
}
if let contents = response.contents {
// Contents received describing the request's result.
}
}
Please make sure to authenticate against the cloud provider first by using the folderList
function before calling store
.
This is a code fragment broken into pieces taken from the demo app (included in this repository) describing the process of launching the picker UI using some of the most relevant config options:
// In case your Filestack account has security enabled, you will need to instantiate a `Security` object.
// We can do this by either configuring a `Policy` and instantiating a `Security` object by passing
// the `Policy` and an `appSecret`, or by instantiating a `Security` object directly by passing an already
// encoded policy together with its corresponding signature — in this example, we will use the 1st method.
// Create `Policy` object with an expiry time and call permissions.
let policy = Policy(expiry: .distantFuture,
call: [.pick, .read, .stat, .write, .writeURL, .store, .convert, .remove, .exif])
// Create `Security` object based on our previously created `Policy` object and app secret obtained from
// https://dev.filestack.com/.
guard let security = try? Security(policy: policy, appSecret: "YOUR-APP-SECRET-HERE") else {
fatalError("Unable to instantiate Security object.")
}
// Create `Config` object.
// IMPORTANT: - Make sure to assign an app scheme URL that matches the one(s) configured in your info.plist
let config = Filestack.Config.builder
.with(callbackURLScheme: "YOUR-APP-URL-SCHEME")
.with(videoQuality: .typeHigh)
.with(imageURLExportPreset: .current)
.with(maximumSelectionLimit: 10)
.withEditorEnabled()
.with(availableCloudSources: [.dropbox, .googledrive, .googlephotos, .customSource])
.with(availableLocalSources: [.camera])
.build()
// Instantiate the Filestack `Client` by passing an API key obtained from https://dev.filestack.com/,
// together with a `Security` and `Config` object.
// If your account does not have security enabled, then you can omit this parameter or set it to `nil`.
let client = Filestack.Client(apiKey: "YOUR-API-KEY-HERE", security: security, config: config)
// Store options for your uploaded files.
// Here we are saying our storage location is S3 and access for uploaded files should be public.
let storeOptions = StorageOptions(location: .s3, access: .public)
// Instantiate picker by passing the `StorageOptions` object we just set up.
let picker = client.picker(storeOptions: storeOptions)
/// After finishing picking, local files are uploaded and cloud files are stored at the store destination.
picker.behavior = .uploadAndStore(uploadOptions: .defaults)
/// After finishing picking, only cloud files are stored at the store destination.
picker.behavior = .storeOnly
// Optional. Set the picker's delegate.
picker.pickerDelegate = self
And implement the PickerNavigationControllerDelegate
protocol in your view controller, i.e.:
extension ViewController: PickerNavigationControllerDelegate {
/// Called when the picker finishes picking files originating from the local device.
func pickerPickedFiles(picker: PickerNavigationController, fileURLs: [URL]) {
switch picker.behavior {
case .storeOnly:
// IMPORTANT: Copy, move, or access the contents of the returned files at this point while they are still available.
// Once this delegate function call returns, all the files will be automatically removed.
// Dismiss the picker since we have finished picking files from the local device, and, in `storeOnly` mode,
// there's no upload phase.
DispatchQueue.main.async {
picker.dismiss(animated: true) {
self.presentAlert(titled: "Success", message: "Finished picking files: \(fileURLs)")
}
}
case let .uploadAndStore(uploadOptions):
// TODO: Handle this case.
break
default:
break
}
}
/// Called when the picker finishes storing a file originating from a cloud source into the destination storage location.
func pickerStoredFile(picker: PickerNavigationController, response: StoreResponse) {
if let contents = response.contents {
// Our cloud file was stored into the destination location.
print("Stored file response: \(contents)")
} else if let error = response.error {
// The store operation failed.
print("Error storing file: \(error)")
}
}
/// Called when the picker finishes uploading a file originating from the local device into the destination storage location.
func pickerUploadedFile(picker: PickerNavigationController, response: JSONResponse?) {
if let contents = response?.json {
// Our local file was stored into the destination location.
print("Uploaded file response: \(contents)")
} else if let error = response?.error {
// The upload operation failed.
print("Error uploading file: \(error)")
}
}
/// Called when the picker reports progress during a file or set of files being uploaded.
func pickerReportedUploadProgress(picker: PickerNavigationController, progress: Float) {
print("Picker \(picker) reported upload progress: \(progress)")
}
}
yourViewController.present(picker, animated: true)
Starting in Filestack SDK 2.3
, background upload support is available. In order to use it in Filestack
for file uploads, simply add the following to your code:
// Set `UploadService.shared.useBackgroundSession` to true to allow uploads in the background.
FilestackSDK.UploadService.shared.useBackgroundSession = true
Starting in Filestack iOS SDK 2.8.0
, SDK users can add their own custom source implementations by following these steps:
-
Create a new view controller that inherits from
UIViewController
and implementsSourceProvider
:class MyCustomSourceProvider: UIViewController, SourceProvider { // 1. Add `sourceProviderDelegate` weak var sourceProviderDelegate: SourceProviderDelegate? // 2. Add initializer. init() { // TODO: Implement initializer. } // 3. Call this function whenever you want to start uploading files. // These should be passed to the source provider delegate as an array of locally stored URLs. @objc func upload() { let urls = Array(urls) dismiss(animated: true) { self.sourceProviderDelegate?.sourceProviderPicked(urls: urls) } } // 4. Call this function whenever you want to dismiss your source provider without uploading. @objc func cancel() { dismiss(animated: true) { self.sourceProviderDelegate?.sourceProviderCancelled() } } // TODO: Continue implementing your view controller. }
-
Set up your custom source:
/// Returns a custom `LocalSource` configured to use an user-provided `SourceProvider`. func customLocalSource() -> LocalSource { // Instantiate your source provider let customProvider = MyCustomSourceProvider() // Optional. Configure your `customProvider` object customProvider.urls = [url1, url2, url3] // Define your custom source let customSource = LocalSource.custom( description: "Custom Source", image: UIImage(named: "icon-custom-source")!, provider: customProvider ) // Return your custom source return customSource }
-
Pass your custom source to your
Config
object:- Using
Filestack.Config.builder
:.with(availableLocalSources: [.camera, .photoLibrary, .documents, customLocalSource()])
- Using
Filestack.Config
directly:config.availableLocalSources = [.camera, .photoLibrary, .documents, customLocalSource()]
- Using
Check the demo app included in this repository showcasing all the topics discussed above.
Filestack iOS SDK follows the Semantic Versioning.
If you have problems, please create a Github Issue.
Please see CONTRIBUTING.md for details.
Thank you to all the contributors.