pyrofork/pyrogram/storage/file_storage.py
Hitalo M 8193d87e2c
feat(storage): migrated to aiosqlite
Signed-off-by: wulan17 <wulan17@nusantararom.org>
2024-02-29 21:42:23 +07:00

72 lines
2.1 KiB
Python

# Pyrofork - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
#
# This file is part of Pyrofork.
#
# Pyrofork is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrofork is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrofork. If not, see <http://www.gnu.org/licenses/>.
import logging
from pathlib import Path
import aiosqlite
from .sqlite_storage import SQLiteStorage
log = logging.getLogger(__name__)
class FileStorage(SQLiteStorage):
FILE_EXTENSION = ".session"
def __init__(self, name: str, workdir: Path):
super().__init__(name)
self.database = workdir / (self.name + self.FILE_EXTENSION)
async def update(self):
version = await self.version()
if version == 1:
await self.conn.execute("DELETE FROM peers")
await self.conn.commit()
version += 1
if version == 2:
await self.conn.execute("ALTER TABLE sessions ADD api_id INTEGER")
await self.conn.commit()
version += 1
await self.version(version)
async def open(self):
path = self.database
file_exists = path.is_file()
self.conn = await aiosqlite.connect(str(path), timeout=1)
await self.conn.execute("PRAGMA journal_mode=WAL")
if not file_exists:
await self.create()
else:
await self.update()
await self.conn.execute("VACUUM")
await self.conn.commit()
async def delete(self):
Path(self.database).unlink()