All Projects → sirredbeard → unofficial-webapp-office

sirredbeard / unofficial-webapp-office

Licence: GPL-3.0 license
Access all of your favorite Office 365 apps from Linux

Projects that are alternatives of or similar to unofficial-webapp-office

keyrier-json
SQL queries on JSON & CSV
Stars: ✭ 14 (-89.93%)
Mutual labels:  desktop, webapp
Tachiweb Server
A port of the Tachiyomi manga reader to the desktop and server
Stars: ✭ 303 (+117.99%)
Mutual labels:  desktop, webapp
webviewhs
🌐 A Haskell binding to the webview library created by Serge Zaitsev.
Stars: ✭ 109 (-21.58%)
Mutual labels:  desktop, webapp
Waveboxapp
Wavebox Classic has been updated to Wavebox 10. Learn more Wavebox.io
Stars: ✭ 1,198 (+761.87%)
Mutual labels:  desktop, office365
Desktopdeployr
A framework for deploying self-contained R-based applications to the desktop
Stars: ✭ 282 (+102.88%)
Mutual labels:  desktop, webapp
Share Api Polyfill
A polyfill for the sharing that can be used in desktop too, so your users can shere in their twitter, facebook, messenger, linkedin, sms, e-mail, print, telegram or whatsapp.
Stars: ✭ 210 (+51.08%)
Mutual labels:  desktop, webapp
ubuntu-vnc-xfce-chromium
Retired. Headless Ubuntu/Xfce container with VNC/noVNC and Chromium (Generation 1)
Stars: ✭ 20 (-85.61%)
Mutual labels:  desktop
unboundbible
Unbound Bible is an open source and a free, multilingual Bible-reader program for Mac, Linux and Windows.
Stars: ✭ 25 (-82.01%)
Mutual labels:  desktop
SteamTradeBot
Open source steam trading bot. Accepting or declining trades based on the automatic value calculation.
Stars: ✭ 65 (-53.24%)
Mutual labels:  desktop
Smart-Text-Editor
The text editor that requires only a browser and a keyboard!
Stars: ✭ 60 (-56.83%)
Mutual labels:  desktop
vue-fullpage
a single page scroll plugin for [email protected] https://abel-oye.github.io/vue-fullpage/examples/
Stars: ✭ 152 (+9.35%)
Mutual labels:  desktop
shu-scheduling-helper
A web-based timetabler helping SHUers filter and preselect courses easily. SHU排课助手. 上海大学排课助手.
Stars: ✭ 43 (-69.06%)
Mutual labels:  desktop
glimmer-dsl-tk
Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library)
Stars: ✭ 26 (-81.29%)
Mutual labels:  desktop
vapor master
high availability ros master
Stars: ✭ 17 (-87.77%)
Mutual labels:  snapcraft
minigame-rust
A simple game made in Rust that runs on desktop and mobile
Stars: ✭ 118 (-15.11%)
Mutual labels:  desktop
MSCloudLoginAssistant
PowerShell Module Handling Authentication to Cloud Services
Stars: ✭ 47 (-66.19%)
Mutual labels:  office365
desktop
💻 Desktop app for all your Storybooks
Stars: ✭ 68 (-51.08%)
Mutual labels:  desktop
DFIR-O365RC
PowerShell module for Office 365 and Azure log collection
Stars: ✭ 158 (+13.67%)
Mutual labels:  office365
launchui-packager
Package applications using LaunchUI for Windows, Linux and OS X.
Stars: ✭ 69 (-50.36%)
Mutual labels:  desktop
airyx
A BSD-based OS project that aims to provide an experience like and some compatibility with macOS (formerly known as airyxOS)
Stars: ✭ 2,490 (+1691.37%)
Mutual labels:  desktop

Unofficial webapp wrapper for Office 365 webapps

A set of webapp wrappers, based on QtWebEngine, for the following websites:

These are links to the Office 365 webapps embedded in a minimalist web browser.

This snap is not supported by or endorsed by Microsoft, Inc.

Office 365, OneNote, OneDrive, Outlook, Excel, PowerPoint, and Microsoft are trademarks or registered trademarks of Microsoft, Inc.

Download

snap install unofficial-webapp-office

Snap

Notes

Check "Keep me signed in" to avoid having to sign into each webapp individually.

Screenshot

Screenshot

How This Works

unofficial-webapp-office.launcher is just a shell script:

#!/bin/sh

# Disable the chromium sandbox to work around https://launchpad.net/bugs/1599234.
# Rely on snapd’s security policy instead.
export OXIDE_NO_SANDBOX=1

# Explicitly set APP_ID.
export APP_ID=unofficial-webapp-office

# Remove problematic environment variable
unset QT_QPA_PLATFORM

exec "$SNAP/bin/desktop-launch" "qmlscene" "$1" "$2" "$SNAP/unofficial-webapp-office.qml" --scaling

The shell script sets some variables and then calls a desktop launcher binary app supplied by a helper kit from the Snapcraft team for running Qt-based GUI desktop apps inside snaps. A snap is a Linux app packaged in a container with the app and all its dependencies, including helper apps like this one. A snap is built using a Snapcraft file, which is written in YAML. The snap is then built and pushed to the Snap store using a command-line tool called snapcraft.

Note that the launcher shell script will run inside our container, so the paths it uses is set relative to the snap using $SNAP and will be interpreted on the fly when the snapped application is run.

A similar GUI helper kit exists for GTK-based apps. Here is the relevant YAML in the Snapcraft file where the helper kit is installed into the snap:

parts:
  desktop-qt5:
    source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
    source-subdir: qt
    plugin: make
    make-parameters: ["FLAVOR=qt5"]

The helper kit is built directly from the upstream GitHub repository using the make plugin.

Back in our original shell script desktop-launch is used to call qmlscene. qmlscene is part of the Qt UI development toolkit:

exec "$SNAP/bin/desktop-launch" "qmlscene" "$1" "$2" "$SNAP/unofficial-webapp-office.qml" --scaling

qmlscene is used to run mock-ups of QML files, the Qt markup language. There is no separate C++ (or Python) code here you would normally expect to see with a full-fledged Qt application. The logic of the app is embedded in JavaScript embedded in the QML and how Snapcraft itself simply works. qmlscene is called with --scaling to enable scaling on HiDPI displays.

The shell script tells qmlscene to parse QML file unofficial-webapp-office.qml. The QML draws a basic window, embeds a WebKit engine in it (these Qt dependencies are fulfilled by the staged packages in our Snapcraft file), handles two command-line variables passed to it: the name of the website and it's URL:

Window {
  title: Qt.application.arguments[2]
  width: 1000
  height: 600
  visible: true

  WebEngineView {
    id: windowParent
    anchors.fill: parent
    zoomFactor: 1.0

    url: Qt.application.arguments[1]

Some JavaScript (currently a bit cumbersome) determines whether to open clicked links in a new window (Microsoft-related links) or in your default OS browser (everything else):

 onNewViewRequested: function(request) {
      if (request.requestedUrl.toString().includes('live.com')) {
        var newWindow = windowComponent.createObject(windowParent);
        request.openIn(newWindow.webView);
      }
      else if (request.requestedUrl.toString().includes('microsoft.com')) {
        var newWindow = windowComponent.createObject(windowParent);
        request.openIn(newWindow.webView);
      }

The creation of the individual web apps is then handled by Snapcraft itself when the snap is built. For each web app an app is declared in the snap with a corresponding .desktop file (which itself has a corresponding icon) and app, specific command-line arguments, for example OneDrive and https://onedrive.live.com/.

Taking a look in our Snapcaft file, after the Qt GUI desktop helper kit is installed, the contents of our GitHub repo are then dumped into the snap build environment by use of the dump plugin and necessary Qt dependencies installed by their Debian package names using stage-packages:

  unofficial-webapp-office-qml:
    after: [desktop-qt5]
    source: .
    plugin: dump
    stage-packages:
      - qmlscene
      - qml-module-qtquick2
      - qml-module-qtquick-window2
      - qml-module-qtwebengine
      - qml-module-qtquick-dialogs
    organize:
      unofficial-webapp-office.launcher: bin/unofficial-webapp-office.launcher

Organize moves our binary into place and is a lot cleaner than a lot of mkdir and mv. The gui folder with its .desktop files and .png icon files will make its way over by virtue of being in the snap folder. Notice how only things declared, moved, or in specific places make it into the snap with our app.

We then 'create' our individual apps for each of the web apps:

apps:
  word:
    command: unofficial-webapp-office.launcher "https://www.office.com/launch/word" "Word"
    desktop: snap/gui/word.desktop
    plugs: &plugs
      - browser-support
      - desktop
      - desktop-legacy
      - home
      - network
      - opengl
      - screen-inhibit-control
      - x11
    environment: &environment
      DISABLE_WAYLAND: 1

The plugs are the hooks our snap apps need to interact with the desktop and web, the permissions we need to give the snap. Without these plugs the snap is otherwise fully confined by default. This allows you to define using useful categories the confines of your app which is then restricted at the kernel level by use of namespaces, cgroups, and App Armor.

Thankfully creating the rest of the apps is not as complicated, we can just * those plugs and other settings. When the app is installed the snapd daemon will move the .desktop files into place on our system, making them visible in the desktop environment. The .desktop format is a FreeDesktop spec.

  outlook:
    command: unofficial-webapp-office.launcher "https://outlook.live.com/mail/0/inbox" "Outlook"
    desktop: snap/gui/outlook.desktop
    plugs: *plugs
    environment: *environment

Snapcraft creates our individual apps, all calling unofficial-webapp-office.launcher with the relevant app name and URL as command line arguments, which then calls qmlscene and renders unoffocial-webapp-office.qml giving us a minimalist web browser with our app name as the window title and URL rendered. Some simple JavaScript in the QML handles how to handle opening new Microsoft links in a new window or other links in the external default OS browser. By referencing the respective .desktop file in our Snapcraft file and then the respective .png icon file in our .desktop file the desktop environment icon creation is handled for us.

The snap is built directly on GitHub using GitHub actions, defined also in YAML.

The heading defines the workflow name, when the workflow will run (on a push to the repo), and set up our jobs. The primary job is called stable in anticipation of having future release levels, such as edge or beta, depending on the complexity of the app. We will run the action on an Ubuntu 18.04 VM. However, the default Ubuntu 18.04 image on GitHub Actions does not have the various mountpoints and loopback devices needed for Multipass, the hypervisor that powers the snap build, by default. We can get them though by jumping into a Docker container specifically designed for building snaps from the Snapcraft team:

name: snapcraft

on: [push]

jobs:
  stable:

    runs-on: ubuntu-18.04
    container:
      image: snapcore/snapcraft

Our first step in the job is to checkout our GitHub repository, as we will be dropping these files directly into our snap.

Then we must do something odd. Even though we are running on an Ubuntu 18.04 VM the snapcore/snapcraft container we have to use for the mountpoints is based on Ubuntu 16.04 and a dependency we need, qml-module-qtwebengine, is not maintained for Ubuntu 16.04. We need Ubuntu 18.04, the next most recent Ubuntu LTS release. I could copy the mountpoint customizations in the Dockerfile from the upstream snapcore/snapcraft Docker image and create my own Ubuntu 18.04 Docker image. Or I could just replace xenial with bionic in our apt container's sources, update them, and then run distribution upgrade. This seems cumbersome at first but the upstream Snapcraft Docker container and the Xenial to Bionic upgrade path is going to be better maintained by Canonical than I could my own Docker image.

    steps:
    - uses: actions/checkout@v1
    - name: Upgrade Snapcraft Docker container to Bionic to get qml-module-qtwebengine
      run: |
        sudo sed -i 's/xenial/bionic/g' /etc/apt/sources.list
        sudo apt update
        sudo apt -y dist-upgrade

With our GitHub repo checked out and dumped, our container upgraded to Ubuntu 18.04 (only takes about 2-3 minutes on average), we then build our snap with snapcraft. Snapcraft will parse snapcraft.yaml, spin up a VM using Multipass, assmble the parts of the app we defined in the order we specified, install all necessary dependencies, and create a containerized app with clearly defined plugs into our Linux environment. We run snapcraft the run task which passes the command to the shell of the GitHub Action VM.

    - name: Build .snap
      run: |
        snapcraft    

Note: snapcraft is here because we are using the Snapcraft Docker container to build in. Otherwise you would need to install it using $ snap install snapcraft.

Next, we have to push our .snap file to the Snapcraft.io store. This is normally done with a key stored in a local snapcraft.cfg file after logging into Snapcraft on the terminal. But GitHub Actions spins up a new VM on each build and while there are ways to persist files between VM instances, let's set that aside for the moment. What we can here though, rather than having our encrypted key floating around on VMs in-between builds, is to login to the Snapcraft Store on an existing Ubuntu device, export the snapcraft.cfg file containing our key, convert it to base64 string, and save that text as a secret in our GitHub Actions in a way to be can retrieved and decoded on each run. Note the config file and it's key is not saved anywhere in our GitHub repository itself but in the GitHub Actions settings protected with multi-factor authentication.

Note: If your fork this project and want to push to Snapcraft you will need to generate your own config file, copy to your keyboard, and then into GitHub actions:

snapcraft login
snapcraft export-login snapcraft.login
base64 snapcraft.login | xsel --clipboard

You will also need to reserve a different name from unofficial-webapp-office in the Snapcraft file.

We import the base64 string secret as an environmental variable consumable in shell script just like any other environment variable. This is done in the env section of the related job. We then echo that environmental variable back through base64 and save it as a new snapcraft config file in our VM containing our key before pushing to the Store. Snapcraft grabs the key and pushes our snap directly to the Snapcraft Store.

    - name: Push .snap to Snapcraft.io
      env:
        SNAPCRAFT_LOGIN_FILE: ${{ secrets.SNAPCRAFT_LOGIN_FILE }}
      run: |
        mkdir .snapcraft
        echo ${SNAPCRAFT_LOGIN_FILE} | base64 --decode --ignore-garbage > .snapcraft/snapcraft.cfg
        snapcraft push --release=stable *.snap

Build Status

Status

Snapcraft Store Status

Snapcraft

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].