Skip to content

Baza207/NetatmoSwiftSDK

Repository files navigation

NetatmoSwiftSDK

Swift Platforms SwiftPM Carthage CocoaPods Twitter

NetatmoSwiftSDK is a Swift wrapper around the Netatmo API.

This is currently a work in progress. There is a list of currently supported features listed below.

  • Authentication with OAuth2
  • Weather
  • Security
  • Energy
  • AirCare
  • Error Handling

Prerequisites

Before you begin, ensure you have met the following requirements:

Installation

Swift Package Manager

To integrate NetatmoSwiftSDK into your Xcode project using Swift Package Manager, add NetatmoSwiftSDK as a dependency to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/Baza207/NetatmoSwiftSDK.git", .upToNextMajor(from: "0.0.3"))
]

Carthage

To integrate NetatmoSwiftSDK into your Xcode project using Carthage, specify it in your Cartfile with the following:

github "Baza207/NetatmoSwiftSDK" "0.0.3"

CocoaPods

To integrate NetatmoSwiftSDK into your Xcode project using CocoaPods, specify it in your Podfile with the following:

pod 'NetatmoSwiftSDK', '~> 0.0.3'

Usage

Basic Setup

Once you have a client ID and client secret from Netatmo Developer Portal you will also need to create an URI in your Xcode project. To do this you can follow the steps to Register Your URL Scheme in the Apple documentation.

Once you have these items, you can import the NetatmoSwiftSDK framework in your project and set it up for use.

  1. Import NetatmoSwiftSDK in your AppDelegate:
import NetatmoSwiftSDK
  1. Setup NetatmoSwiftSDK by calling configure(clientId:clientSecret:redirectURI:) in application(_:didFinishLaunchingWithOptions:), passing in your client ID and client secret from Netatmo Developer Portal as well as the URI you setup in Xcode Info tab.
NetatmoManager.configure(clientId: "<Client ID>", clientSecret: "<Client Secret>", redirectURI: "<Redirect URI>://auth")
  1. To deal with authentication callbacks you need to handle URL callbacks.

If you use a SceneDelegate then use the following:

func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
    
    guard let url = URLContexts.first?.url else {
        NSLog("No valid URL contexts")
        return
    }
    
    if url.scheme == "<Redirect URI>" && url.host == "auth" else {
        NetatmoManager.authorizationCallback(with: url)
    } else {
        NSLog("No matching URL contexts")
    }
}

Otherwise use this in your AppDelegate:

func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
    
    if url.scheme == "<Redirect URI>" && url.host == "auth" else {
        NetatmoManager.authorizationCallback(with: url)
        return true
    }
    
    NSLog("No matching URL contexts")
    return false
}

Note: If your app supports UIWindowSceneDelegate, then the url callback will not be called in you UIApplicationDelegate.

Authentication

Once you've done the basic setup, you can now authenticate the user.

  1. Listen to changes to authentication state:
listener = NetatmoManager.addAuthStateDidChangeListener { (authState) in
    // Handle state change
}

You should keep track of the listener so that you can remove it when no longer needed with the following:

if let listener = self.listener {
    NetatmoManager.removeAuthStateDidChangeListener(with: listener)
}
  1. Once you're listening to the authentication state, now you can get the URL to allow the user to login and present it with SafariViewController or open(_:options:completionHandler:).
let url: URL
do {
    url = try NetatmoManager.authorizeURL(scope: [.readStation])
} catch {
    // Handle error
    return
}
UIApplication.shared.open(url, options: [:], completionHandler: nil)

Note: Make sure you pass in the correct scopes for the requests you wish to make. Each request will state what scope it requires, otherwise it can be found at https://dev.netatmo.com.

  1. Once the user is brought back to the app, the authentication state will change and trigger the listeners. From here you can then use all the NetatmoWeather, NetatmoSecurity, NetatmoEnergy and NetatmoAircare functions.

  2. NetatmoSwiftSDK will keep track of the user's authentication state in the keychain across launches, and will refresh the token if required. However to logout the user and clear the keychain, call the following:

do {
    try NetatmoManager.logout()
} catch {
    // Handle error
}

Advanced Authentication Setup

For a more detailed explination on how to setup authentication, please refer to Authentication Setup in the Documentation directory.

Testing

For more details on running the tests, please refer to Testing in the Documentation directory.

Contributors

James Barrow

License

MIT License

About

NetatmoSwiftSDK is a Swift wrapper around the Netatmo API.

Topics

Resources

License

Stars

Watchers

Forks

Languages