-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from quexten/feature/libportal-autotype
Implement libportal autotype
- Loading branch information
Showing
5 changed files
with
86 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
//go:build linux && !uinput | ||
|
||
package autotype | ||
|
||
import ( | ||
"fmt" | ||
"time" | ||
|
||
"github.com/godbus/dbus/v5" | ||
) | ||
|
||
var globalID = 0 | ||
|
||
const autoTypeDelay = 1 * time.Millisecond | ||
|
||
func TypeString(textToType string, layout string) { | ||
bus, err := dbus.SessionBus() | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
obj := bus.Object("org.freedesktop.portal.Desktop", "/org/freedesktop/portal/desktop") | ||
obj.AddMatchSignal("org.freedesktop.portal.Request", "Response") | ||
|
||
globalID++ | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.CreateSession", 0, map[string]dbus.Variant{ | ||
"session_handle_token": dbus.MakeVariant("u" + fmt.Sprint(globalID)), | ||
}) | ||
|
||
signals := make(chan *dbus.Signal, 10) | ||
bus.Signal(signals) | ||
|
||
var state = 0 | ||
var sessionHandle dbus.ObjectPath | ||
|
||
for { | ||
select { | ||
case message := <-signals: | ||
fmt.Println("Message:", message) | ||
if state == 0 { | ||
result := message.Body[1].(map[string]dbus.Variant) | ||
resultSessionHandle := result["session_handle"] | ||
sessionHandle = dbus.ObjectPath(resultSessionHandle.String()[1 : len(resultSessionHandle.String())-1]) | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.SelectDevices", 0, sessionHandle, map[string]dbus.Variant{}) | ||
state = 1 | ||
} else if state == 1 { | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.Start", 0, sessionHandle, "", map[string]dbus.Variant{}) | ||
state = 2 | ||
} else if state == 2 { | ||
state = 3 | ||
time.Sleep(200 * time.Millisecond) | ||
for _, char := range textToType { | ||
if char == '\t' { | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.NotifyKeyboardKeycode", 0, sessionHandle, map[string]dbus.Variant{}, 15, uint32(1)) | ||
time.Sleep(autoTypeDelay) | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.NotifyKeyboardKeycode", 0, sessionHandle, map[string]dbus.Variant{}, 15, uint32(0)) | ||
time.Sleep(autoTypeDelay) | ||
} else { | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.NotifyKeyboardKeysym", 0, sessionHandle, map[string]dbus.Variant{}, int32(char), uint32(1)) | ||
time.Sleep(autoTypeDelay) | ||
obj.Call("org.freedesktop.portal.RemoteDesktop.NotifyKeyboardKeysym", 0, sessionHandle, map[string]dbus.Variant{}, int32(char), uint32(0)) | ||
time.Sleep(autoTypeDelay) | ||
} | ||
} | ||
bus.Close() | ||
return | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters