moment/src/backend/user_files.py

293 lines
8.0 KiB
Python
Raw Normal View History

2019-12-19 22:46:16 +11:00
# SPDX-License-Identifier: LGPL-3.0-or-later
"""User data and configuration files definitions."""
import asyncio
import json
from dataclasses import dataclass, field
from pathlib import Path
from typing import TYPE_CHECKING, Any, ClassVar, Dict, Optional
import aiofiles
from .theme_parser import convert_to_qml
from .utils import dict_update_recursive
if TYPE_CHECKING:
from .backend import Backend
JsonData = Dict[str, Any]
WRITE_LOCK = asyncio.Lock()
@dataclass
class DataFile:
"""Base class representing a user data file."""
is_config: ClassVar[bool] = False
create_missing: ClassVar[bool] = True
backend: "Backend" = field(repr=False)
filename: str = field()
2019-12-11 08:59:04 +11:00
_to_write: Optional[str] = field(init=False, default=None)
def __post_init__(self) -> None:
asyncio.ensure_future(self._write_loop())
@property
def path(self) -> Path:
"""Full path of the file, even if it doesn't exist yet."""
if self.is_config:
return Path(self.backend.appdirs.user_config_dir) / self.filename
return Path(self.backend.appdirs.user_data_dir) / self.filename
async def default_data(self):
"""Default content if the file doesn't exist."""
return ""
async def read(self):
"""Return content of the existing file on disk, or default content."""
try:
return self.path.read_text()
except FileNotFoundError:
default = await self.default_data()
if self.create_missing:
await self.write(default)
return default
async def write(self, data) -> None:
"""Request for the file to be written/updated with data."""
2019-12-11 08:59:04 +11:00
self._to_write = data
async def _write_loop(self) -> None:
"""Write/update file on disk with a 1 second cooldown."""
2019-12-11 08:59:04 +11:00
self.path.parent.mkdir(parents=True, exist_ok=True)
2019-12-11 08:59:04 +11:00
while True:
await asyncio.sleep(1)
2019-12-11 08:59:04 +11:00
if self._to_write is None:
continue
2019-12-11 08:59:04 +11:00
if not self.create_missing and not self.path.exists():
continue
async with aiofiles.open(self.path, "w") as new:
await new.write(self._to_write)
self._to_write = None
@dataclass
class JSONDataFile(DataFile):
"""Represent a user data file in the JSON format."""
async def default_data(self) -> JsonData:
return {}
async def read(self) -> JsonData:
"""Return content of the existing file on disk, or default content.
If the file has missing keys, the missing data will be merged and
written to disk before returning.
If `create_missing` is `True` and the file doesn't exist, it will be
created.
"""
try:
data = json.loads(await super().read())
except FileNotFoundError:
if not self.create_missing:
return await self.default_data()
data = {}
except json.JSONDecodeError:
data = {}
all_data = await self.default_data()
dict_update_recursive(all_data, data)
if data != all_data:
await self.write(all_data)
return all_data
async def write(self, data: JsonData) -> None:
js = json.dumps(data, indent=4, ensure_ascii=False, sort_keys=True)
await super().write(js)
@dataclass
class Accounts(JSONDataFile):
"""Config file for saved matrix accounts: user ID, access tokens, etc."""
is_config = True
filename: str = "accounts.json"
2019-12-11 08:59:04 +11:00
async def any_saved(self) -> bool:
"""Return whether there are any accounts saved on disk."""
return bool(await self.read())
async def add(self, user_id: str) -> None:
"""Add an account to the config and write it on disk.
The account's details such as its access token are retrieved from
the corresponding `MatrixClient` in `backend.clients`.
"""
client = self.backend.clients[user_id]
await self.write({
**await self.read(),
client.user_id: {
"homeserver": client.homeserver,
"token": client.access_token,
"device_id": client.device_id,
Big performance refactoring & various improvements Instead of passing all sorts of events for the JS to handle and manually add to different data models, we now handle everything we can in Python. For any change, the python models send a sync event with their contents (no more than 4 times per second) to JS, and the QSyncable library's JsonListModel takes care of converting it to a QML ListModel and sending the appropriate signals. The SortFilterProxyModel library is not used anymore, the only case where we need to filter/sort something now is when the user interacts with the "Filter rooms" or "Filter members" fields. These cases are handled by a simple JS function. We now keep separated room and timeline models for different accounts, the previous approach of sharing all the data we could between accounts created a lot of complications (local echoes, decrypted messages replacing others, etc). The users's own account profile changes are now hidden in the timeline. On startup, if all events for a room were only own profile changes, more events will be loaded. Any kind of image format supported by Qt is now handled by the pyotherside image provider, instead of just PNG/JPG. SVGs which previously caused errors are supported as well. The typing members bar paddings/margins are fixed. The behavior of the avatar/"upload a profile picture" overlay is fixed. Config files read from disk are now cached (TODO: make them reloadable again). Pylint is not used anymore because of all its annoying false warnings and lack of understanding for dataclasses, it is replaced by flake8 with a custom config and various plugins. Debug mode is now considered on if the program was compiled with the right option, instead of taking an argument from CLI. When on, C++ will set a flag in the Window QML component. The loading screen is now unloaded after the UI is ready, where previously it just stayed in the background invisible and wasted CPU. The overall refactoring and improvements make us now able to handle rooms with thousand of members and no lazy-loading, where previously everything would freeze and simply scrolling up to load past events in any room would block the UI for a few seconds.
2019-08-11 22:01:22 +10:00
},
})
async def delete(self, user_id: str) -> None:
"""Delete an account from the config and write it on disk."""
await self.write({
uid: info
for uid, info in (await self.read()).items() if uid != user_id
})
@dataclass
class UISettings(JSONDataFile):
"""Config file for QML interface settings and keybindings."""
is_config = True
filename: str = "settings.json"
2019-12-11 08:59:04 +11:00
async def default_data(self) -> JsonData:
return {
"alertOnMessageForMsec": 4000,
"clearRoomFilterOnEnter": True,
"clearRoomFilterOnEscape": True,
"theme": "Default.qpl",
"writeAliases": {},
2019-09-18 06:30:04 +10:00
"media": {
"autoLoad": True,
"autoPlay": False,
"autoPlayGIF": True,
"autoHideOSDAfterMsec": 3000,
"defaultVolume": 100,
"startMuted": False,
},
2019-07-25 07:05:27 +10:00
"keys": {
2019-11-10 23:32:17 +11:00
"startPythonDebugger": ["Alt+Shift+D"],
"toggleDebugConsole": ["Alt+Shift+C", "F1"],
2019-11-10 23:32:17 +11:00
"reloadConfig": ["Alt+Shift+R"],
2019-08-24 01:02:22 +10:00
2019-12-09 03:42:40 +11:00
"zoomIn": ["Ctrl++"],
"zoomOut": ["Ctrl+-"],
"zoomReset": ["Ctrl+="],
2019-12-05 00:08:38 +11:00
2019-08-31 03:06:54 +10:00
"scrollUp": ["Alt+Up", "Alt+K"],
"scrollDown": ["Alt+Down", "Alt+J"],
2019-12-09 03:42:40 +11:00
"scrollPageUp": ["Alt+Ctrl+Up", "Alt+Ctrl+K", "PgUp"],
"scrollPageDown": ["Alt+Ctrl+Down", "Alt+Ctrl+J", "PgDown"],
2019-08-31 03:40:56 +10:00
"scrollToTop":
["Alt+Ctrl+Shift+Up", "Alt+Ctrl+Shift+K", "Home"],
"scrollToBottom":
["Alt+Ctrl+Shift+Down", "Alt+Ctrl+Shift+J", "End"],
2019-08-24 01:02:22 +10:00
"previousTab": ["Alt+Shift+Left", "Alt+Shift+H"],
"nextTab": ["Alt+Shift+Right", "Alt+Shift+L"],
2019-12-11 06:17:41 +11:00
"focusMainPane": ["Alt+S"],
"clearRoomFilter": ["Alt+Shift+S"],
2019-11-10 23:54:45 +11:00
"accountSettings": ["Alt+A"],
"addNewChat": ["Alt+N"],
"addNewAccount": ["Alt+Shift+N"],
"goToLastPage": ["Ctrl+Tab"],
2019-08-24 01:02:22 +10:00
"goToPreviousRoom": ["Alt+Shift+Up", "Alt+Shift+K"],
"goToNextRoom": ["Alt+Shift+Down", "Alt+Shift+J"],
"toggleCollapseAccount": [ "Alt+O"],
2019-09-09 01:49:47 +10:00
2019-12-09 03:42:40 +11:00
"clearRoomMessages": ["Ctrl+L"],
"sendFile": ["Alt+F"],
"sendFileFromPathInClipboard": ["Alt+Shift+F"],
2019-07-25 07:05:27 +10:00
},
}
2019-07-21 20:05:01 +10:00
@dataclass
class UIState(JSONDataFile):
"""File to save and restore the state of the QML interface."""
2019-12-11 08:59:04 +11:00
filename: str = "state.json"
2019-07-21 20:05:01 +10:00
async def default_data(self) -> JsonData:
return {
"collapseAccounts": {},
"page": "Pages/Default.qml",
"pageProperties": {},
2019-07-21 20:05:01 +10:00
}
2019-12-10 04:21:12 +11:00
@dataclass
class History(JSONDataFile):
"""File to save and restore lines typed by the user in QML components."""
2019-12-11 08:59:04 +11:00
filename: str = "history.json"
2019-12-10 04:21:12 +11:00
async def default_data(self) -> JsonData:
return {"console": []}
@dataclass
class Theme(DataFile):
"""A theme file defining the look of QML components."""
# Since it currently breaks at every update and the file format will be
# changed later, don't copy the theme to user data dir if it doesn't exist.
create_missing = False
@property
def path(self) -> Path:
data_dir = Path(self.backend.appdirs.user_data_dir)
return data_dir / "themes" / self.filename
async def default_data(self) -> str:
async with aiofiles.open("src/themes/Default.qpl") as file:
return await file.read()
async def read(self) -> str:
return convert_to_qml(await super().read())