-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsecure_application_plugin.cc
More file actions
80 lines (65 loc) · 3.29 KB
/
Copy pathsecure_application_plugin.cc
File metadata and controls
80 lines (65 loc) · 3.29 KB
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
#include "include/secure_application/secure_application_plugin.h"
#include <flutter_linux/flutter_linux.h>
#include <gtk/gtk.h>
#include <sys/utsname.h>
#include <cstring>
#define SECURE_APPLICATION_PLUGIN(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), secure_application_plugin_get_type(), \
SecureApplicationPlugin))
struct _SecureApplicationPlugin {
GObject parent_instance;
FlMethodChannel* channel;
};
G_DEFINE_TYPE(SecureApplicationPlugin, secure_application_plugin,
g_object_get_type())
// Mirrors Windows: respond Success() to every method call. The actual lock /
// blur UI is rendered Dart-side by SecureGate, so the native plugin only needs
// to acknowledge channel calls and invoke "lock" on system events.
static void secure_application_plugin_handle_method_call(
SecureApplicationPlugin* self, FlMethodCall* method_call) {
g_autoptr(FlMethodResponse) response = nullptr;
const gchar* method = fl_method_call_get_name(method_call);
if (strcmp(method, "getPlatformVersion") == 0) {
struct utsname uname_data = {};
uname(&uname_data);
g_autofree gchar* version = g_strdup_printf("Linux %s", uname_data.version);
g_autoptr(FlValue) result = fl_value_new_string(version);
response = FL_METHOD_RESPONSE(fl_method_success_response_new(result));
} else {
response = FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
}
fl_method_call_respond(method_call, response, nullptr);
}
static void method_call_cb(FlMethodChannel* channel, FlMethodCall* method_call,
gpointer user_data) {
SecureApplicationPlugin* plugin = SECURE_APPLICATION_PLUGIN(user_data);
secure_application_plugin_handle_method_call(plugin, method_call);
}
static void secure_application_plugin_dispose(GObject* object) {
SecureApplicationPlugin* self = SECURE_APPLICATION_PLUGIN(object);
g_clear_object(&self->channel);
G_OBJECT_CLASS(secure_application_plugin_parent_class)->dispose(object);
}
static void secure_application_plugin_class_init(
SecureApplicationPluginClass* klass) {
G_OBJECT_CLASS(klass)->dispose = secure_application_plugin_dispose;
}
static void secure_application_plugin_init(SecureApplicationPlugin* self) {}
void secure_application_plugin_register_with_registrar(
FlPluginRegistrar* registrar) {
SecureApplicationPlugin* plugin = SECURE_APPLICATION_PLUGIN(
g_object_new(secure_application_plugin_get_type(), nullptr));
g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new();
plugin->channel =
fl_method_channel_new(fl_plugin_registrar_get_messenger(registrar),
"secure_application", FL_METHOD_CODEC(codec));
fl_method_channel_set_method_call_handler(
plugin->channel, method_call_cb, g_object_ref(plugin), g_object_unref);
// NOTE: We deliberately do NOT hook the GTK window-state-event to invoke
// "lock" on iconify the way the Windows plugin hooks SC_MINIMIZE. On Linux,
// local_auth has no platform implementation, so an app that engages
// SecureGate's locked state has no way to authenticate back out — the user
// is stranded on the lock screen. Apps that want explicit lock-on-minimize
// on Linux can call `lock()` themselves from a Dart-side WindowListener.
g_object_unref(plugin);
}