DEV Community

Cover image for Clean Your Storage Using Appwrite's Swift Cloud Functions
Damodar Lohani for Appwrite

Posted on

Clean Your Storage Using Appwrite's Swift Cloud Functions

Image description

For all those Swift developers out there, we have a good news! We have just announced our Swift SDK to work with the server-side APIs of Appwrite. You can learn more about our Swift SDK in our Swift SDK announcement post.

In this tutorial however, we are going to write, deploy and run a storage cleaner cloud function with Swift. Let's get started.

🤔 What are Appwrite Cloud functions?

Appwrite Functions are a way for you to extend and customize your Appwrite BaaS functionality by executing your custom code. Appwrite can execute your custom code in response to any Appwrite system event like account creation, user login, or document update. You can also schedule your functions to run according to a CRON schedule or start them manually by triggering your function from an HTTP endpoint using the Appwrite client or server APIs.

🗒ī¸ Prerequisites

In order to continue with this tutorial, you need to have an latest version of Appwrite console that you can access and have a project you can use to test this function. If you have not already installed Appwrite, please do so. Installing Appwrite is really simple. Based on your operating system, run one of the following commands. Installation should be done in less than 2 minutes.

Unix

docker run -it --rm \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:0.11.0
Enter fullscreen mode Exit fullscreen mode

Windows CMD

docker run -it --rm ^
    --volume //var/run/docker.sock:/var/run/docker.sock ^
    --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
    --entrypoint="install" ^
    appwrite/appwrite:0.11.0
Enter fullscreen mode Exit fullscreen mode

Windows PowerShell

docker run -it --rm ,
    --volume /var/run/docker.sock:/var/run/docker.sock ,
    --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
    --entrypoint="install" ,
    appwrite/appwrite:0.11.0
Enter fullscreen mode Exit fullscreen mode

You can also find detailed installation instructions on the Appwrite official installation docs.

🔓ī¸ Activate Swift Functions Environment

In order for the Swift environment to be available in Appwrite Cloud Functions, you need to enable it. It can easily be done using the environment variables. In the Appwrite installation folder find .env file. In the file find the environment variable _APP_FUNCTIONS_RUNTIMES and there in the comma separated list add swift-5.5 to make Swift environment available in the Appwrite Functions. After that, you can load updated configuration using docker-compose up -d.

🔑 Initialize Function Project

First, create a project folder where you will create all the necessary files for your function. We will call this folder storage-cleaner. Inside run the following command to create a new Swift project

docker run --rm -it -v $(pwd):/app -w /app swift:5.5 swift package init StorageCleaner
Enter fullscreen mode Exit fullscreen mode

This will initialize a new Swift package project. It should create bunch of files, important ones to notice are:

.
├── Sources/StorageCleaner/main.swift
└── Package.swift
Enter fullscreen mode Exit fullscreen mode

➕ Add Appwrite Swift SDK dependency

Open storage-cleaner folder in your favorite text editor. Add the following code to Package.swift file.

import PackageDescription

let package = Package(
    name: "StorageCleaner",
    dependencies: [
        .package(url: "https://github.com/appwrite/sdk-for-swift", "0.1.0") //TODO update version
    ],
    targets: [
        .executableTarget(
            name: "StorageCleaner",
            dependencies: [
                .product(name: "Appwrite", package: "sdk-for-swift"),
            ]),
        .testTarget(
            name: "StorageCleanerTests",
            dependencies: ["StorageCleaner"]),
    ]
)
Enter fullscreen mode Exit fullscreen mode

Here we are adding Appwrite sdk for swift under dependencies as well as under executable target dependencies.

✍ī¸ Write your Function

Open Sources/StorageCleaner/main.swift and update it with the following code:

import Appwrite
import Foundation

func cleanStorage() throws -> Void {
    let group = DispatchGroup()
    group.enter()
    let daysToExpire = ProcessInfo.processInfo.environment["DAYS_TO_EXPIRE"] 
    if(daysToExpire == nil) {
        throw NSError(domain: "DAYS_TO_EXPIRE environment is required", code: 0)
    }
    let endpoint = ProcessInfo.processInfo.environment["APPWRITE_ENDPOINT"] ?? ""
    let project = ProcessInfo.processInfo.environment["APPWRITE_FUNCTION_PROJECT_ID"] ?? ""

    let key = ProcessInfo.processInfo.environment["APPWRITE_API_KEY"] ?? ""

    let client = Client()
        .setEndpoint(endpoint)
        .setProject(project)
        .setKey(key)

    let storage = Storage(client)

    var deletedFiles = 0
    storage.listFiles(limit: 100, orderType: "DESC") { result in
        switch result {
            case .failure(let error):
                print(error.message)
            case .success(let fileList):
                let timestamp = Calendar.current.date(byAdding: .second, value: -Int(daysToExpire!)!, to: Date())!.timeIntervalSince1970
                print("Timestamp: \(timestamp)")
                for file in fileList.files {
                    let dateCreated = Double(file.dateCreated)
                    print("dateCreated \(dateCreated)")
                    if dateCreated < timestamp {
                        group.enter()
                        storage.deleteFile(fileId: file.id) { result in
                            switch result {
                                case .failure(let error):
                                    print(error)
                                case .success:
                                    deletedFiles += 1
                            }
                            group.leave()
                        }
                    }
                }
        }
        group.leave()
    }
    group.wait()
    print("Total files deleted: \(deletedFiles)")
}

try!
cleanStorage()
Enter fullscreen mode Exit fullscreen mode

The environment variables that we are accessing here are either already available or are later set on the Appwrite Function's settings.

⚙ī¸ Build

In order to deploy this to Appwrite Functions, we need to build the project. Our runtime is based on the slim version of official Swift docker image so we will use the official Swift docker image to build our project.

Using the terminal in the storage-cleaner directory, run the following command

$ docker run --rm -it -v $(pwd):/app -w /app swift:5.5 swift build
Enter fullscreen mode Exit fullscreen mode

This should build the project. Ensure that your folder structure looks like this:

.
├── .build/x86_64-unknown-linux-gnu/debug/StorageCleaner
├── Sources/StorageCleaner/main.swift
└── Package.swift
Enter fullscreen mode Exit fullscreen mode

There might be other files and folders as well.

☁ī¸ Create a Function in Your Appwrite Console

Login to your Appwrite console and open the project of your choosing. There, from the sidebar, tap on the Functions menu. In the functions dashboard, tap the Add Function button.

Add function

A dialog will be presented. Give your function a name of your choosing. We will call it storage cleaner. Next to the environment, we are using Swift, so we will choose Swift 5.5. Then tap create.

🧑‍đŸ’ģ Deploy Tag

Once you tap create in the above step, you are taken to the newly created functions overview page.

You will find the ' Deploy Tag ' button at the bottom of the function's overview page. If you tap that button, you will get instructions for deploying. Switch to the Manual tab.

Deploy

You will need to create a tarfile of your code first. In the command line within your code folder and in bash go ahead and run this:

$ tar -zcvf code.tar.gz --strip-components 1 -C .build/x86_64-unknown-linux-gnu/ debug/StorageCleaner
Enter fullscreen mode Exit fullscreen mode

Once the tarfile is ready, in the Manual tab in the deploy tag dialog, attach the code.tar.gz and in command type ./StorageCleaner.

✅ Activate tag

Once you deploy the tag, it will be listed under tags on the Overview page. And there you will find the option to upgrade

💡 Adding Environment Variables and Schedules

On the function's page, switch to the Settings tab from the Overview tab. A function can be triggered based on an event or a schedule you choose. This particular function will be scheduled. We will schedule it to run every day.

Scroll below to find the Schedule text field. There, paste a CRON Syntax for scheduling. For every day use 0 0 * * *.

Below that, under the Variables section, tap the Add Variable button. and add the following variables

  • APPWRITE_ENDPOINT - Your Appwrite Endpoint (instead of localhost, use the ip address of your machine)
  • APPWRITE_API_KEY - Your Appwrite API key with files.read and files.write permissions
  • DAYS_TO_EXPIRE - Days for files to expire

Finally, tap Update.

✨ī¸ Verify it's working

To verify everything is working, in the Overview tab, tap the Execute Now button. Then visit the Logs tab to verify the output or errors are as expected.

📚ī¸ Resources

Hope you enjoyed this article! We love contributions and encourage you to take a look at our open issues and ongoing RFCs.

If you get stuck anywhere, feel free to reach out to us on our friendly support channels run by humans 👩‍đŸ’ģ.

Here are some handy links for more information:

Top comments (2)

Collapse
 
johnmethew18 profile image
john methew

Awesome explanation, easy to digest and use in projects.
Thanks for posting such a good post here. Keep it up

Collapse
 
lohanidamodar profile image
Damodar Lohani

Thank you 🙏