181 lines
4.9 KiB
Swift
181 lines
4.9 KiB
Swift
//
|
||
// TaskModels.swift
|
||
// suixinkan
|
||
//
|
||
|
||
import Foundation
|
||
|
||
/// 创建任务请求体,对齐 Android `AddTaskRequest`。
|
||
struct AddTaskRequest: Encodable, Sendable, Equatable {
|
||
let scenicId: Int
|
||
let name: String
|
||
let orderNumber: String?
|
||
let remark: String
|
||
let urgentHour: Int
|
||
let cloudFile: [TaskCloudFileItem]
|
||
let uploadFile: [TaskUploadFileItem]
|
||
|
||
enum CodingKeys: String, CodingKey {
|
||
case scenicId = "scenic_id"
|
||
case name
|
||
case orderNumber = "order_number"
|
||
case remark = "photog_remark"
|
||
case urgentHour = "urgent_hour"
|
||
case cloudFile = "cloud_file"
|
||
case uploadFile = "upload_file"
|
||
}
|
||
}
|
||
|
||
/// 云盘文件引用,对齐 Android `CloudFileItem`。
|
||
struct TaskCloudFileItem: Encodable, Sendable, Equatable {
|
||
let fileId: Int
|
||
let remark: String
|
||
|
||
enum CodingKeys: String, CodingKey {
|
||
case fileId = "file_id"
|
||
case remark
|
||
}
|
||
}
|
||
|
||
/// 本地上传文件引用,对齐 Android `UploadFileItem`。
|
||
struct TaskUploadFileItem: Encodable, Sendable, Equatable {
|
||
let fileUrl: String
|
||
let fileName: String
|
||
let remark: String
|
||
|
||
enum CodingKeys: String, CodingKey {
|
||
case fileUrl = "file_url"
|
||
case fileName = "file_name"
|
||
case remark
|
||
}
|
||
}
|
||
|
||
/// 可选关联订单,对齐 Android `AvailableOrderResponse`。
|
||
struct AvailableOrder: Decodable, Sendable, Equatable, Hashable {
|
||
let projectName: String
|
||
let orderNumber: String
|
||
let orderStatus: Int
|
||
let orderStatusLabel: String
|
||
let payTime: String
|
||
let userId: Int
|
||
let userPhone: String
|
||
|
||
enum CodingKeys: String, CodingKey {
|
||
case projectName = "project_name"
|
||
case orderNumber = "order_number"
|
||
case orderStatus = "order_status"
|
||
case orderStatusLabel = "order_status_label"
|
||
case payTime = "pay_time"
|
||
case userId = "user_id"
|
||
case userPhone = "user_phone"
|
||
}
|
||
|
||
init(
|
||
projectName: String = "",
|
||
orderNumber: String = "",
|
||
orderStatus: Int = 0,
|
||
orderStatusLabel: String = "",
|
||
payTime: String = "",
|
||
userId: Int = 0,
|
||
userPhone: String = ""
|
||
) {
|
||
self.projectName = projectName
|
||
self.orderNumber = orderNumber
|
||
self.orderStatus = orderStatus
|
||
self.orderStatusLabel = orderStatusLabel
|
||
self.payTime = payTime
|
||
self.userId = userId
|
||
self.userPhone = userPhone
|
||
}
|
||
}
|
||
|
||
/// 任务素材来源。
|
||
enum TaskFileSource: String, Sendable, Equatable {
|
||
case cloud
|
||
case upload
|
||
}
|
||
|
||
/// 任务素材项,对齐 Android `TaskFileItem`。
|
||
struct TaskFileItem: Sendable, Equatable, Hashable, Identifiable {
|
||
let id: String
|
||
let source: TaskFileSource
|
||
let cloudFile: CloudFile?
|
||
let uploadFileName: String?
|
||
let uploadFileType: Int
|
||
let uploadTaskId: String?
|
||
var uploadFileUrl: String?
|
||
var uploadCoverUrl: String?
|
||
var remark: String
|
||
var isUploading: Bool
|
||
var uploadProgress: Int
|
||
|
||
init(
|
||
id: String? = nil,
|
||
source: TaskFileSource,
|
||
cloudFile: CloudFile? = nil,
|
||
uploadFileUrl: String? = nil,
|
||
uploadFileName: String? = nil,
|
||
uploadFileType: Int = 0,
|
||
uploadCoverUrl: String? = nil,
|
||
remark: String = "",
|
||
uploadTaskId: String? = nil,
|
||
isUploading: Bool = false,
|
||
uploadProgress: Int = 0
|
||
) {
|
||
if let id {
|
||
self.id = id
|
||
} else if source == .cloud, let cloudFile {
|
||
self.id = "cloud_\(cloudFile.id)"
|
||
} else if let uploadTaskId {
|
||
self.id = "upload_\(uploadTaskId)"
|
||
} else {
|
||
self.id = UUID().uuidString
|
||
}
|
||
self.source = source
|
||
self.cloudFile = cloudFile
|
||
self.uploadFileUrl = uploadFileUrl
|
||
self.uploadFileName = uploadFileName
|
||
self.uploadFileType = uploadFileType
|
||
self.uploadCoverUrl = uploadCoverUrl
|
||
self.remark = remark
|
||
self.uploadTaskId = uploadTaskId
|
||
self.isUploading = isUploading
|
||
self.uploadProgress = uploadProgress
|
||
}
|
||
|
||
/// 展示用缩略图 URL。
|
||
var previewURLString: String {
|
||
switch source {
|
||
case .cloud:
|
||
let cover = cloudFile?.coverUrl ?? ""
|
||
if !cover.isEmpty { return cover }
|
||
return cloudFile?.fileUrl ?? ""
|
||
case .upload:
|
||
if uploadFileType == 1 {
|
||
return uploadCoverUrl ?? uploadFileUrl ?? ""
|
||
}
|
||
return uploadFileUrl ?? ""
|
||
}
|
||
}
|
||
|
||
/// 文件类型:1=视频,2=图片。
|
||
var fileType: Int {
|
||
switch source {
|
||
case .cloud:
|
||
return cloudFile?.type ?? 0
|
||
case .upload:
|
||
return uploadFileType
|
||
}
|
||
}
|
||
|
||
/// 展示文件名。
|
||
var displayName: String {
|
||
switch source {
|
||
case .cloud:
|
||
return cloudFile?.name ?? ""
|
||
case .upload:
|
||
return uploadFileName ?? ""
|
||
}
|
||
}
|
||
}
|