UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    [Alpha] Greenline - A qml Whatsapp client for Ubuntu Touch

    Scheduled Pinned Locked Moved App Development
    21 Posts 8 Posters 1.0k Views 3 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • brenno.almeidaB Offline
      brenno.almeida
      last edited by

      Hi everyone! I've been working on a qml Whatsapp client for Ubuntu Touch for a few weeks, now I think its good enough for its alpha release.

      The app is not complete, there's still a ton of work to do, and probably many bugs. If you want to test it out, feel free to install in your device, and get back here if you find any bug so I can look at it. The Whatsapp protocol is awful to work with, I'm posting this early to gather feedback about edge cases.

      Consider this app as Alpha, don't use it expecting to be 100% functional or complete, but use it to give feedback and help with the development.

      Also the app runs unconfined to setup a background daemon, more on the architecture bellow.

      Releases here: https://github.com/brennoflavio/greenline/releases

      Once its stable, I'll publish to the store. Now more details about it.

      Architecture

      This app is composed of 3 parts:

      1. Golang Daemon

      This daemon managed by Systemd connects to Whatsapp servers and runs continuously in the background, gathering events and pre processing them. Also:

      • Manages your encryption keys
      • Serialize whatsapp events, stores in a queue
      • Expose a JSON RPC endpoint to read and send messages, among other operations
      • Syncs users avatars, media, and other data
      • Sends notifications
      1. Python Backend

      Event driven backend that pulls events from the daemon and acts on them, building a chat room and message database. It also sends events to the frontend, updating the message list in real time

      1. QML

      The frontend is entirely written in qml and communicates with python using pyotherside

      In order to pull messages in the background, it needs to run unconfined.

      arubislanderA pparentP 2 Replies Last reply Reply Quote 1
      • arubislanderA Offline
        arubislander @brenno.almeida
        last edited by

        @brenno.almeida Do users of this app run the risk of Meta blocking or otherwise disabling their their accounts after a while, for using an unofficial WA cliΓ«nt? Or does this use the same.API as the browser is using?

        πŸ‡¦πŸ‡Ό πŸ‡³πŸ‡± πŸ‡ΊπŸ‡Έ πŸ‡ͺπŸ‡Έ
        Happily running Ubuntu Touch
        JingPad (24.04-1.x daily)
        OnePlus Nord N10 5G (24.04-2.x daily)
        PinePhone OG (20.04)
        Meizu Pro 5 (16.04 DEV)

        1 Reply Last reply Reply Quote 0
        • pparentP Online
          pparent @brenno.almeida
          last edited by

          @brenno.almeida

          Very nice!

          How do you interact with Whatsapp protocol? Did you reverse ingeneer it yourself? Do you use an existing library?

          1 Reply Last reply Reply Quote 0
          • brenno.almeidaB Offline
            brenno.almeida
            last edited by brenno.almeida

            @arubislander @pparent app uses whatsmeow, a golang implementation of Whatsapp Web socket. So from Whatsapp perspective, its like you're using Whatsapp Web.

            The risk of being banned using unofficial tools is never 0, but extremely low if you don't abuse the tool. Its the same risk of using the WhatsApp Matrix bridge for example, that uses the same library behind the scenes.

            pparentP 1 Reply Last reply Reply Quote 1
            • pparentP Online
              pparent @brenno.almeida
              last edited by

              @brenno.almeida

              Nice! Your app could be very useful especially to receive notifications in background with lower battery costs.

              Hope the whatsmeow library can remain reliable in the long run!

              Maybe you would like to post some screenshots of your app? πŸ˜‰

              1 Reply Last reply Reply Quote 0
              • S Offline
                sahirul
                last edited by

                Is it possible to log in with a phone number in this application?

                brenno.almeidaB 1 Reply Last reply Reply Quote 0
                • brenno.almeidaB Offline
                  brenno.almeida @sahirul
                  last edited by

                  @sahirul not yet, but is planned. For now, qr code only

                  brenno.almeidaB 1 Reply Last reply Reply Quote 0
                  • brenno.almeidaB Offline
                    brenno.almeida @brenno.almeida
                    last edited by brenno.almeida

                    Lots of changes since my original post. Some highlights:

                    • Better name resolutions
                    • Sync history chats
                    • Fixed some bugs around logging out and disconnecting
                    • Better performance when loading many chats
                    • Add video and image messages
                    • Sticker support
                    • Better avatar sync and resolution
                    • Swipe to copy messages
                    • Reply messages are shown
                    • Faster startup sync

                    Latest release: https://github.com/brennoflavio/greenline/releases

                    pparentP 1 Reply Last reply Reply Quote 0
                    • pparentP Online
                      pparent @brenno.almeida
                      last edited by arubislander

                      @brenno.almeida

                      I have a question, given that 3 have 3 separate parts to your app ( Go, Python and QML), did you ensure the security of communication between them? How is it enforced that no other app, or process will be able to access the Whatsapp private data?

                      For example you say that the Go module exposes a JSON RPC endpoint, but are there security measures to make sure that this endpoint can be accesed only by your app, and no other app or process?

                      Thank's a lot for your work! πŸ˜‰

                      brenno.almeidaB 1 Reply Last reply Reply Quote 0
                      • brenno.almeidaB Offline
                        brenno.almeida @pparent
                        last edited by

                        @pparent not yet! But I can expand on this topic.

                        First, the communication between go and python happens over a unix socket. This ensures that all communication is local between parts. This app does not expose your data outside the phone neither open ports (outside the WhatsApp socket). Notifications are also fully local (ubports push server is not used). But any unconfined process can access the socket and manage your account, three's no protection against that.

                        Also its important to mention that your encryption keys, messages and contacts are stored as plain text in 3 SQLite databases in the app data folder. This is necessary to do e2e encrypted communication with whatsapp, and it's similar to how Whatsnew or any other Whatsapp web client works by design.

                        This means that an attacker with a non root shell access in your device can steal your keys and send messages on your behalf for example. This is also true for our other Whatsapp web clients.

                        On Android, the official client uses a sandboxed storage to protect those keys, so only the app or a root user can access the keys. But as far as I know there's no such mechanisms in Ubuntu Touch for us to use.

                        G ikozI pparentP 3 Replies Last reply Reply Quote 0
                        • G Offline
                          gpatel-fr @brenno.almeida
                          last edited by

                          @brenno.almeida said:

                          On Android, the official client uses a sandboxed storage to protect those keys, so only the app or a root user can access the keys. But as far as I know there's no such mechanisms in Ubuntu Touch for us to use.

                          oh thanks a lot for this remark. Finally I'm getting a glimpse of what is meant by 'our banking app can only work on secure devices'. I know that Google Play protect has other mechanisms but I did not see what could not yet be done on Linux phones.

                          1 Reply Last reply Reply Quote 0
                          • ikozI Offline
                            ikoz @brenno.almeida
                            last edited by

                            @brenno.almeida said:

                            as far as I know there's no such mechanisms in Ubuntu Touch for us to use.

                            Have you seen the secret-tool package? It's similar to using GNOME keyring.
                            You can also write your own keyring mechanism assuming your daemon starts before any app. It will store the keys in plain text when the phone is powered off and thus rely on full storage encryption. When the device boots up, the daemon will read the key from the file, store it in its memory and encrypt the file with the file's content as key. This daemon will communicate with your app via dbus or similar and send the keys only to the appropriate app id.

                            May the source be with you

                            pparentP brenno.almeidaB 2 Replies Last reply Reply Quote 0
                            • pparentP Online
                              pparent @brenno.almeida
                              last edited by

                              @brenno.almeida

                              Ok so another confined app does not have permission to access your messages and data, via this Unix socket?

                              brenno.almeidaB 1 Reply Last reply Reply Quote 0
                              • pparentP Online
                                pparent @ikoz
                                last edited by

                                @ikoz said:

                                Have you seen the secret-tool package? It's similar to using GNOME keyring.

                                Though it is to be noted that a porblem we have currently with App-armour profiles, is that it won't let you communicate with the keyring in DBus via the api libsecret. It is a problem for browsers like "Chromium for UT" or "Min Browser" that get non-functional password manager because of that.

                                P G 2 Replies Last reply Reply Quote 0
                                • P Offline
                                  projectmoon @pparent
                                  last edited by

                                  @pparent said:

                                  @ikoz said:

                                  Have you seen the secret-tool package? It's similar to using GNOME keyring.

                                  Though it is to be noted that a porblem we have currently with App-armour profiles, is that it won't let you communicate with the keyring in DBus via the api libsecret. It is a problem for browsers like "Chromium for UT" or "Min Browser" that get non-functional password manager because of that.

                                  I am currently packaging Aria (Misskey client) and ran into the same problem. Had to patch it to store the credentials in a JSON file under ~/.local/share.

                                  1 Reply Last reply Reply Quote 0
                                  • brenno.almeidaB Offline
                                    brenno.almeida @pparent
                                    last edited by

                                    @pparent said:

                                    @brenno.almeida

                                    Ok so another confined app does not have permission to access your messages and data, via this Unix socket?

                                    Confined apps cannot access files outside their specified directories (config, data, cache), so they cannot use the socket.

                                    1 Reply Last reply Reply Quote 1
                                    • brenno.almeidaB Offline
                                      brenno.almeida @ikoz
                                      last edited by

                                      @ikoz said:

                                      @brenno.almeida said:

                                      as far as I know there's no such mechanisms in Ubuntu Touch for us to use.

                                      Have you seen the secret-tool package? It's similar to using GNOME keyring.
                                      You can also write your own keyring mechanism assuming your daemon starts before any app. It will store the keys in plain text when the phone is powered off and thus rely on full storage encryption. When the device boots up, the daemon will read the key from the file, store it in its memory and encrypt the file with the file's content as key. This daemon will communicate with your app via dbus or similar and send the keys only to the appropriate app id.

                                      I'll look into it, thanks! In an ideal scenario all 3 SQLite databases should be secured against an unconfined process. Not sure if this will be possible tho.

                                      1 Reply Last reply Reply Quote 0
                                      • 7 Offline
                                        777X
                                        last edited by

                                        I've just installed the app and synced with my iPhone. I really like it and especially the notifications, they're near instant.

                                        It does take a while to fetch all data/contacts and stuff, some profile pictures don't load and there's no indication on how much it's fetching and what.

                                        Also, replying on specific messages doesn't seem to work or I can't find the gesture and messages from the same person all show their name. But other than that, it's sweet! I love how it integrated with the rest of the OS, finally no web app!

                                        Running on FP5 24.04.2x daily

                                        brenno.almeidaB 1 Reply Last reply Reply Quote 0
                                        • brenno.almeidaB Offline
                                          brenno.almeida @777X
                                          last edited by

                                          @777X hey thanks for using the app! Feel free to report any other issues.

                                          The avatar sync module needs more love, currently it populates slowly as you use the app, at some point they'll will be there.

                                          And replies are not implemented (yet). But hopefully soon it will be implemented

                                          1 Reply Last reply Reply Quote 0
                                          • G Offline
                                            gpatel-fr @pparent
                                            last edited by

                                            @pparent said:

                                            a porblem we have currently with App-armour profiles, is that it won't let you communicate with the keyring in DBus via the api libsecret

                                            is there a good reason for that ? is the API open to exploitation by a malicious client or is there some mechanism to prevent that ?

                                            pparentP 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better πŸ’—

                                            Register Login
                                            • First post
                                              Last post