1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
|
import AVFoundation
import Cocoa
import Combine
import Sparkle
/*
Copyright (C) 2024 Rubén Beltrán del Río
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 https://captura.tranquil.systems.
*/
import SwiftUI
@main
struct CapturaApp: App {
@NSApplicationDelegateAdaptor(CapturaAppDelegate.self) var appDelegate
var body: some Scene {
WindowGroup {
PreferencesScreen()
.handlesExternalEvents(
preferring: Set(arrayLiteral: "PreferencesScreen"), allowing: Set(arrayLiteral: "*")
)
.frame(width: 650, height: 450)
}
.handlesExternalEvents(matching: Set(arrayLiteral: "PreferencesScreen"))
//.modelContainer(for: CapturaRemoteFile.self)
}
}
@objc(CapturaAppDelegate) class CapturaAppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate
{
@Environment(\.openURL) var openURL
var statusItem: NSStatusItem!
var captureState: CaptureState = .idle
var recordingWindow: RecordingWindow? = nil
var preferencesWindow: PreferencesWindow? = nil
var boxListener: AnyCancellable? = nil
var popover: NSPopover? = nil
var helpShown = false
var captureSession: CapturaCaptureSession? = nil
var images: [CGImage] = []
var outputFile: CapturaFile? = nil
var gifCallbackTimer = ContinuousClock.now
var pixelDensity: CGFloat = 1.0
var stopTimer: DispatchWorkItem?
var remoteFiles: [CapturaRemoteFile] = []
var captureSessionConfiguration: CaptureSessionConfiguration = CaptureSessionConfiguration()
// Sparkle Configuration
@IBOutlet var checkForUpdatesMenuItem: NSMenuItem!
let updaterController: SPUStandardUpdaterController = SPUStandardUpdaterController(
startingUpdater: true, updaterDelegate: nil, userDriverDelegate: nil)
@objc dynamic var scriptedPreferences: ScriptedPreferences = ScriptedPreferences()
func applicationDidFinishLaunching(_ notification: Notification) {
setupStatusBar()
NotificationCenter.default.addObserver(
self,
selector: #selector(self.didReceiveNotification(_:)),
name: nil,
object: nil)
closeWindow()
fetchRemoteItems()
}
// MARK: - Setup Functions
private func setupStatusBar() {
statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)
if let button = statusItem.button {
if let image = NSImage(named: "MenuBar/Idle") {
image.isTemplate = true
image.size = NSSize(width: 18, height: 18)
button.image = image
}
}
statusItem.isVisible = true
statusItem.menu = NSMenu()
statusItem.menu?.delegate = self
// Create the Popover
popover = NSPopover()
popover?.contentViewController = HelpPopoverViewController()
popover?.behavior = .transient
setupMenu()
}
private func setupMenu() {
statusItem.menu?.removeAllItems()
statusItem.menu?.addItem(
NSMenuItem(
title: "Record", action: #selector(CapturaAppDelegate.onClickStartRecording),
keyEquivalent: ""))
if remoteFiles.count > 0 {
statusItem.menu?.addItem(NSMenuItem.separator())
for remoteFile in remoteFiles {
let remoteFileItem = NSMenuItem(
title: remoteFile.name, action: #selector(CapturaAppDelegate.onClickRemoteFile),
keyEquivalent: "")
remoteFileItem.representedObject = remoteFile
statusItem.menu?.addItem(remoteFileItem)
}
}
statusItem.menu?.addItem(NSMenuItem.separator())
statusItem.menu?.addItem(
NSMenuItem(
title: "Open Local Folder", action: #selector(CapturaAppDelegate.onOpenFolder),
keyEquivalent: ""))
statusItem.menu?.addItem(NSMenuItem.separator())
checkForUpdatesMenuItem = NSMenuItem(
title: "Check for Updates",
action: #selector(SPUStandardUpdaterController.checkForUpdates(_:)), keyEquivalent: "")
checkForUpdatesMenuItem.target = updaterController
statusItem.menu?.addItem(checkForUpdatesMenuItem)
statusItem.menu?.addItem(
NSMenuItem(
title: "Preferences", action: #selector(CapturaAppDelegate.onOpenPreferences),
keyEquivalent: ""))
statusItem.menu?.addItem(
NSMenuItem(title: "Quit", action: #selector(CapturaAppDelegate.onQuit), keyEquivalent: ""))
}
private func closeWindow() {
if let window = NSApplication.shared.windows.first {
window.close()
}
}
// MARK: - URL Event Handler
func application(_ application: NSApplication, open urls: [URL]) {
if CapturaSettings.shouldAllowURLAutomation {
for url in urls {
if let action = CapturaURLDecoder.decodeParams(url: url) {
switch action {
case let .configure(config):
NotificationCenter.default.post(
name: .setConfiguration, object: nil,
userInfo: [
"config": config
])
case let .record(config):
NotificationCenter.default.post(
name: .setCaptureSessionConfiguration, object: nil,
userInfo: [
"config": config
])
NotificationCenter.default.post(name: .startAreaSelection, object: nil, userInfo: nil)
}
}
}
} else {
let alert = NSAlert()
alert.messageText = "URL Automation Prevented"
alert.informativeText =
"A website or application attempted to record your screen using URL Automation. If you want to allow this, enable it in Preferences."
alert.alertStyle = .warning
alert.addButton(withTitle: "OK")
alert.runModal()
}
}
// MARK: - UI Event Handlers
func menuWillOpen(_ menu: NSMenu) {
if captureState != .idle {
menu.cancelTrackingWithoutAnimation()
if captureState == .selectingArea {
NotificationCenter.default.post(name: .startRecording, object: nil, userInfo: nil)
return
}
if captureState == .recording {
NotificationCenter.default.post(name: .stopRecording, object: nil, userInfo: nil)
return
}
}
}
@objc private func onClickStartRecording() {
NotificationCenter.default.post(name: .startAreaSelection, object: nil, userInfo: nil)
}
@objc private func onOpenPreferences() {
NSApp.activate(ignoringOtherApps: true)
if preferencesWindow == nil {
preferencesWindow = PreferencesWindow()
} else {
preferencesWindow?.makeKeyAndOrderFront(nil)
preferencesWindow?.orderFrontRegardless()
}
}
@objc private func onOpenFolder() {
if let directory = FileManager.default.urls(for: .picturesDirectory, in: .userDomainMask).first?
.appendingPathComponent("captura")
{
NSWorkspace.shared.open(directory)
}
}
@objc private func onClickRemoteFile(_ sender: NSMenuItem) {
if let remoteFile = sender.representedObject as? CapturaRemoteFile {
if let urlString = remoteFile.url {
if let url = URL(string: urlString) {
NSWorkspace.shared.open(url)
}
}
}
}
@objc private func onQuit() {
NSApplication.shared.terminate(self)
}
// MARK: - App State Event Listeners
@objc func didReceiveNotification(_ notification: Notification) {
switch notification.name {
case .startAreaSelection:
startAreaSelection()
case .startRecording:
startRecording()
case .stopRecording:
stopRecording()
case .finalizeRecording:
DispatchQueue.main.async {
self.finalizeRecording()
}
case .reset:
reset()
case .failedToStart:
DispatchQueue.main.async {
self.failed(true)
}
case .failedtoUpload:
DispatchQueue.main.async {
self.failed()
}
case .receivedFrame:
if let frame = notification.userInfo?["frame"] {
receivedFrame(frame as! CVImageBuffer)
}
case .setConfiguration:
DispatchQueue.main.async {
if let userInfo = notification.userInfo {
if let config = userInfo["config"] as? ConfigureAction {
self.setConfiguration(config)
}
}
}
case .reloadConfiguration:
reloadConfiguration()
case .setCaptureSessionConfiguration:
if let userInfo = notification.userInfo {
if let config = userInfo["config"] as? RecordAction {
setCaptureSessionConfiguration(config)
}
}
case .NSManagedObjectContextObjectsDidChange:
DispatchQueue.main.async {
self.fetchRemoteItems()
self.setupMenu()
}
default:
return
}
}
func startAreaSelection() {
helpShown = false
if captureState != .selectingArea {
captureState = .selectingArea
updateImage()
if let button = statusItem.button {
let rectInWindow = button.convert(button.bounds, to: nil)
let rectInScreen = button.window?.convertToScreen(rectInWindow)
NSApp.activate(ignoringOtherApps: true)
recordingWindow = RecordingWindow(captureSessionConfiguration, rectInScreen)
recordingWindow?.makeKeyAndOrderFront(nil)
recordingWindow?.orderFrontRegardless()
boxListener = recordingWindow?.recordingContentView.$box
.debounce(for: .seconds(0.3), scheduler: RunLoop.main)
.sink { newValue in
if newValue != nil {
self.updateImage()
if !self.helpShown {
self.helpShown = true
self.showPopoverWithMessage("Click here when you're ready to record.")
}
}
}
}
}
}
func startRecording() {
captureState = .recording
updateImage()
outputFile = nil
images = []
pixelDensity = recordingWindow?.pixelDensity ?? 1.0
recordingWindow?.recordingContentView.startRecording()
if let box = recordingWindow?.recordingContentView.box {
if let screen = recordingWindow?.screen {
captureSession = CapturaCaptureSession(screen, box: box)
if let captureSession {
stopTimer = DispatchWorkItem {
self.stopRecording()
}
DispatchQueue.main.asyncAfter(
deadline: .now() + Double(captureSessionConfiguration.maxLength), execute: stopTimer!)
outputFile = CapturaFile()
if captureSessionConfiguration.shouldSaveMp4 {
captureSession.startRecording(to: outputFile!.mp4URL)
} else {
captureSession.startRunning()
}
return
}
}
}
NotificationCenter.default.post(name: .failedToStart, object: nil, userInfo: nil)
}
func stopRecording() {
captureState = .uploading
updateImage()
stop()
Task.detached {
if self.captureSessionConfiguration.shouldSaveGif {
if let outputFile = self.outputFile {
await GifRenderer.render(
self.images, at: self.captureSessionConfiguration.frameRate, to: outputFile.gifURL)
}
}
let wasSuccessful = await self.uploadOrCopy()
if wasSuccessful {
NotificationCenter.default.post(name: .finalizeRecording, object: nil, userInfo: nil)
} else {
NotificationCenter.default.post(name: .failedtoUpload, object: nil, userInfo: nil)
}
}
}
func finalizeRecording() {
captureState = .uploaded
updateImage()
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
NotificationCenter.default.post(name: .reset, object: nil, userInfo: nil)
}
}
func reset() {
captureState = .idle
updateImage()
captureSessionConfiguration = CaptureSessionConfiguration()
stop()
}
func receivedFrame(_ frame: CVImageBuffer) {
let now = ContinuousClock.now
if now - gifCallbackTimer
> .nanoseconds(1_000_000_000 / UInt64(captureSessionConfiguration.frameRate))
{
gifCallbackTimer = now
DispatchQueue.main.async {
if var cgImage = frame.cgImage {
if self.pixelDensity > 1 {
cgImage = cgImage.resize(by: self.pixelDensity) ?? cgImage
}
self.images.append(cgImage)
}
}
}
}
func failed(_ requestPermission: Bool = false) {
captureState = .error
updateImage()
if requestPermission {
requestPermissionToRecord()
}
stop()
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
NotificationCenter.default.post(name: .reset, object: nil, userInfo: nil)
}
}
func setConfiguration(_ config: ConfigureAction) {
CapturaSettings.apply(config)
}
func reloadConfiguration() {
self.captureSessionConfiguration = CaptureSessionConfiguration()
}
func setCaptureSessionConfiguration(_ config: RecordAction) {
self.captureSessionConfiguration = CaptureSessionConfiguration(from: config)
}
// MARK: - CoreData
private func fetchRemoteItems() {
let viewContext = PersistenceController.shared.container.viewContext
let fetchRequest = NSFetchRequest<CapturaRemoteFile>(entityName: "CapturaRemoteFile")
fetchRequest.fetchLimit = 5
fetchRequest.sortDescriptors = [NSSortDescriptor(key: "timestamp", ascending: false)]
let results = try? viewContext.fetch(fetchRequest)
remoteFiles = results ?? []
}
// MARK: - Presentation Helpers
private func requestPermissionToRecord() {
showPopoverWithMessage("Please grant Captura permission to record")
if let url = URL(
string: "x-apple.systempreferences:com.apple.preference.security?Privacy_ScreenRecording")
{
NSWorkspace.shared.open(url)
}
}
private func showPopoverWithMessage(_ message: String) {
if let button = statusItem.button {
(self.popover?.contentViewController as? HelpPopoverViewController)?.updateLabel(message)
self.popover?.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY)
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
self.popover?.performClose(nil)
}
}
}
private func updateImage() {
if let button = statusItem.button {
let image: String =
switch captureState {
case .idle:
"MenuBar/Idle"
case .selectingArea:
if recordingWindow?.recordingContentView.box != nil {
"MenuBar/Ready to Record"
} else {
"MenuBar/Selecting"
}
case .recording:
"MenuBar/Stop Frame 1"
case .uploading:
"MenuBar/Upload Frame 1"
case .uploaded:
"MenuBar/OK"
case .error:
"MenuBar/ERR"
}
if let image = NSImage(named: image) {
image.isTemplate = true
image.size = NSSize(width: 18, height: 18)
button.image = image
}
}
}
private func stop() {
stopTimer?.cancel()
captureSession?.stopRunning()
captureSession = nil
boxListener?.cancel()
recordingWindow?.close()
recordingWindow = nil
}
private func uploadOrCopy() async -> Bool {
if captureSessionConfiguration.shouldUseBackend {
let result = await uploadToBackend()
if result && !captureSessionConfiguration.shouldKeepLocalFiles {
deleteLocalFiles()
}
return result
} else {
copyLocalToClipboard()
return true
}
}
private func copyLocalToClipboard() {
let fileType: NSPasteboard.PasteboardType = .init(
rawValue: captureSessionConfiguration.shouldSaveGif ? "com.compuserve.gif" : "public.mpeg-4")
if let url = captureSessionConfiguration.shouldSaveGif ? outputFile?.gifURL : outputFile?.mp4URL
{
if let data = try? Data(contentsOf: url) {
let pasteboard = NSPasteboard.general
pasteboard.declareTypes([fileType], owner: nil)
pasteboard.setData(data, forType: fileType)
}
}
}
private func uploadToBackend() async -> Bool {
let contentType = captureSessionConfiguration.shouldUploadGif ? "image/gif" : "video/mp4"
if let url = captureSessionConfiguration.shouldUploadGif
? outputFile?.gifURL : outputFile?.mp4URL
{
if let data = try? Data(contentsOf: url) {
if let remoteUrl = captureSessionConfiguration.backend {
var request = URLRequest(url: remoteUrl)
request.httpMethod = "POST"
request.httpBody = data
request.setValue(contentType, forHTTPHeaderField: "Content-Type")
request.setValue("Captura/1.0", forHTTPHeaderField: "User-Agent")
do {
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse {
if httpResponse.statusCode == 201 {
let answer = try JSONDecoder().decode(BackendResponse.self, from: data)
createRemoteFile(answer.url)
return true
}
}
} catch {}
}
}
}
return false
}
private func createRemoteFile(_ url: URL) {
let viewContext = PersistenceController.shared.container.viewContext
let remoteFile = CapturaRemoteFile(context: viewContext)
remoteFile.url = url.absoluteString
remoteFile.timestamp = Date()
try? viewContext.save()
let pasteboard = NSPasteboard.general
pasteboard.declareTypes([.URL], owner: nil)
pasteboard.setString(url.absoluteString, forType: .string)
}
private func deleteLocalFiles() {
if captureSessionConfiguration.shouldSaveGif {
if let url = outputFile?.gifURL {
try? FileManager.default.removeItem(at: url)
}
}
if captureSessionConfiguration.shouldSaveMp4 {
if let url = outputFile?.mp4URL {
try? FileManager.default.removeItem(at: url)
}
}
}
}
|