Skip to content

Commit 15f3d29

Browse files
committed
swift: add trivial example app and fix some public modifiers
updates tailscale/tailscale#13937 Adds a trivial example app for starting up userspace tailscale and making a query to a server on the tailnet.
1 parent d3d676a commit 15f3d29

File tree

21 files changed

+712
-16
lines changed

21 files changed

+712
-16
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"colors" : [
3+
{
4+
"idiom" : "universal"
5+
}
6+
],
7+
"info" : {
8+
"author" : "xcode",
9+
"version" : 1
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "mac",
5+
"scale" : "1x",
6+
"size" : "16x16"
7+
},
8+
{
9+
"idiom" : "mac",
10+
"scale" : "2x",
11+
"size" : "16x16"
12+
},
13+
{
14+
"idiom" : "mac",
15+
"scale" : "1x",
16+
"size" : "32x32"
17+
},
18+
{
19+
"idiom" : "mac",
20+
"scale" : "2x",
21+
"size" : "32x32"
22+
},
23+
{
24+
"idiom" : "mac",
25+
"scale" : "1x",
26+
"size" : "128x128"
27+
},
28+
{
29+
"idiom" : "mac",
30+
"scale" : "2x",
31+
"size" : "128x128"
32+
},
33+
{
34+
"idiom" : "mac",
35+
"scale" : "1x",
36+
"size" : "256x256"
37+
},
38+
{
39+
"idiom" : "mac",
40+
"scale" : "2x",
41+
"size" : "256x256"
42+
},
43+
{
44+
"idiom" : "mac",
45+
"scale" : "1x",
46+
"size" : "512x512"
47+
},
48+
{
49+
"idiom" : "mac",
50+
"scale" : "2x",
51+
"size" : "512x512"
52+
}
53+
],
54+
"info" : {
55+
"author" : "xcode",
56+
"version" : 1
57+
}
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
7+
<key>com.apple.security.files.user-selected.read-only</key>
8+
<true/>
9+
<key>com.apple.security.network.client</key>
10+
<true/>
11+
<key>com.apple.security.network.server</key>
12+
<true/>
13+
</dict>
14+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) Tailscale Inc & AUTHORS
2+
// SPDX-License-Identifier: BSD-3-Clause
3+
4+
import SwiftUI
5+
6+
@main
7+
struct HelloFromTailscaleApp: App {
8+
var body: some Scene {
9+
WindowGroup {
10+
HelloView()
11+
}
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Copyright (c) Tailscale Inc & AUTHORS
2+
// SPDX-License-Identifier: BSD-3-Clause
3+
4+
import SwiftUI
5+
import TailscaleKit
6+
7+
struct HelloView: View {
8+
@ObservedObject var model = HelloViewModel()
9+
10+
var body: some View {
11+
VStack {
12+
Image(systemName: "globe")
13+
.imageScale(.large)
14+
.foregroundStyle(.tint)
15+
Text(model.message)
16+
}
17+
.padding()
18+
}
19+
}
20+
21+
#Preview {
22+
HelloView()
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// Copyright (c) Tailscale Inc & AUTHORS
2+
// SPDX-License-Identifier: BSD-3-Clause
3+
4+
import SwiftUI
5+
import Combine
6+
import TailscaleKit
7+
8+
let logger = Logger()
9+
10+
struct Logger: TailscaleKit.LogSink {
11+
var logFileHandle: Int32? = STDOUT_FILENO
12+
13+
func log(_ message: String) {
14+
print(message)
15+
}
16+
}
17+
18+
class HelloViewModel: ObservableObject, @unchecked Sendable {
19+
@Published var message: String = "Starting..."
20+
21+
// Replace these with an actual auth key and server
22+
let authKey = "your-auth-key-here"
23+
// The sample has a transport exception for http on ts.net...
24+
let tailnetServer = "http://your-server-here.your-tailnet.ts.net"
25+
var node: TailscaleNode?
26+
27+
func getDocumentDirectoryPath() -> URL {
28+
let arrayPaths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
29+
let docDirectoryPath = arrayPaths[0]
30+
return docDirectoryPath
31+
}
32+
33+
init() {
34+
35+
let temp = getDocumentDirectoryPath().absoluteString + "tailscale"
36+
37+
let config = Configuration(hostName: "Hello-From-Tailsacle-Sample-App",
38+
path: temp,
39+
authKey: authKey,
40+
controlURL: kDefaultControlURL,
41+
ephemeral: true)
42+
43+
self.node = try? TailscaleNode(config: config, logger: logger)
44+
45+
Task {
46+
do {
47+
guard let data = try await phoneHome(node: node) else {
48+
await setMessage("Whoops! Node didn't return us anything.")
49+
return
50+
}
51+
await setMessage("\(tailnetServer) says: \(String(data: data, encoding: .utf8) ?? "(crickets!)")")
52+
} catch {
53+
await setMessage("Whoops! An error occurred...\(error)")
54+
}
55+
}
56+
}
57+
58+
func setMessage(_ message: String) async {
59+
await MainActor.run {
60+
self.message = message
61+
}
62+
}
63+
64+
func phoneHome(node: TailscaleNode?) async throws -> Data? {
65+
guard let node else {
66+
await setMessage("Whoops!, No node to connect to...")
67+
return nil
68+
}
69+
70+
await setMessage("Connecting to Tailnet...")
71+
72+
try await node.up()
73+
74+
await setMessage("Phoning " + tailnetServer + "...")
75+
76+
let sessionConfig = try await URLSessionConfiguration.tailscaleSession(node)
77+
let session = URLSession(configuration: sessionConfig)
78+
79+
let url = URL(string: tailnetServer)!
80+
let req = URLRequest(url: url)
81+
let (data, _) = try await session.data(for: req)
82+
return data
83+
}
84+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSAppTransportSecurity</key>
6+
<dict>
7+
<key>NSExceptionDomains</key>
8+
<dict>
9+
<key>ts.net</key>
10+
<dict>
11+
<key>NSExceptionAllowsInsecureHTTPLoads</key>
12+
<true/>
13+
<key>NSIncludesSubdomains</key>
14+
<true/>
15+
</dict>
16+
</dict>
17+
</dict>
18+
</dict>
19+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# TailscaleKitHello
2+
3+
## Instructions
4+
5+
First build TailscaleKit:
6+
7+
From /swift:
8+
```
9+
$ make macos
10+
```
11+
12+
In HelloViewModel, configure an auth key and a server/service to query.
13+
14+
```
15+
let authKey = "your-auth-key-here"
16+
let tailnetServer = "http://your-server-here.your-tailnet.ts.net"
17+
```
18+
19+
Run the project. The output should be the response from the server.

0 commit comments

Comments
 (0)