forked from shadowfacts/Tusker
Report instance type/version in Sentry events
This commit is contained in:
parent
671a8e0cb3
commit
d4d42e7856
|
@ -17,7 +17,7 @@ public class InstanceFeatures: ObservableObject {
|
||||||
private let _featuresUpdated = PassthroughSubject<Void, Never>()
|
private let _featuresUpdated = PassthroughSubject<Void, Never>()
|
||||||
public var featuresUpdated: some Publisher<Void, Never> { _featuresUpdated }
|
public var featuresUpdated: some Publisher<Void, Never> { _featuresUpdated }
|
||||||
|
|
||||||
@Published private var instanceType: InstanceType = .mastodon(.vanilla, nil)
|
@Published @_spi(InstanceType) public private(set) var instanceType: InstanceType = .mastodon(.vanilla, nil)
|
||||||
@Published public private(set) var maxStatusChars = 500
|
@Published public private(set) var maxStatusChars = 500
|
||||||
@Published public private(set) var charsReservedPerURL = 23
|
@Published public private(set) var charsReservedPerURL = 23
|
||||||
@Published public private(set) var maxPollOptionChars: Int?
|
@Published public private(set) var maxPollOptionChars: Int?
|
||||||
|
@ -190,7 +190,7 @@ public class InstanceFeatures: ObservableObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
extension InstanceFeatures {
|
extension InstanceFeatures {
|
||||||
enum InstanceType {
|
@_spi(InstanceType) public enum InstanceType {
|
||||||
case mastodon(MastodonType, Version?)
|
case mastodon(MastodonType, Version?)
|
||||||
case pleroma(PleromaType)
|
case pleroma(PleromaType)
|
||||||
case pixelfed
|
case pixelfed
|
||||||
|
@ -230,7 +230,7 @@ extension InstanceFeatures {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum MastodonType {
|
@_spi(InstanceType) public enum MastodonType {
|
||||||
case vanilla
|
case vanilla
|
||||||
case hometown(Version?)
|
case hometown(Version?)
|
||||||
case glitch
|
case glitch
|
||||||
|
@ -249,7 +249,7 @@ extension InstanceFeatures {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum PleromaType {
|
@_spi(InstanceType) public enum PleromaType {
|
||||||
case vanilla(Version?)
|
case vanilla(Version?)
|
||||||
case akkoma(Version?)
|
case akkoma(Version?)
|
||||||
|
|
||||||
|
@ -267,7 +267,7 @@ extension InstanceFeatures {
|
||||||
}
|
}
|
||||||
|
|
||||||
extension InstanceFeatures {
|
extension InstanceFeatures {
|
||||||
struct Version: Equatable, Comparable {
|
@_spi(InstanceType) public struct Version: Equatable, Comparable, CustomStringConvertible {
|
||||||
private static let regex = try! NSRegularExpression(pattern: "^(\\d+)\\.(\\d+)\\.(\\d+).*$")
|
private static let regex = try! NSRegularExpression(pattern: "^(\\d+)\\.(\\d+)\\.(\\d+).*$")
|
||||||
|
|
||||||
let major: Int
|
let major: Int
|
||||||
|
@ -298,11 +298,15 @@ extension InstanceFeatures {
|
||||||
self.patch = patch
|
self.patch = patch
|
||||||
}
|
}
|
||||||
|
|
||||||
static func ==(lhs: Version, rhs: Version) -> Bool {
|
public var description: String {
|
||||||
|
"\(major).\(minor).\(patch)"
|
||||||
|
}
|
||||||
|
|
||||||
|
public static func ==(lhs: Version, rhs: Version) -> Bool {
|
||||||
return lhs.major == rhs.major && lhs.minor == rhs.minor && lhs.patch == rhs.patch
|
return lhs.major == rhs.major && lhs.minor == rhs.minor && lhs.patch == rhs.patch
|
||||||
}
|
}
|
||||||
|
|
||||||
static func < (lhs: InstanceFeatures.Version, rhs: InstanceFeatures.Version) -> Bool {
|
public static func < (lhs: InstanceFeatures.Version, rhs: InstanceFeatures.Version) -> Bool {
|
||||||
if lhs.major < rhs.major {
|
if lhs.major < rhs.major {
|
||||||
return true
|
return true
|
||||||
} else if lhs.major > rhs.major {
|
} else if lhs.major > rhs.major {
|
||||||
|
|
|
@ -114,10 +114,8 @@ private func createBookmarkAction(status: StatusMO, container: StatusSwipeAction
|
||||||
let (status, _) = try await container.mastodonController.run(request)
|
let (status, _) = try await container.mastodonController.run(request)
|
||||||
container.mastodonController.persistentContainer.addOrUpdate(status: status)
|
container.mastodonController.persistentContainer.addOrUpdate(status: status)
|
||||||
} catch {
|
} catch {
|
||||||
if let toastable = container.toastableViewController {
|
let config = ToastConfiguration(from: error, with: "Error \(bookmarked ? "Unb" : "B")ookmarking", in: container.navigationDelegate, retryAction: nil)
|
||||||
let config = ToastConfiguration(from: error, with: "Error \(bookmarked ? "Unb" : "B")ookmarking", in: toastable, retryAction: nil)
|
container.navigationDelegate.showToast(configuration: config, animated: true)
|
||||||
toastable.showToast(configuration: config, animated: true)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -241,12 +241,12 @@ class FollowRequestNotificationCollectionViewCell: UICollectionViewListCell {
|
||||||
} catch let error as Client.Error {
|
} catch let error as Client.Error {
|
||||||
acceptButton.isEnabled = true
|
acceptButton.isEnabled = true
|
||||||
rejectButton.isEnabled = true
|
rejectButton.isEnabled = true
|
||||||
if let toastable = delegate?.toastableViewController {
|
if let delegate = delegate {
|
||||||
let config = ToastConfiguration(from: error, with: "Rejecting Follow", in: toastable) { [weak self] toast in
|
let config = ToastConfiguration(from: error, with: "Rejecting Follow", in: delegate) { [weak self] toast in
|
||||||
toast.dismissToast(animated: true)
|
toast.dismissToast(animated: true)
|
||||||
self?.rejectButtonPressed()
|
self?.rejectButtonPressed()
|
||||||
}
|
}
|
||||||
toastable.showToast(configuration: config, animated: true)
|
delegate.showToast(configuration: config, animated: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -268,12 +268,12 @@ class FollowRequestNotificationCollectionViewCell: UICollectionViewListCell {
|
||||||
acceptButton.isEnabled = true
|
acceptButton.isEnabled = true
|
||||||
rejectButton.isEnabled = true
|
rejectButton.isEnabled = true
|
||||||
|
|
||||||
if let toastable = delegate?.toastableViewController {
|
if let delegate = delegate {
|
||||||
let config = ToastConfiguration(from: error, with: "Accepting Follow", in: toastable) { [weak self] toast in
|
let config = ToastConfiguration(from: error, with: "Accepting Follow", in: delegate) { [weak self] toast in
|
||||||
toast.dismissToast(animated: true)
|
toast.dismissToast(animated: true)
|
||||||
self?.acceptButtonPressed()
|
self?.acceptButtonPressed()
|
||||||
}
|
}
|
||||||
toastable.showToast(configuration: config, animated: true)
|
delegate.showToast(configuration: config, animated: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -132,7 +132,7 @@ class PollFinishedNotificationCollectionViewCell: UICollectionViewListCell {
|
||||||
contentLabel.text = try! doc.text()
|
contentLabel.text = try! doc.text()
|
||||||
|
|
||||||
pollView.mastodonController = mastodonController
|
pollView.mastodonController = mastodonController
|
||||||
pollView.toastableViewController = delegate
|
pollView.delegate = delegate
|
||||||
pollView.updateUI(status: status, poll: poll)
|
pollView.updateUI(status: status, poll: poll)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -193,3 +193,7 @@ extension StatusActionAccountListViewController: ToastableViewController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extension StatusActionAccountListViewController: TuskerNavigationDelegate {
|
||||||
|
nonisolated var apiController: MastodonController! { mastodonController }
|
||||||
|
}
|
||||||
|
|
|
@ -409,10 +409,10 @@ extension MenuActionProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
private func handleError(_ error: Client.Error, title: String) {
|
private func handleError(_ error: Client.Error, title: String) {
|
||||||
if let toastable = self.toastableViewController {
|
if let navigationDelegate {
|
||||||
let config = ToastConfiguration(from: error, with: title, in: toastable, retryAction: nil)
|
let config = ToastConfiguration(from: error, with: title, in: navigationDelegate, retryAction: nil)
|
||||||
DispatchQueue.main.async {
|
DispatchQueue.main.async {
|
||||||
toastable.showToast(configuration: config, animated: true)
|
navigationDelegate.showToast(configuration: config, animated: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ import UIKit
|
||||||
import Combine
|
import Combine
|
||||||
|
|
||||||
@MainActor
|
@MainActor
|
||||||
protocol TimelineLikeCollectionViewController: UIViewController, TimelineLikeControllerDelegate, ToastableViewController {
|
protocol TimelineLikeCollectionViewController: UIViewController, TimelineLikeControllerDelegate, TuskerNavigationDelegate {
|
||||||
associatedtype Section: TimelineLikeCollectionViewSection
|
associatedtype Section: TimelineLikeCollectionViewSection
|
||||||
associatedtype Item: TimelineLikeCollectionViewItem where Item.TimelineItem == Self.TimelineItem
|
associatedtype Item: TimelineLikeCollectionViewItem where Item.TimelineItem == Self.TimelineItem
|
||||||
associatedtype Error: TimelineLikeCollectionViewError
|
associatedtype Error: TimelineLikeCollectionViewError
|
||||||
|
|
|
@ -13,7 +13,7 @@ import ComposeUI
|
||||||
|
|
||||||
@MainActor
|
@MainActor
|
||||||
protocol TuskerNavigationDelegate: UIViewController, ToastableViewController {
|
protocol TuskerNavigationDelegate: UIViewController, ToastableViewController {
|
||||||
var apiController: MastodonController! { get }
|
nonisolated var apiController: MastodonController! { get }
|
||||||
}
|
}
|
||||||
|
|
||||||
extension TuskerNavigationDelegate {
|
extension TuskerNavigationDelegate {
|
||||||
|
|
|
@ -21,7 +21,7 @@ class StatusPollView: UIView {
|
||||||
}()
|
}()
|
||||||
|
|
||||||
weak var mastodonController: MastodonController!
|
weak var mastodonController: MastodonController!
|
||||||
weak var toastableViewController: ToastableViewController?
|
weak var delegate: TuskerNavigationDelegate?
|
||||||
|
|
||||||
private var statusID: String!
|
private var statusID: String!
|
||||||
private(set) var poll: Poll?
|
private(set) var poll: Poll?
|
||||||
|
@ -158,9 +158,9 @@ class StatusPollView: UIView {
|
||||||
DispatchQueue.main.async {
|
DispatchQueue.main.async {
|
||||||
self.updateUI(status: self.mastodonController.persistentContainer.status(for: self.statusID)!, poll: self.poll)
|
self.updateUI(status: self.mastodonController.persistentContainer.status(for: self.statusID)!, poll: self.poll)
|
||||||
|
|
||||||
if let toastable = self.toastableViewController {
|
if let delegate = self.delegate {
|
||||||
let config = ToastConfiguration(from: error, with: "Error Voting", in: toastable, retryAction: nil)
|
let config = ToastConfiguration(from: error, with: "Error Voting", in: delegate, retryAction: nil)
|
||||||
toastable.showToast(configuration: config, animated: true)
|
delegate.showToast(configuration: config, animated: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -392,12 +392,12 @@ class ProfileHeaderView: UIView {
|
||||||
} catch {
|
} catch {
|
||||||
followButton.isEnabled = true
|
followButton.isEnabled = true
|
||||||
followButton.configuration!.showsActivityIndicator = false
|
followButton.configuration!.showsActivityIndicator = false
|
||||||
if let toastable = delegate?.toastableViewController {
|
if let delegate = self.delegate {
|
||||||
let config = ToastConfiguration(from: error, with: "Error \(action)", in: toastable) { toast in
|
let config = ToastConfiguration(from: error, with: "Error \(action)", in: delegate) { toast in
|
||||||
toast.dismissToast(animated: true)
|
toast.dismissToast(animated: true)
|
||||||
self.followPressed()
|
self.followPressed()
|
||||||
}
|
}
|
||||||
toastable.showToast(configuration: config, animated: true)
|
delegate.showToast(configuration: config, animated: true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -213,7 +213,7 @@ extension StatusCollectionViewCell {
|
||||||
|
|
||||||
contentContainer.pollView.isHidden = status.poll == nil
|
contentContainer.pollView.isHidden = status.poll == nil
|
||||||
contentContainer.pollView.mastodonController = mastodonController
|
contentContainer.pollView.mastodonController = mastodonController
|
||||||
contentContainer.pollView.toastableViewController = delegate?.toastableViewController
|
contentContainer.pollView.delegate = delegate
|
||||||
contentContainer.pollView.updateUI(status: status, poll: status.poll)
|
contentContainer.pollView.updateUI(status: status, poll: status.poll)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import UIKit
|
||||||
import Pachyderm
|
import Pachyderm
|
||||||
import Sentry
|
import Sentry
|
||||||
import OSLog
|
import OSLog
|
||||||
|
@_spi(InstanceType) import InstanceFeatures
|
||||||
|
|
||||||
struct ToastConfiguration {
|
struct ToastConfiguration {
|
||||||
var systemImageName: String?
|
var systemImageName: String?
|
||||||
|
@ -39,7 +40,7 @@ struct ToastConfiguration {
|
||||||
}
|
}
|
||||||
|
|
||||||
extension ToastConfiguration {
|
extension ToastConfiguration {
|
||||||
init(from error: Error, with title: String, in viewController: UIViewController, retryAction: ((ToastView) -> Void)?) {
|
init(from error: Error, with title: String, in viewController: TuskerNavigationDelegate, retryAction: ((ToastView) -> Void)?) {
|
||||||
self.init(title: title)
|
self.init(title: title)
|
||||||
// localizedDescription is statically dispatched, so we need to call it after the downcast
|
// localizedDescription is statically dispatched, so we need to call it after the downcast
|
||||||
if let error = error as? Pachyderm.Client.Error {
|
if let error = error as? Pachyderm.Client.Error {
|
||||||
|
@ -59,7 +60,7 @@ extension ToastConfiguration {
|
||||||
viewController.present(reporter, animated: true)
|
viewController.present(reporter, animated: true)
|
||||||
}
|
}
|
||||||
// TODO: this is a bizarre place to do this, but code path covers basically all errors
|
// TODO: this is a bizarre place to do this, but code path covers basically all errors
|
||||||
captureError(error, title: title)
|
captureError(error, in: viewController.apiController, title: title)
|
||||||
} else {
|
} else {
|
||||||
self.subtitle = error.localizedDescription
|
self.subtitle = error.localizedDescription
|
||||||
self.systemImageName = "exclamationmark.triangle"
|
self.systemImageName = "exclamationmark.triangle"
|
||||||
|
@ -70,7 +71,7 @@ extension ToastConfiguration {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
init(from error: Error, with title: String, in viewController: UIViewController, retryAction: @escaping @MainActor (ToastView) async -> Void) {
|
init(from error: Error, with title: String, in viewController: TuskerNavigationDelegate, retryAction: @escaping @MainActor (ToastView) async -> Void) {
|
||||||
self.init(from: error, with: title, in: viewController) { toast in
|
self.init(from: error, with: title, in: viewController) { toast in
|
||||||
Task {
|
Task {
|
||||||
await retryAction(toast)
|
await retryAction(toast)
|
||||||
|
@ -92,7 +93,7 @@ fileprivate extension Pachyderm.Client.Error {
|
||||||
|
|
||||||
private let toastErrorLogger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "ToastError")
|
private let toastErrorLogger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "ToastError")
|
||||||
|
|
||||||
private func captureError(_ error: Client.Error, title: String) {
|
private func captureError(_ error: Client.Error, in mastodonController: MastodonController, title: String) {
|
||||||
let event = Event(error: error)
|
let event = Event(error: error)
|
||||||
event.message = SentryMessage(formatted: "\(title): \(error)")
|
event.message = SentryMessage(formatted: "\(title): \(error)")
|
||||||
event.tags = [
|
event.tags = [
|
||||||
|
@ -125,6 +126,30 @@ private func captureError(_ error: Client.Error, title: String) {
|
||||||
code == "401" || code == "403" || code == "404" || code == "502" {
|
code == "401" || code == "403" || code == "404" || code == "502" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
switch mastodonController.instanceFeatures.instanceType {
|
||||||
|
case .mastodon(let mastodonType, let mastodonVersion):
|
||||||
|
event.tags!["instance_type"] = "mastodon"
|
||||||
|
event.tags!["mastodon_version"] = mastodonVersion?.description ?? "unknown"
|
||||||
|
switch mastodonType {
|
||||||
|
case .vanilla:
|
||||||
|
break
|
||||||
|
case .hometown(_):
|
||||||
|
event.tags!["mastodon_type"] = "hometown"
|
||||||
|
case .glitch:
|
||||||
|
event.tags!["mastodon_type"] = "glitch"
|
||||||
|
}
|
||||||
|
case .pleroma(let pleromaType):
|
||||||
|
event.tags!["instance_type"] = "pleroma"
|
||||||
|
switch pleromaType {
|
||||||
|
case .vanilla(let version):
|
||||||
|
event.tags!["pleroma_version"] = version?.description ?? "unknown"
|
||||||
|
case .akkoma(let version):
|
||||||
|
event.tags!["pleroma_type"] = "akkoma"
|
||||||
|
event.tags!["pleroma_version"] = version?.description ?? "unknown"
|
||||||
|
}
|
||||||
|
case .pixelfed:
|
||||||
|
event.tags!["instance_type"] = "pixelfed"
|
||||||
|
}
|
||||||
SentrySDK.capture(event: event)
|
SentrySDK.capture(event: event)
|
||||||
|
|
||||||
toastErrorLogger.error("\(title, privacy: .public): \(error), \(event.tags!.debugDescription, privacy: .public)")
|
toastErrorLogger.error("\(title, privacy: .public): \(error), \(event.tags!.debugDescription, privacy: .public)")
|
||||||
|
|
Loading…
Reference in New Issue