mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-11 18:28:52 +00:00
ad23da63d0
* core: supporter badges using anonymous BBS credentials * badges in profiles * badge in profiles * process badges * update simplexmq * update simplexmq * change types * fix migration * migration * update simplexmq * fix bot API, schema * fix postgresql build * refactor * postgresql schema * correctly set badges in all cases * badges ffi * plan, bot types * FFI * FFI: export badge symbols * add extra field * refactor badge types to GADT * configurable badge key * add badge to profile, test * ui: badge images * generate badge key and sign badge * badge sign in CLI * fix commands, ui * rename badges * Binary * image size, migration * update badge images, add public key * send badges in more cases * update UI, tests * bot types, schema * postgres schema * tone down badges * revert formula * refactor badges * smaller badges * badge position * better badge position * simpler * position * move position * update simplexmq * show badge after name * badge layout * fix badge * debug badge height * shift badge * fix badge in member name * bigger badge * badge layout * differentiate badge colors * more avatars for the user's profiles * refactor * remove color filter * alerts * multiple keys, old expired * use new BBS api * update badge keys, bot api * presentation header * simplify * parser * update iOS images * update public keys * query plans * update simplexmq * refactor badge types * simplexmq * bot api types * update simplexmq - commoncrypto flag * update simplexmq * pass commoncrypto flag to simplexmq in nix iOS build * ios ui * update core library, fixes * badge layout * badge size * badge gap * remove extensions * simplify * share badge in more events, reverify badge if verification failed * larger files with badges * allow sending larger files * simpler * update simplexmq * better decoder for badge keys * update simplexmq --------- Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com> Co-authored-by: shum <github.shum@liber.li>
315 lines
14 KiB
Swift
315 lines
14 KiB
Swift
//
|
|
// CIFileView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by JRoberts on 28/04/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
// Spec: spec/client/chat-view.md
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
// Spec: spec/client/chat-view.md#CIFileView
|
|
struct CIFileView: View {
|
|
@EnvironmentObject var m: ChatModel
|
|
@EnvironmentObject var theme: AppTheme
|
|
let file: CIFile?
|
|
let edited: Bool
|
|
let senderProfile: LocalProfile?
|
|
var smallViewSize: CGFloat?
|
|
|
|
var body: some View {
|
|
if smallViewSize != nil {
|
|
fileIndicator()
|
|
.simultaneousGesture(TapGesture().onEnded(fileAction))
|
|
} else {
|
|
let metaReserve = edited
|
|
? " "
|
|
: " "
|
|
HStack(alignment: .bottom, spacing: 6) {
|
|
fileIndicator()
|
|
.padding(.top, 5)
|
|
.padding(.bottom, 3)
|
|
if let file = file {
|
|
let prettyFileSize = ByteCountFormatter.string(fromByteCount: file.fileSize, countStyle: .binary)
|
|
VStack(alignment: .leading, spacing: 2) {
|
|
Text(file.fileName)
|
|
.lineLimit(1)
|
|
.multilineTextAlignment(.leading)
|
|
.foregroundColor(theme.colors.onBackground)
|
|
Text(prettyFileSize + metaReserve)
|
|
.font(.caption)
|
|
.lineLimit(1)
|
|
.multilineTextAlignment(.leading)
|
|
.foregroundColor(theme.colors.secondary)
|
|
}
|
|
} else {
|
|
Text(metaReserve)
|
|
}
|
|
}
|
|
.padding(.top, 4)
|
|
.padding(.bottom, 6)
|
|
.padding(.leading, 10)
|
|
.padding(.trailing, 12)
|
|
.simultaneousGesture(TapGesture().onEnded(fileAction))
|
|
.disabled(!itemInteractive)
|
|
}
|
|
}
|
|
|
|
@inline(__always)
|
|
private var itemInteractive: Bool {
|
|
if let file = file {
|
|
switch (file.fileStatus) {
|
|
case .sndStored: return file.fileProtocol == .local
|
|
case .sndTransfer: return false
|
|
case .sndComplete: return true
|
|
case .sndCancelled: return false
|
|
case .sndError: return true
|
|
case .sndWarning: return true
|
|
case .rcvInvitation: return true
|
|
case .rcvAccepted: return true
|
|
case .rcvTransfer: return false
|
|
case .rcvAborted: return true
|
|
case .rcvComplete: return true
|
|
case .rcvCancelled: return false
|
|
case .rcvError: return true
|
|
case .rcvWarning: return true
|
|
case .invalid: return false
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
private func fileAction() {
|
|
logger.debug("CIFileView fileAction")
|
|
if let file = file {
|
|
switch (file.fileStatus) {
|
|
case .rcvInvitation, .rcvAborted:
|
|
if fileSizeValid(file, senderProfile) {
|
|
Task {
|
|
logger.debug("CIFileView fileAction - in .rcvInvitation, .rcvAborted, in Task")
|
|
if let user = m.currentUser {
|
|
await receiveFile(user: user, fileId: file.fileId)
|
|
}
|
|
}
|
|
} else {
|
|
let prettyMaxFileSize = ByteCountFormatter.string(fromByteCount: getMaxFileSize(file.fileProtocol, senderProfile), countStyle: .binary)
|
|
AlertManager.shared.showAlertMsg(
|
|
title: "Large file!",
|
|
message: "Your contact sent a file that is larger than currently supported maximum size (\(prettyMaxFileSize))."
|
|
)
|
|
}
|
|
case .rcvAccepted:
|
|
switch file.fileProtocol {
|
|
case .xftp:
|
|
AlertManager.shared.showAlertMsg(
|
|
title: "Waiting for file",
|
|
message: "File will be received when your contact completes uploading it."
|
|
)
|
|
case .smp:
|
|
AlertManager.shared.showAlertMsg(
|
|
title: "Waiting for file",
|
|
message: "File will be received when your contact is online, please wait or check later!"
|
|
)
|
|
case .local: ()
|
|
}
|
|
case .rcvComplete:
|
|
logger.debug("CIFileView fileAction - in .rcvComplete")
|
|
if let fileSource = getLoadedFileSource(file) {
|
|
saveCryptoFile(fileSource)
|
|
}
|
|
case let .rcvError(rcvFileError):
|
|
logger.debug("CIFileView fileAction - in .rcvError")
|
|
showFileErrorAlert(rcvFileError)
|
|
case let .rcvWarning(rcvFileError):
|
|
logger.debug("CIFileView fileAction - in .rcvWarning")
|
|
showFileErrorAlert(rcvFileError, temporary: true)
|
|
case .sndStored:
|
|
logger.debug("CIFileView fileAction - in .sndStored")
|
|
if file.fileProtocol == .local, let fileSource = getLoadedFileSource(file) {
|
|
saveCryptoFile(fileSource)
|
|
}
|
|
case .sndComplete:
|
|
logger.debug("CIFileView fileAction - in .sndComplete")
|
|
if let fileSource = getLoadedFileSource(file) {
|
|
saveCryptoFile(fileSource)
|
|
}
|
|
case let .sndError(sndFileError):
|
|
logger.debug("CIFileView fileAction - in .sndError")
|
|
showFileErrorAlert(sndFileError)
|
|
case let .sndWarning(sndFileError):
|
|
logger.debug("CIFileView fileAction - in .sndWarning")
|
|
showFileErrorAlert(sndFileError, temporary: true)
|
|
default: break
|
|
}
|
|
}
|
|
}
|
|
|
|
@ViewBuilder private func fileIndicator() -> some View {
|
|
if let file = file {
|
|
switch file.fileStatus {
|
|
case .sndStored:
|
|
switch file.fileProtocol {
|
|
case .xftp: progressView()
|
|
case .smp: fileIcon("doc.fill")
|
|
case .local: fileIcon("doc.fill")
|
|
}
|
|
case let .sndTransfer(sndProgress, sndTotal):
|
|
switch file.fileProtocol {
|
|
case .xftp: progressCircle(sndProgress, sndTotal)
|
|
case .smp: progressView()
|
|
case .local: EmptyView()
|
|
}
|
|
case .sndComplete: fileIcon("doc.fill", innerIcon: "checkmark", innerIconSize: 10)
|
|
case .sndCancelled: fileIcon("doc.fill", innerIcon: "xmark", innerIconSize: 10)
|
|
case .sndError: fileIcon("doc.fill", innerIcon: "xmark", innerIconSize: 10)
|
|
case .sndWarning: fileIcon("doc.fill", innerIcon: "exclamationmark.triangle.fill", innerIconSize: 10)
|
|
case .rcvInvitation:
|
|
if fileSizeValid(file, senderProfile) {
|
|
fileIcon("arrow.down.doc.fill", color: theme.colors.primary)
|
|
} else {
|
|
fileIcon("doc.fill", color: .orange, innerIcon: "exclamationmark", innerIconSize: 12)
|
|
}
|
|
case .rcvAccepted: fileIcon("doc.fill", innerIcon: "ellipsis", innerIconSize: 12)
|
|
case let .rcvTransfer(rcvProgress, rcvTotal):
|
|
if file.fileProtocol == .xftp && rcvProgress < rcvTotal {
|
|
progressCircle(rcvProgress, rcvTotal)
|
|
} else {
|
|
progressView()
|
|
}
|
|
case .rcvAborted:
|
|
fileIcon("doc.fill", color: theme.colors.primary, innerIcon: "exclamationmark.arrow.circlepath", innerIconSize: 12)
|
|
case .rcvComplete: fileIcon("doc.fill")
|
|
case .rcvCancelled: fileIcon("doc.fill", innerIcon: "xmark", innerIconSize: 10)
|
|
case .rcvError: fileIcon("doc.fill", innerIcon: "xmark", innerIconSize: 10)
|
|
case .rcvWarning: fileIcon("doc.fill", innerIcon: "exclamationmark.triangle.fill", innerIconSize: 10)
|
|
case .invalid: fileIcon("doc.fill", innerIcon: "questionmark", innerIconSize: 10)
|
|
}
|
|
} else {
|
|
fileIcon("doc.fill")
|
|
}
|
|
}
|
|
|
|
private func fileIcon(_ icon: String, color: Color = Color(uiColor: .tertiaryLabel), innerIcon: String? = nil, innerIconSize: CGFloat? = nil) -> some View {
|
|
let size = smallViewSize ?? 30
|
|
return ZStack(alignment: .center) {
|
|
Image(systemName: icon)
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: size, height: size)
|
|
.foregroundColor(color)
|
|
if let innerIcon = innerIcon,
|
|
let innerIconSize = innerIconSize, (smallViewSize == nil || file?.showStatusIconInSmallView == true) {
|
|
Image(systemName: innerIcon)
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(maxHeight: 16)
|
|
.frame(width: innerIconSize, height: innerIconSize)
|
|
.foregroundColor(.white)
|
|
.padding(.top, size / 2.5)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func progressView() -> some View {
|
|
ProgressView().frame(width: 30, height: 30)
|
|
}
|
|
|
|
private func progressCircle(_ progress: Int64, _ total: Int64) -> some View {
|
|
Circle()
|
|
.trim(from: 0, to: Double(progress) / Double(total))
|
|
.stroke(
|
|
Color(uiColor: .tertiaryLabel),
|
|
style: StrokeStyle(lineWidth: 3)
|
|
)
|
|
.rotationEffect(.degrees(-90))
|
|
.frame(width: 30, height: 30)
|
|
}
|
|
}
|
|
|
|
func fileSizeValid(_ file: CIFile?, _ senderProfile: LocalProfile?) -> Bool {
|
|
if let file = file {
|
|
return file.fileSize <= getMaxFileSize(file.fileProtocol, senderProfile)
|
|
}
|
|
return false
|
|
}
|
|
|
|
func saveCryptoFile(_ fileSource: CryptoFile) {
|
|
if let cfArgs = fileSource.cryptoArgs {
|
|
let url = getAppFilePath(fileSource.filePath)
|
|
let tempUrl = getTempFilesDirectory().appendingPathComponent(fileSource.filePath)
|
|
Task {
|
|
do {
|
|
try decryptCryptoFile(fromPath: url.path, cryptoArgs: cfArgs, toPath: tempUrl.path)
|
|
await MainActor.run {
|
|
showShareSheet(items: [tempUrl]) {
|
|
removeFile(tempUrl)
|
|
}
|
|
}
|
|
} catch {
|
|
await MainActor.run {
|
|
AlertManager.shared.showAlertMsg(title: "Error decrypting file", message: "Error: \(error.localizedDescription)")
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
let url = getAppFilePath(fileSource.filePath)
|
|
showShareSheet(items: [url])
|
|
}
|
|
}
|
|
|
|
func showFileErrorAlert(_ err: FileError, temporary: Bool = false) {
|
|
let title: String = if temporary {
|
|
NSLocalizedString("Temporary file error", comment: "file error alert title")
|
|
} else {
|
|
NSLocalizedString("File error", comment: "file error alert title")
|
|
}
|
|
if let btn = err.moreInfoButton {
|
|
showAlert(title, message: err.errorInfo) {
|
|
[
|
|
okAlertAction,
|
|
UIAlertAction(title: NSLocalizedString("How it works", comment: "alert button"), style: .default, handler: { _ in
|
|
UIApplication.shared.open(contentModerationPostLink)
|
|
})
|
|
]
|
|
}
|
|
} else {
|
|
showAlert(title, message: err.errorInfo)
|
|
}
|
|
}
|
|
|
|
struct CIFileView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
let im = ItemsModel.shared
|
|
let sentFile: ChatItem = ChatItem(
|
|
chatDir: .directSnd,
|
|
meta: CIMeta.getSample(1, .now, "", .sndSent(sndProgress: .complete), itemEdited: true),
|
|
content: .sndMsgContent(msgContent: .file("")),
|
|
quotedItem: nil,
|
|
file: CIFile.getSample(fileStatus: .sndComplete)
|
|
)
|
|
let fileChatItemWtFile = ChatItem(
|
|
chatDir: .directRcv,
|
|
meta: CIMeta.getSample(1, .now, "", .rcvRead),
|
|
content: .rcvMsgContent(msgContent: .file("")),
|
|
quotedItem: nil,
|
|
file: nil
|
|
)
|
|
Group {
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: sentFile, scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(fileName: "some_long_file_name_here", fileStatus: .rcvInvitation), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(fileStatus: .rcvAccepted), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(fileStatus: .rcvTransfer(rcvProgress: 7, rcvTotal: 10)), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(fileStatus: .rcvCancelled), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(fileSize: 1_000_000_000, fileStatus: .rcvInvitation), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(text: "Hello there", fileStatus: .rcvInvitation), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: ChatItem.getFileMsgContentSample(text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", fileStatus: .rcvInvitation), scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
ChatItemView(chat: Chat.sampleData, im: im, chatItem: fileChatItemWtFile, scrollToItem: { _ in }, scrollToItemId: Binding.constant(nil))
|
|
}
|
|
.environment(\.revealed, false)
|
|
.previewLayout(.fixed(width: 360, height: 360))
|
|
}
|
|
}
|