generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove SSO and replace fallback with OIDC.
- Loading branch information
Showing
33 changed files
with
1,150 additions
and
421 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
ElementX/Resources/Localizations/en.lproj/Untranslated.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
"untranslated" = "Untranslated"; | ||
"screenshot_detected_title" = "You took a screenshot"; | ||
"screenshot_detected_message" = "Would you like to submit a bug report?"; | ||
|
||
// MARK: - Authentication | ||
|
||
"authentication_login_title" = "Welcome back!"; | ||
"authentication_login_forgot_password" = "Forgot password"; | ||
|
||
"authentication_server_info_title" = "Choose your server to store your data"; | ||
"authentication_server_info_matrix_description" = "Join millions for free on the largest public server"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
ElementX/Sources/Other/SwiftUI/ErrorHandling/AlertInfo.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// | ||
// Copyright 2021 New Vector Ltd | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
import SwiftUI | ||
|
||
/// A type that describes an alert to be shown to the user. | ||
/// | ||
/// The alert info can be added to the view state bindings and used as an alert's `item`: | ||
/// ``` | ||
/// MyView | ||
/// .alert(item: $viewModel.alertInfo) { $0.alert } | ||
/// ``` | ||
struct AlertInfo<T: Hashable>: Identifiable { | ||
/// An identifier that can be used to distinguish one error from another. | ||
let id: T | ||
/// The alert's title. | ||
let title: String | ||
/// The alert's message (optional). | ||
var message: String? | ||
/// The alert's primary button title and action. Defaults to an Ok button with no action. | ||
var primaryButton: (title: String, action: (() -> Void)?) = (ElementL10n.ok, nil) | ||
/// The alert's secondary button title and action. | ||
var secondaryButton: (title: String, action: (() -> Void)?)? | ||
} | ||
|
||
#warning("Remove the NSError extensions?") | ||
extension AlertInfo { | ||
/// Initialises the type with the title and message from an `NSError` along with the default Ok button. | ||
init?(error: NSError? = nil) where T == Int { | ||
self.init(id: error?.code ?? -1, error: error) | ||
} | ||
|
||
/// Initialises the type with the title and message from an `NSError` along with the default Ok button. | ||
/// - Parameters: | ||
/// - id: An ID that identifies the error. | ||
/// - error: The Error that occurred. | ||
init?(id: T, error: NSError? = nil) { | ||
guard error?.domain != NSURLErrorDomain && error?.code != NSURLErrorCancelled else { return nil } | ||
|
||
self.id = id | ||
title = error?.userInfo[NSLocalizedFailureReasonErrorKey] as? String ?? ElementL10n.dialogTitleError | ||
message = error?.userInfo[NSLocalizedDescriptionKey] as? String ?? ElementL10n.unknownError | ||
} | ||
} | ||
|
||
extension AlertInfo { | ||
private var messageText: Text? { | ||
guard let message = message else { return nil } | ||
return Text(message) | ||
} | ||
|
||
/// Returns a SwiftUI `Alert` created from this alert info, using default button | ||
/// styles for both primary and (if set) secondary buttons. | ||
var alert: Alert { | ||
if let secondaryButton = secondaryButton { | ||
return Alert(title: Text(title), | ||
message: messageText, | ||
primaryButton: alertButton(for: primaryButton), | ||
secondaryButton: alertButton(for: secondaryButton)) | ||
} else { | ||
return Alert(title: Text(title), | ||
message: messageText, | ||
dismissButton: alertButton(for: primaryButton)) | ||
} | ||
} | ||
|
||
private func alertButton(for buttonParameters: (title: String, action: (() -> Void)?)) -> Alert.Button { | ||
guard let action = buttonParameters.action else { | ||
return .default(Text(buttonParameters.title)) | ||
} | ||
|
||
return .default(Text(buttonParameters.title), action: action) | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
ElementX/Sources/Screens/Authentication/AuthenticationHomeserverViewData.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// | ||
// Copyright 2022 New Vector Ltd | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
import Foundation | ||
|
||
/// Information about a homeserver that is ready for display in the authentication flow. | ||
struct AuthenticationHomeserverViewData: Equatable { | ||
/// The homeserver string to be shown to the user. | ||
let address: String | ||
/// Whether or not the homeserver is matrix.org. | ||
let isMatrixDotOrg: Bool | ||
/// The types login supported by the homeserver. | ||
let loginMode: LoginMode | ||
} | ||
|
||
extension AuthenticationHomeserverViewData { | ||
/// Temporary initialiser for use until the FFI has homeserver discovery etc. | ||
init(address: String) { | ||
self.address = HomeserverAddress.sanitized(address).components(separatedBy: "://").last ?? address | ||
isMatrixDotOrg = address == "matrix.org" | ||
loginMode = .password | ||
} | ||
} | ||
|
||
// MARK: - Mocks | ||
|
||
extension AuthenticationHomeserverViewData { | ||
/// A mock homeserver that is configured just like matrix.org. | ||
static var mockMatrixDotOrg: AuthenticationHomeserverViewData { | ||
AuthenticationHomeserverViewData(address: "matrix.org", | ||
isMatrixDotOrg: true, | ||
loginMode: .password) | ||
} | ||
|
||
/// A mock homeserver that supports login and registration via a password but has no SSO providers. | ||
static var mockBasicServer: AuthenticationHomeserverViewData { | ||
AuthenticationHomeserverViewData(address: "example.com", | ||
isMatrixDotOrg: false, | ||
loginMode: .password) | ||
} | ||
|
||
/// A mock homeserver that supports only supports authentication via a single SSO provider. | ||
static var mockOIDC: AuthenticationHomeserverViewData { | ||
AuthenticationHomeserverViewData(address: "company.com", | ||
isMatrixDotOrg: false, | ||
// swiftlint:disable:next force_unwrapping | ||
loginMode: .oidc(URL(string: "https://auth.company.com")!)) | ||
} | ||
|
||
} |
Oops, something went wrong.