mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
196 lines
12 KiB
C
196 lines
12 KiB
C
![]() |
//
|
||
|
// 1Password Extension
|
||
|
//
|
||
|
// Lovingly handcrafted by Dave Teare, Michael Fey, Rad Azzouz, and Roustem Karimov.
|
||
|
// Copyright (c) 2014 AgileBits. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import <MobileCoreServices/MobileCoreServices.h>
|
||
|
|
||
|
#ifdef __IPHONE_8_0
|
||
|
#import <WebKit/WebKit.h>
|
||
|
#endif
|
||
|
|
||
|
// Login Dictionary keys - Used to get or set the properties of a 1Password Login
|
||
|
#define AppExtensionURLStringKey @"url_string"
|
||
|
#define AppExtensionUsernameKey @"username"
|
||
|
#define AppExtensionPasswordKey @"password"
|
||
|
#define AppExtensionTOTPKey @"totp"
|
||
|
#define AppExtensionTitleKey @"login_title"
|
||
|
#define AppExtensionNotesKey @"notes"
|
||
|
#define AppExtensionSectionTitleKey @"section_title"
|
||
|
#define AppExtensionFieldsKey @"fields"
|
||
|
#define AppExtensionReturnedFieldsKey @"returned_fields"
|
||
|
#define AppExtensionOldPasswordKey @"old_password"
|
||
|
#define AppExtensionPasswordGeneratorOptionsKey @"password_generator_options"
|
||
|
|
||
|
// Password Generator options - Used to set the 1Password Password Generator options when saving a new Login or when changing the password for for an existing Login
|
||
|
#define AppExtensionGeneratedPasswordMinLengthKey @"password_min_length"
|
||
|
#define AppExtensionGeneratedPasswordMaxLengthKey @"password_max_length"
|
||
|
|
||
|
// Errors codes
|
||
|
#define AppExtensionErrorDomain @"OnePasswordExtension"
|
||
|
|
||
|
#define AppExtensionErrorCodeCancelledByUser 0
|
||
|
#define AppExtensionErrorCodeAPINotAvailable 1
|
||
|
#define AppExtensionErrorCodeFailedToContactExtension 2
|
||
|
#define AppExtensionErrorCodeFailedToLoadItemProviderData 3
|
||
|
#define AppExtensionErrorCodeCollectFieldsScriptFailed 4
|
||
|
#define AppExtensionErrorCodeFillFieldsScriptFailed 5
|
||
|
#define AppExtensionErrorCodeUnexpectedData 6
|
||
|
#define AppExtensionErrorCodeFailedToObtainURLStringFromWebView 7
|
||
|
|
||
|
// Note to creators of libraries or frameworks:
|
||
|
// If you include this code within your library, then to prevent potential duplicate symbol
|
||
|
// conflicts for adopters of your library, you should rename the OnePasswordExtension class.
|
||
|
// You might to so by adding your own project prefix, e.g., MyLibraryOnePasswordExtension.
|
||
|
|
||
|
@interface OnePasswordExtension : NSObject
|
||
|
|
||
|
+ (OnePasswordExtension *)sharedExtension;
|
||
|
|
||
|
/*!
|
||
|
Determines if the 1Password Extension is available. Allows you to only show the 1Password login button to those
|
||
|
that can use it. Of course, you could leave the button enabled and educate users about the virtues of strong, unique
|
||
|
passwords instead :)
|
||
|
|
||
|
Note that this returns YES if any app that supports the generic `org-appextension-feature-password-management` feature
|
||
|
is installed.
|
||
|
*/
|
||
|
#ifdef __IPHONE_8_0
|
||
|
- (BOOL)isAppExtensionAvailable NS_EXTENSION_UNAVAILABLE_IOS("Not available in an extension. Check if org-appextension-feature-password-management:// URL can be opened by the app.");
|
||
|
#else
|
||
|
- (BOOL)isAppExtensionAvailable;
|
||
|
#endif
|
||
|
|
||
|
/*!
|
||
|
Called from your login page, this method will find all available logins for the given URLString.
|
||
|
|
||
|
@discussion 1Password will show all matching Login for the naked domain of the given URLString. For example if the user has an item in your 1Password database with "subdomain1.domain.com” as the website and another one with "subdomain2.domain.com”, and the URLString is "https://domain.com", 1Password will show both items.
|
||
|
|
||
|
However, if no matching login is found for "https://domain.com", the 1Password Extension will display the "Show all Logins" button so that the user can search among all the Logins in the database. This is especially useful when the user has a login for "https://olddomain.com".
|
||
|
|
||
|
After the user selects a login, it is stored into an NSDictionary and given to your completion handler. Use the `Login Dictionary keys` above to
|
||
|
extract the needed information and update your UI. The completion block is guaranteed to be called on the main thread.
|
||
|
|
||
|
@param the URLString for matching Logins in the 1Password database.
|
||
|
|
||
|
@param the view controller from which the 1Password Extension is invoked. Usually `self`
|
||
|
|
||
|
@param the sender which triggers the share sheet to show. UIButton, UIBarButtonItem or UIView. Can also be nil on the iPhone, but not on the iPad.
|
||
|
|
||
|
@param Login Dictionary Reply parameter that contains the username, password and the One-Time Password if available.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password Extension has been successfully completed, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)findLoginForURLString:(NSString *)URLString forViewController:(UIViewController *)viewController sender:(id)sender completion:(void (^)(NSDictionary *loginDictionary, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Create a new login within 1Password and allow the user to generate a new password before saving.
|
||
|
|
||
|
@discussion The provided URLString should be unique to your app or service and be identical to what you pass into the find login method.
|
||
|
The completion block is guaranteed to be called on the main
|
||
|
thread.
|
||
|
|
||
|
@param the URLString for the Login to be saved in 1Password.
|
||
|
|
||
|
@param details about the Login to be saved, including custom fields, are stored in an dictionary and given to the 1Password Extension.
|
||
|
|
||
|
@param the Password Generator Options represented in a dictionary form.
|
||
|
|
||
|
@param the view controller from which the 1Password Extension is invoked. Usually `self`
|
||
|
|
||
|
@param the sender which triggers the share sheet to show. UIButton, UIBarButtonItem or UIView. Can also be nil on the iPhone, but not on the iPad.
|
||
|
|
||
|
@param Login dictionary Reply parameter which contain all the information about the newly saved Login. Use the `Login Dictionary keys` above to extract the needed information and update your UI. For example, updating the UI with the newly generated password lets the user know their action was successful.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password Extension has been successfully completed, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)storeLoginForURLString:(NSString *)URLString loginDetails:(NSDictionary *)loginDetailsDictionary passwordGenerationOptions:(NSDictionary *)passwordGenerationOptions forViewController:(UIViewController *)viewController sender:(id)sender completion:(void (^)(NSDictionary *loginDictionary, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Change the password for an existing login within 1Password.
|
||
|
|
||
|
@discussion The provided URLString should be unique to your app or service and be identical to what you pass into the find login method. The completion block is guaranteed to be called on the main thread.
|
||
|
|
||
|
These are the three scenarios that are supported:
|
||
|
1. A signle matching Login is found: 1Password will enter edit mode for that Login and will update its password using the value for AppExtensionPasswordKey.
|
||
|
2. More than a one matching Logins are found: 1Password will display a list of all matching Logins. The user must choose which one to update. Once in edit mode, the Login will be updated with the new password.
|
||
|
3. No matching login is found: 1Password will create a new Login using the optional fields if available to populate its properties.
|
||
|
|
||
|
@param the URLString for the Login to be updated with a new password in 1Password.
|
||
|
|
||
|
@param the details about the Login to be saved, including old password and the username, are stored in an dictionary and given to the 1Password Extension.
|
||
|
|
||
|
@param the Password Generator Options represented in a dictionary form.
|
||
|
|
||
|
@param the view controller from which the 1Password Extension is invoked. Usually `self`
|
||
|
|
||
|
@param the sender which triggers the share sheet to show. UIButton, UIBarButtonItem or UIView. Can also be nil on the iPhone, but not on the iPad.
|
||
|
|
||
|
@param Login dictionary Reply parameter which contain all the information about the newly updated Login, including the newly generated and the old password. Use the `Login Dictionary keys` above to extract the needed information and update your UI. For example, updating the UI with the newly generated password lets the user know their action was successful.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password Extension has been successfully completed, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)changePasswordForLoginForURLString:(NSString *)URLString loginDetails:(NSDictionary *)loginDetailsDict passwordGenerationOptions:(NSDictionary *)passwordGenerationOptions forViewController:(UIViewController *)viewController sender:(id)sender completion:(void (^)(NSDictionary *loginDictionary, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Called from your web view controller, this method will show all the saved logins for the active page in the provided web
|
||
|
view, and automatically fill the HTML form fields. Supports both WKWebView and UIWebView.
|
||
|
|
||
|
@discussion 1Password will show all matching Login for the naked domain of the current website. For example if the user has an item in your 1Password database with "subdomain1.domain.com” as the website and another one with "subdomain2.domain.com”, and the current website is "https://domain.com", 1Password will show both items.
|
||
|
|
||
|
However, if no matching login is found for "https://domain.com", the 1Password Extension will display the "New Login" button so that the user can create a new Login for the current website.
|
||
|
|
||
|
@param the URLString for matching Logins in the 1Password database.
|
||
|
|
||
|
@param the view controller from which the 1Password Extension is invoked. Usually `self`.
|
||
|
|
||
|
@param the sender which triggers the share sheet to show. UIButton, UIBarButtonItem or UIView. Can also be nil on the iPhone, but not on the iPad.
|
||
|
|
||
|
@param success Reply parameter that is YES if the 1Password Extension has been successfully completed or NO otherwise.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password Extension has been successfully completed, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)fillItemIntoWebView:(id)webView forViewController:(UIViewController *)viewController sender:(id)sender showOnlyLogins:(BOOL)yesOrNo completion:(void (^)(BOOL success, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Called in the UIActivityViewController completion block to find out whether or not the user selected the 1Password Extension activity.
|
||
|
|
||
|
@param the bundle identidier of the selected activity in the share sheet.
|
||
|
@return YES if the selected activity is the 1Password extension, NO otherwise.
|
||
|
*/
|
||
|
- (BOOL)isOnePasswordExtensionActivityType:(NSString *)activityType;
|
||
|
|
||
|
/*!
|
||
|
The returned NSExtensionItem can be used to create your own UIActivityViewController. Use `isOnePasswordExtensionActivityType:` and `fillReturnedItems:intoWebView:completion:` in the activity view controller completion block to process the result. The completion block is guaranteed to be called on the main thread.
|
||
|
|
||
|
@param the active UIWebView Or WKWebView. Must not be nil.
|
||
|
|
||
|
@param extension item Reply parameter that is contains all the info required by the 1Password extension if has been successfully completed or nil otherwise.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password extension item has been successfully created, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)createExtensionItemForWebView:(id)webView completion:(void (^)(NSExtensionItem *extensionItem, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Method used in the UIActivityViewController completion block to fill information into a web view.
|
||
|
|
||
|
@param array that contains the selected activity in the share sheet. Empty array if the share sheet is cancelled by the user.
|
||
|
@param the active UIWebView Or WKWebView. Must not be nil.
|
||
|
|
||
|
@param success Reply parameter that is YES if the 1Password Extension has been successfully completed or NO otherwise.
|
||
|
|
||
|
@param error Reply parameter that is nil if the 1Password Extension has been successfully completed, or it contains error information about the completion failure.
|
||
|
*/
|
||
|
- (void)fillReturnedItems:(NSArray *)returnedItems intoWebView:(id)webView completion:(void (^)(BOOL success, NSError *error))completion;
|
||
|
|
||
|
/*!
|
||
|
Deprecated in version 1.3.
|
||
|
@see Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead
|
||
|
*/
|
||
|
- (void)fillLoginIntoWebView:(id)webView forViewController:(UIViewController *)viewController sender:(id)sender completion:(void (^)(BOOL success, NSError *error))completion __attribute__((deprecated("Use fillItemIntoWebView:forViewController:sender:showOnlyLogins:completion: instead. Deprecated in version 1.3")));
|
||
|
@end
|