Compare commits

...

3 Commits
v13 ... master

Author SHA1 Message Date
ca11b0e175 Version 15 2024-08-31 16:36:07 +02:00
d0e8f0cde5 Code review from JustPerfection 2024-08-31 13:58:43 +02:00
66d79cc804 Update for Gnome Shell 45+ 2024-08-29 20:46:21 +02:00
4 changed files with 58 additions and 61 deletions

View File

@ -23,6 +23,7 @@
from __future__ import print_function from __future__ import print_function
import os.path import os.path
import json
from google.auth.transport.requests import Request from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials from google.oauth2.credentials import Credentials
@ -37,7 +38,7 @@ creds = None
def _initCreds(): def _initCreds():
global creds global creds
if creds: return if creds: return
# The file token.json stores the user's access and refresh tokens, and is # The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first # created automatically when the authorization flow completes for the first
# time. # time.
@ -53,15 +54,21 @@ def _initCreds():
creds = flow.run_local_server(port=0) creds = flow.run_local_server(port=0)
# Save the credentials for the next run # Save the credentials for the next run
with open('token.json', 'w') as token: with open('token.json', 'w') as token:
token.write(creds.to_json()) data = {}
data['refresh_token'] = creds.refresh_token
data['client_id'] = creds.client_id
data['client_secret'] = creds.client_secret
data['token_uri'] = creds.token_uri
data['id_token'] = creds.id_token
token.write(json.dumps(data))
def getUnreadMails(): def getUnreadMails():
""" """
Get number of unread threads (that may contain multiple messages) Get number of unread threads (that may contain multiple messages)
""" """
_initCreds() _initCreds()
service = build('gmail', 'v1', credentials=creds) service = build('gmail', 'v1', credentials=creds)
pageToken = '' pageToken = ''
threads = set() threads = set()
@ -69,6 +76,7 @@ def getUnreadMails():
results = service.users().messages().list(userId='me', labelIds=['UNREAD'],\ results = service.users().messages().list(userId='me', labelIds=['UNREAD'],\
includeSpamTrash=False, pageToken=pageToken)\ includeSpamTrash=False, pageToken=pageToken)\
.execute() .execute()
if not 'messages' in results.keys(): continue
threads = threads.union(set([k['threadId'] for k in results['messages']])) threads = threads.union(set([k['threadId'] for k in results['messages']]))
# Loop over all result pages (100 results per page by default) # Loop over all result pages (100 results per page by default)
pageToken = results.get('nextPageToken', '') pageToken = results.get('nextPageToken', '')

View File

@ -43,15 +43,12 @@ class PicturePopup(GenericMonitor):
self.runMainLoop() self.runMainLoop()
def display_next_img(self): def display_next_img(self):
filedata = urllib.request.urlopen('https://source.unsplash.com/random') filedata = urllib.request.urlopen('https://picsum.photos/500/500')
# Get redirected URL without parameters
url = filedata.url.split('?')[0]
filedata = urllib.request.urlopen(url + '?fit=max&width=500&height=500')
datatowrite = filedata.read() datatowrite = filedata.read()
with open('/tmp/cat2.jpg', 'wb') as f: with open('/tmp/cat2.jpg', 'wb') as f:
f.write(datatowrite) f.write(datatowrite)
widget = GenericMonitorTextWidget('#%d' % self.imgs_idx, 'color:purple') widget = GenericMonitorTextWidget('#%d' % self.imgs_idx, 'color:purple')
url_widget = GenericMonitorTextWidget(url, 'color:white;font-weight:bold', signals={'on-click':'signal'}) # No name here url_widget = GenericMonitorTextWidget('random_pic', 'color:white;font-weight:bold', signals={'on-click':'signal'}) # No name here
picture_widget = GenericMonitorPictureWidget('/tmp/cat2.jpg', name='NestedWidget', signals={'on-click':'signal'}) picture_widget = GenericMonitorPictureWidget('/tmp/cat2.jpg', name='NestedWidget', signals={'on-click':'signal'})
popup = GenericMonitorPopup([url_widget, picture_widget]) popup = GenericMonitorPopup([url_widget, picture_widget])
signals = { signals = {

View File

@ -29,17 +29,17 @@
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/panel.js https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/panel.js
*/ */
const St = imports.gi.St; import * as Extension from 'resource:///org/gnome/shell/extensions/extension.js';
const Gio = imports.gi.Gio; import St from 'gi://St';
const GLib = imports.gi.GLib import Gio from 'gi://Gio';
const Main = imports.ui.main; import GLib from 'gi://GLib';
const Mainloop = imports.mainloop; import Clutter from 'gi://Clutter';
const Clutter = imports.gi.Clutter; import GObject from 'gi://GObject';
const PanelMenu = imports.ui.panelMenu; import Pixbuf from 'gi://GdkPixbuf';
const PopupMenu = imports.ui.popupMenu; import Cogl from 'gi://Cogl';
const GObject = imports.gi.GObject; import * as Main from 'resource:///org/gnome/shell/ui/main.js';
const Pixbuf = imports.gi.GdkPixbuf; import * as PanelMenu from 'resource:///org/gnome/shell/ui/panelMenu.js';
const Cogl = imports.gi.Cogl; import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
function hashGet(hash, key, defaultValue) { function hashGet(hash, key, defaultValue) {
@ -50,7 +50,7 @@ function hashGet(hash, key, defaultValue) {
} }
function log(message) { function log(message) {
global.log('[GenericMontior]', message); console.error('[GenericMontior]', message);
} }
@ -79,7 +79,7 @@ class SignalMgt {
this.onScroll = hashGet(item, 'on-scroll', ''); this.onScroll = hashGet(item, 'on-scroll', '');
} }
destructor() { destroy() {
for(let widgetIdx in this.widgets) for(let widgetIdx in this.widgets)
this.disconnectWidgetSignals(this.widgets[widgetIdx]); this.disconnectWidgetSignals(this.widgets[widgetIdx]);
for(let timeoutIdx in this.timeouts) for(let timeoutIdx in this.timeouts)
@ -189,8 +189,9 @@ class SignalMgt {
this.button = event.get_button(); this.button = event.get_button();
this.nbClicks = 1; this.nbClicks = 1;
let sourceId = Mainloop.timeout_add(this.dbus.ClutterSettings['double-click-time'], let sourceId = GLib.timeout_add(GLib.G_PRIORITY_DEFAULT,
this._doClickCallback.bind(this)); this.dbus.ClutterSettings['double-click-time'],
this._doClickCallback.bind(this));
this.timeouts.push(sourceId); this.timeouts.push(sourceId);
} }
@ -228,7 +229,7 @@ class MyPopupMenuItem extends PopupMenu.PopupBaseMenuItem {
this.box.set_vertical(true); this.box.set_vertical(true);
for (let widgetIndex in widgets) for (let widgetIndex in widgets)
this.box.add(widgets[widgetIndex]); this.box.add_child(widgets[widgetIndex]);
this.add_child(this.box); this.add_child(this.box);
} }
@ -393,6 +394,7 @@ class MonitorWidget extends PanelMenu.Button {
destroy() { destroy() {
this.menu.close(); this.menu.close();
this.signalManager.destroy();
super.destroy(); super.destroy();
} }
@ -555,14 +557,12 @@ class MonitorWidget extends PanelMenu.Button {
// From https://github.com/ubuntu/gnome-shell-extension-appindicator/blob/master/interfaces.js // From https://github.com/ubuntu/gnome-shell-extension-appindicator/blob/master/interfaces.js
// loads a xml file into an in-memory string // loads a xml file into an in-memory string
function loadInterfaceXml(filename) { function loadInterfaceXml(extension, filename) {
const extension = imports.misc.extensionUtils.getCurrentExtension();
const interfacesDir = extension.dir.get_child('.'); const interfacesDir = extension.dir.get_child('.');
const file = interfacesDir.get_child(filename); const file = interfacesDir.get_child(filename);
let [result, contents] = imports.gi.GLib.file_get_contents(file.get_path()); let [result, contents] = GLib.file_get_contents(file.get_path());
if (result) { if (result) {
// HACK: The "" + trick is important as hell because file_get_contents returns // HACK: The "" + trick is important as hell because file_get_contents returns
@ -571,7 +571,10 @@ function loadInterfaceXml(filename) {
// is no `XML` on very recent SpiderMonkey releases (or, if SpiderMonkey is old enough, // is no `XML` on very recent SpiderMonkey releases (or, if SpiderMonkey is old enough,
// will spit out a TypeError soon). // will spit out a TypeError soon).
if (contents instanceof Uint8Array) if (contents instanceof Uint8Array)
contents = imports.byteArray.toString(contents); {
const decoder = new TextDecoder();
contents = decoder.decode(contents);
}
const res = `<node>${contents}</node>`; const res = `<node>${contents}</node>`;
return res; return res;
} else { } else {
@ -580,11 +583,11 @@ function loadInterfaceXml(filename) {
} }
class GenericMonitorDBUS { class GenericMonitorDBUS {
constructor() { constructor(extension) {
this.monitor_groups = {}; this.monitor_groups = {};
this.actor_clicked = {}; this.actor_clicked = {};
this.ClutterSettings = Clutter.Settings.get_default(); this.ClutterSettings = Clutter.Settings.get_default();
this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(loadInterfaceXml('dbus.xml'), this); this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(loadInterfaceXml(extension, 'dbus.xml'), this);
this._dbusImpl.export(Gio.DBus.session, '/com/soutade/GenericMonitor'); this._dbusImpl.export(Gio.DBus.session, '/com/soutade/GenericMonitor');
this._dbusImpl.emit_signal('onActivate', null); this._dbusImpl.emit_signal('onActivate', null);
} }
@ -787,7 +790,7 @@ class GenericMonitorDBUS {
monitorWidget.togglePopup(); monitorWidget.togglePopup();
} }
destructor() { destroy() {
this._dbusImpl.emit_signal('onDeactivate', null); this._dbusImpl.emit_signal('onDeactivate', null);
for (let groupIndex in this.monitor_groups) { for (let groupIndex in this.monitor_groups) {
const group = this.monitor_groups[groupIndex]; const group = this.monitor_groups[groupIndex];
@ -799,30 +802,21 @@ class GenericMonitorDBUS {
} }
} }
class Extension { export default class GenericMonitorExtension extends Extension.Extension {
constructor(...args) {
super(...args);
this.textDBusService = null;
}
enable() { enable() {
this.textDBusService = new GenericMonitorDBUS(); this.textDBusService = new GenericMonitorDBUS(this);
} }
disable() { disable() {
this.textDBusService.destructor(); if (this.textDBusService !== null) {
delete this.textDBusService; this.textDBusService.destroy();
} delete this.textDBusService;
} this.textDBusService = null;
}
let extension = null;
function init() {
}
function enable() {
extension = new Extension();
extension.enable();
}
function disable() {
if (extension) {
extension.disable();
extension = null;
} }
} }

View File

@ -2,13 +2,11 @@
"uuid": "generic-monitor@gnome-shell-extensions", "uuid": "generic-monitor@gnome-shell-extensions",
"name": "Generic Monitor", "name": "Generic Monitor",
"description": "Display text & icon on systray using DBUS", "description": "Display text & icon on systray using DBUS",
"version": "13", "version": "15",
"shell-version": [ "shell-version": [
"44", "47",
"43", "46",
"42.3", "45"
"42",
"41"
], ],
"url": "http://indefero.soutade.fr/p/genericmonitor" "url": "https://forge.soutade.fr/soutade/GnomeShellGenericMonitor"
} }