123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- //
- // NCManageDatabase+Video.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 15/03/22.
- // Copyright © 2022 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import Foundation
- import RealmSwift
- import NextcloudKit
- extension NCManageDatabase {
- func addVideoTime(metadata: tableMetadata, time: CMTime?, durationTime: CMTime?) {
- if metadata.livePhoto { return }
- let realm = try! Realm()
- do {
- try realm.safeWrite {
- if let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId).first {
- if let durationTime = durationTime {
- result.duration = durationTime.convertScale(1000, method: .default).value
- }
- if let time = time {
- result.time = time.convertScale(1000, method: .default).value
- }
- realm.add(result, update: .all)
- } else {
- let addObject = tableVideo()
- addObject.account = metadata.account
- if let durationTime = durationTime {
- addObject.duration = durationTime.convertScale(1000, method: .default).value
- }
- addObject.ocId = metadata.ocId
- if let time = time {
- addObject.time = time.convertScale(1000, method: .default).value
- }
- realm.add(addObject, update: .all)
- }
- }
- } catch let error {
- NKCommon.shared.writeLog("Could not write to database: \(error)")
- }
- }
- func addVideoCodec(metadata: tableMetadata, codecNameVideo: String?, codecNameAudio: String?, codecAudioChannelLayout: String?, codecAudioLanguage: String?, codecMaxCompatibility: Bool, codecQuality: String?) {
- let realm = try! Realm()
- do {
- try realm.safeWrite {
- if let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId).first {
- if let codecNameVideo = codecNameVideo { result.codecNameVideo = codecNameVideo }
- if let codecNameAudio = codecNameAudio { result.codecNameAudio = codecNameAudio }
- if let codecAudioChannelLayout = codecAudioChannelLayout { result.codecAudioChannelLayout = codecAudioChannelLayout }
- if let codecAudioLanguage = codecAudioLanguage { result.codecAudioLanguage = codecAudioLanguage }
- result.codecMaxCompatibility = codecMaxCompatibility
- if let codecQuality = codecQuality { result.codecQuality = codecQuality }
- realm.add(result, update: .all)
- } else {
- let addObject = tableVideo()
- addObject.account = metadata.account
- addObject.ocId = metadata.ocId
- addObject.codecNameVideo = codecNameVideo
- addObject.codecNameAudio = codecNameAudio
- addObject.codecAudioChannelLayout = codecAudioChannelLayout
- addObject.codecAudioLanguage = codecAudioLanguage
- addObject.codecMaxCompatibility = codecMaxCompatibility
- addObject.codecQuality = codecQuality
- realm.add(addObject, update: .all)
- }
- }
- } catch let error {
- NKCommon.shared.writeLog("Could not write to database: \(error)")
- }
- }
- func getVideo(metadata: tableMetadata?) -> tableVideo? {
- guard let metadata = metadata else { return nil }
- let realm = try! Realm()
- guard let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId).first else {
- return nil
- }
- return tableVideo.init(value: result)
- }
- func getVideoDurationTime(metadata: tableMetadata?) -> CMTime? {
- guard let metadata = metadata else { return nil }
- if metadata.livePhoto { return nil }
- let realm = try! Realm()
- guard let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId).first else {
- return nil
- }
- if result.duration == 0 { return nil }
- let duration = CMTimeMake(value: result.duration, timescale: 1000)
- return duration
- }
- func getVideoTime(metadata: tableMetadata) -> CMTime? {
- if metadata.livePhoto { return nil }
- let realm = try! Realm()
- guard let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId).first else {
- return nil
- }
- if result.time == 0 { return nil }
- let time = CMTimeMake(value: result.time, timescale: 1000)
- return time
- }
- func deleteVideo(metadata: tableMetadata) {
- let realm = try! Realm()
- do {
- try realm.safeWrite {
- let result = realm.objects(tableVideo.self).filter("account == %@ AND ocId == %@", metadata.account, metadata.ocId)
- realm.delete(result)
- }
- } catch let error {
- NKCommon.shared.writeLog("Could not write to database: \(error)")
- }
- }
- }
|