revert Minify.
This commit is contained in:
retoor 2025-05-09 14:57:22 +02:00
parent 4c34d7eda5
commit 1616e4edb9
86 changed files with 5826 additions and 1885 deletions

View File

@ -0,0 +1 @@

View File

@ -1,21 +1,32 @@
_D='Database path for the application' import click
_C='snek.db' import uvloop
_B='--db_path'
_A=True
import click,uvloop
from aiohttp import web from aiohttp import web
import asyncio import asyncio
from snek.app import Application from snek.app import Application
from IPython import start_ipython from IPython import start_ipython
@click.group() @click.group()
def cli():0 def cli():
pass
@cli.command() @cli.command()
@click.option('--port',default=8081,show_default=_A,help='Port to run the application on') @click.option('--port', default=8081, show_default=True, help='Port to run the application on')
@click.option('--host',default='0.0.0.0',show_default=_A,help='Host to run the application on') @click.option('--host', default='0.0.0.0', show_default=True, help='Host to run the application on')
@click.option(_B,default=_C,show_default=_A,help=_D) @click.option('--db_path', default='snek.db', show_default=True, help='Database path for the application')
def serve(port,host,db_path):asyncio.set_event_loop_policy(uvloop.EventLoopPolicy());web.run_app(Application(db_path=f"sqlite:///{db_path}"),port=port,host=host) def serve(port, host, db_path):
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
web.run_app(
Application(db_path=f"sqlite:///{db_path}"), port=port, host=host
)
@cli.command() @cli.command()
@click.option(_B,default=_C,show_default=_A,help=_D) @click.option('--db_path', default='snek.db', show_default=True, help='Database path for the application')
def shell(db_path):A=Application(db_path=f"sqlite:///{db_path}");start_ipython(argv=[],user_ns={'app':A}) def shell(db_path):
def main():cli() app = Application(db_path=f"sqlite:///{db_path}")
if __name__=='__main__':main() start_ipython(argv=[], user_ns={'app': app})
def main():
cli()
if __name__ == "__main__":
main()

View File

@ -1,31 +1,37 @@
_G='name' import asyncio
_F='static' import logging
_E='user' import pathlib
_D=None import time
_C=True import uuid
_B='channel_uid'
_A='uid'
import asyncio,logging,pathlib,time,uuid
from snek.view.threads import ThreadsView from snek.view.threads import ThreadsView
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)
from concurrent.futures import ThreadPoolExecutor from concurrent.futures import ThreadPoolExecutor
from aiohttp import web from aiohttp import web
from aiohttp_session import get_session as session_get,session_middleware,setup as session_setup from aiohttp_session import (
get_session as session_get,
session_middleware,
setup as session_setup,
)
from aiohttp_session.cookie_storage import EncryptedCookieStorage from aiohttp_session.cookie_storage import EncryptedCookieStorage
from app.app import Application as BaseApplication from app.app import Application as BaseApplication
from jinja2 import FileSystemLoader from jinja2 import FileSystemLoader
from snek.docs.app import Application as DocsApplication from snek.docs.app import Application as DocsApplication
from snek.mapper import get_mappers from snek.mapper import get_mappers
from snek.service import get_services from snek.service import get_services
from snek.system import http from snek.system import http
from snek.system.cache import Cache from snek.system.cache import Cache
from snek.system.markdown import MarkdownExtension from snek.system.markdown import MarkdownExtension
from snek.system.middleware import auth_middleware,cors_middleware from snek.system.middleware import auth_middleware, cors_middleware
from snek.system.profiler import profiler_handler from snek.system.profiler import profiler_handler
from snek.system.template import EmojiExtension,LinkifyExtension,PythonExtension from snek.system.template import EmojiExtension, LinkifyExtension, PythonExtension
from snek.view.about import AboutHTMLView,AboutMDView from snek.view.about import AboutHTMLView, AboutMDView
from snek.view.avatar import AvatarView from snek.view.avatar import AvatarView
from snek.view.docs import DocsHTMLView,DocsMDView from snek.view.docs import DocsHTMLView, DocsMDView
from snek.view.drive import DriveView from snek.view.drive import DriveView
from snek.view.index import IndexView from snek.view.index import IndexView
from snek.view.login import LoginView from snek.view.login import LoginView
@ -42,79 +48,275 @@ from snek.view.settings.index import SettingsIndexView
from snek.view.settings.profile import SettingsProfileView from snek.view.settings.profile import SettingsProfileView
from snek.view.stats import StatsView from snek.view.stats import StatsView
from snek.view.status import StatusView from snek.view.status import StatusView
from snek.view.terminal import TerminalSocketView,TerminalView from snek.view.terminal import TerminalSocketView, TerminalView
from snek.view.upload import UploadView from snek.view.upload import UploadView
from snek.view.user import UserView from snek.view.user import UserView
from snek.view.web import WebView from snek.view.web import WebView
from snek.webdav import WebdavApplication from snek.webdav import WebdavApplication
from snek.sgit import GitApplication from snek.sgit import GitApplication
SESSION_KEY=b'c79a0c5fda4b424189c427d28c9f7c34'
SESSION_KEY = b"c79a0c5fda4b424189c427d28c9f7c34"
@web.middleware @web.middleware
async def session_middleware(request,handler):A=request;setattr(A,'session',await session_get(A));B=await handler(A);return B async def session_middleware(request, handler):
setattr(request, "session", await session_get(request))
response = await handler(request)
return response
@web.middleware @web.middleware
async def trailing_slash_middleware(request,handler): async def trailing_slash_middleware(request, handler):
A=request if request.path and not request.path.endswith("/"):
if A.path and not A.path.endswith('/'):raise web.HTTPFound(A.path+'/') # Redirect to the same path with a trailing slash
return await handler(A) raise web.HTTPFound(request.path + "/")
return await handler(request)
class Application(BaseApplication): class Application(BaseApplication):
def __init__(A,*B,**C):D=[cors_middleware,web.normalize_path_middleware(merge_slashes=_C)];A.template_path=pathlib.Path(__file__).parent.joinpath('templates');A.static_path=pathlib.Path(__file__).parent.joinpath(_F);super().__init__(middlewares=D,template_path=A.template_path,client_max_size=5368709120*B,**C);session_setup(A,EncryptedCookieStorage(SESSION_KEY));A.tasks=asyncio.Queue();A._middlewares.append(session_middleware);A._middlewares.append(auth_middleware);A.jinja2_env.add_extension(MarkdownExtension);A.jinja2_env.add_extension(LinkifyExtension);A.jinja2_env.add_extension(PythonExtension);A.jinja2_env.add_extension(EmojiExtension);A.setup_router();A.executor=_D;A.cache=Cache(A);A.services=get_services(app=A);A.mappers=get_mappers(app=A);A.on_startup.append(A.prepare_asyncio);A.on_startup.append(A.prepare_database)
async def prepare_asyncio(A,app):app.executor=ThreadPoolExecutor(max_workers=200);app.loop.set_default_executor(A.executor) def __init__(self, *args, **kwargs):
async def create_task(A,task):await A.tasks.put(task) middlewares = [
async def task_runner(A): cors_middleware,
while _C: web.normalize_path_middleware(merge_slashes=True),
B=await A.tasks.get();A.db.begin() ]
try:C=time.time();await B;D=time.time();print(f"Task {B} took {D-C} seconds");A.tasks.task_done() self.template_path = pathlib.Path(__file__).parent.joinpath("templates")
except Exception as E:print(E) self.static_path = pathlib.Path(__file__).parent.joinpath("static")
A.db.commit() super().__init__(
async def prepare_database(A,app): middlewares=middlewares, template_path=self.template_path, client_max_size=1024*1024*1024*5 *args, **kwargs
C='channel_message';D='channel_member';E='username';B='user_uid';A.db.query('PRAGMA journal_mode=WAL');A.db.query('PRAGMA syncnorm=off') )
try: session_setup(self, EncryptedCookieStorage(SESSION_KEY))
if not A.db[_E].has_index(E):A.db[_E].create_index(E,unique=_C) self.tasks = asyncio.Queue()
if not A.db[D].has_index([_B,B]):A.db[D].create_index([_B,B]) self._middlewares.append(session_middleware)
if not A.db[C].has_index([_B,B]):A.db[C].create_index([_B,B]) self._middlewares.append(auth_middleware)
except:pass self.jinja2_env.add_extension(MarkdownExtension)
await app.services.drive.prepare_all();A.loop.create_task(A.task_runner()) self.jinja2_env.add_extension(LinkifyExtension)
def setup_router(A):A.router.add_get('/',IndexView);A.router.add_static('/',pathlib.Path(__file__).parent.joinpath(_F),name=_F,show_index=_C);A.router.add_view('/profiler.html',profiler_handler);A.router.add_view('/about.html',AboutHTMLView);A.router.add_view('/about.md',AboutMDView);A.router.add_view('/logout.json',LogoutView);A.router.add_view('/logout.html',LogoutView);A.router.add_view('/docs.html',DocsHTMLView);A.router.add_view('/docs.md',DocsMDView);A.router.add_view('/status.json',StatusView);A.router.add_view('/settings/index.html',SettingsIndexView);A.router.add_view('/settings/profile.html',SettingsProfileView);A.router.add_view('/settings/profile.json',SettingsProfileView);A.router.add_view('/web.html',WebView);A.router.add_view('/login.html',LoginView);A.router.add_view('/login.json',LoginView);A.router.add_view('/register.html',RegisterView);A.router.add_view('/register.json',RegisterView);A.router.add_view('/drive/{rel_path:.*}',DriveView);A.router.add_view('/drive.bin',UploadView);A.router.add_view('/drive.bin/{uid}.{ext}',UploadView);A.router.add_view('/search-user.html',SearchUserView);A.router.add_view('/search-user.json',SearchUserView);A.router.add_view('/avatar/{uid}.svg',AvatarView);A.router.add_get('/http-get',A.handle_http_get);A.router.add_get('/http-photo',A.handle_http_photo);A.router.add_get('/rpc.ws',RPCView);A.router.add_view('/channel/{channel}.html',WebView);A.router.add_view('/threads.html',ThreadsView);A.router.add_view('/terminal.ws',TerminalSocketView);A.router.add_view('/terminal.html',TerminalView);A.router.add_view('/drive.json',DriveView);A.router.add_view('/drive/{drive}.json',DriveView);A.router.add_view('/stats.json',StatsView);A.router.add_view('/user/{user}.html',UserView);A.router.add_view('/repository/{username}/{repo_name}',RepositoryView);A.router.add_view('/repository/{username}/{repo_name}/{rel_path:.*}',RepositoryView);A.router.add_view('/settings/repositories/index.html',RepositoriesIndexView);A.router.add_view('/settings/repositories/create.html',RepositoriesCreateView);A.router.add_view('/settings/repositories/repository/{name}/update.html',RepositoriesUpdateView);A.router.add_view('/settings/repositories/repository/{name}/delete.html',RepositoriesDeleteView);A.webdav=WebdavApplication(A);A.git=GitApplication(A);A.add_subapp('/webdav',A.webdav);A.add_subapp('/git',A.git) self.jinja2_env.add_extension(PythonExtension)
async def handle_test(A,request):return await A.render_template('test.html',request,context={_G:'retoor'}) self.jinja2_env.add_extension(EmojiExtension)
async def handle_http_get(C,request):A=request.query.get('url');B=await http.get(A);return web.Response(body=B)
async def handle_http_photo(C,request):A=request.query.get('url');B=await http.create_site_photo(A);return web.Response(body=B.read_bytes(),headers={'Content-Type':'image/png'}) self.setup_router()
async def render_template(A,template,request,context=_D): self.executor = None
I='channels';J='new_count';K='color';L=template;F='last_message_on';D=request;C=context;G=[] self.cache = Cache(self)
if not C:C={} self.services = get_services(app=self)
C['rid']=str(uuid.uuid4()) self.mappers = get_mappers(app=self)
if D.session.get(_A): self.on_startup.append(self.prepare_asyncio)
async for E in A.services.channel_member.find(user_uid=D.session.get(_A),deleted_at=_D,is_banned=False): self.on_startup.append(self.prepare_database)
B={};M=await A.services.channel_member.get_other_dm_user(E[_B],D.session.get(_A));H=await E.get_channel();N=await H.get_last_message();O=_D
if N:P=await N.get_user();O=P[K] async def prepare_asyncio(self, app):
B[K]=O;B[F]=H[F];B['is_private']=H['tag']=='dm' # app.loop = asyncio.get_running_loop()
if M:B[_G]=M['nick'];B[_A]=E[_B] app.executor = ThreadPoolExecutor(max_workers=200)
else:B[_G]=E['label'];B[_A]=E[_B] app.loop.set_default_executor(self.executor)
B[J]=E[J];G.append(B)
G.sort(key=lambda x:x[F]or'',reverse=_C) async def create_task(self, task):
if I not in C:C[I]=G await self.tasks.put(task)
if _E not in C:C[_E]=await A.services.user.get(D.session.get(_A))
A.template_path.joinpath(L);await A.services.user.get_template_path(D.session.get(_A));A.original_loader=A.jinja2_env.loader;A.jinja2_env.loader=await A.get_user_template_loader(D.session.get(_A));Q=await super().render_template(L,D,C);A.jinja2_env.loader=A.original_loader;return Q async def task_runner(self):
async def static_handler(B,request): while True:
D=request;E=D.match_info.get('filename','');C=[];F=D.session.get(_A) task = await self.tasks.get()
if F: self.db.begin()
A=await B.services.user.get_static_path(F) try:
if A:C.append(A) task_start = time.time()
for H in B.services.user.get_admin_uids(): await task
A=await B.services.user.get_static_path(H) task_end = time.time()
if A:C.append(A) print(f"Task {task} took {task_end - task_start} seconds")
C.append(B.static_path) self.tasks.task_done()
for G in C: except Exception as ex:
if pathlib.Path(G).joinpath(E).exists():return web.FileResponse(pathlib.Path(G).joinpath(E)) print(ex)
return web.HTTPNotFound() self.db.commit()
async def get_user_template_loader(B,uid=_D):
C=[] async def prepare_database(self, app):
for D in B.services.user.get_admin_uids(): self.db.query("PRAGMA journal_mode=WAL")
A=await B.services.user.get_template_path(D) self.db.query("PRAGMA syncnorm=off")
if A:C.append(A)
if uid: try:
A=await B.services.user.get_template_path(uid) if not self.db["user"].has_index("username"):
if A:C.append(A) self.db["user"].create_index("username", unique=True)
C.append(B.template_path);return FileSystemLoader(C) if not self.db["channel_member"].has_index(["channel_uid", "user_uid"]):
app=Application(db_path='sqlite:///snek.db') self.db["channel_member"].create_index(["channel_uid", "user_uid"])
async def main():await web._run_app(app,port=8081,host='0.0.0.0') if not self.db["channel_message"].has_index(["channel_uid", "user_uid"]):
if __name__=='__main__':asyncio.run(main()) self.db["channel_message"].create_index(["channel_uid", "user_uid"])
except:
pass
await app.services.drive.prepare_all()
self.loop.create_task(self.task_runner())
def setup_router(self):
self.router.add_get("/", IndexView)
self.router.add_static(
"/",
pathlib.Path(__file__).parent.joinpath("static"),
name="static",
show_index=True,
)
self.router.add_view("/profiler.html", profiler_handler)
self.router.add_view("/about.html", AboutHTMLView)
self.router.add_view("/about.md", AboutMDView)
self.router.add_view("/logout.json", LogoutView)
self.router.add_view("/logout.html", LogoutView)
self.router.add_view("/docs.html", DocsHTMLView)
self.router.add_view("/docs.md", DocsMDView)
self.router.add_view("/status.json", StatusView)
self.router.add_view("/settings/index.html", SettingsIndexView)
self.router.add_view("/settings/profile.html", SettingsProfileView)
self.router.add_view("/settings/profile.json", SettingsProfileView)
self.router.add_view("/web.html", WebView)
self.router.add_view("/login.html", LoginView)
self.router.add_view("/login.json", LoginView)
self.router.add_view("/register.html", RegisterView)
self.router.add_view("/register.json", RegisterView)
self.router.add_view("/drive/{rel_path:.*}", DriveView)
self.router.add_view("/drive.bin", UploadView)
self.router.add_view("/drive.bin/{uid}.{ext}", UploadView)
self.router.add_view("/search-user.html", SearchUserView)
self.router.add_view("/search-user.json", SearchUserView)
self.router.add_view("/avatar/{uid}.svg", AvatarView)
self.router.add_get("/http-get", self.handle_http_get)
self.router.add_get("/http-photo", self.handle_http_photo)
self.router.add_get("/rpc.ws", RPCView)
self.router.add_view("/channel/{channel}.html", WebView)
self.router.add_view("/threads.html", ThreadsView)
self.router.add_view("/terminal.ws", TerminalSocketView)
self.router.add_view("/terminal.html", TerminalView)
self.router.add_view("/drive.json", DriveView)
self.router.add_view("/drive/{drive}.json", DriveView)
self.router.add_view("/stats.json", StatsView)
self.router.add_view("/user/{user}.html", UserView)
self.router.add_view("/repository/{username}/{repo_name}", RepositoryView)
self.router.add_view("/repository/{username}/{repo_name}/{rel_path:.*}", RepositoryView)
self.router.add_view("/settings/repositories/index.html", RepositoriesIndexView)
self.router.add_view("/settings/repositories/create.html", RepositoriesCreateView)
self.router.add_view("/settings/repositories/repository/{name}/update.html", RepositoriesUpdateView)
self.router.add_view("/settings/repositories/repository/{name}/delete.html", RepositoriesDeleteView)
self.webdav = WebdavApplication(self)
self.git = GitApplication(self)
self.add_subapp("/webdav", self.webdav)
self.add_subapp("/git",self.git)
#self.router.add_get("/{file_path:.*}", self.static_handler)
async def handle_test(self, request):
return await self.render_template(
"test.html", request, context={"name": "retoor"}
)
async def handle_http_get(self, request: web.Request):
url = request.query.get("url")
content = await http.get(url)
return web.Response(body=content)
async def handle_http_photo(self, request):
url = request.query.get("url")
path = await http.create_site_photo(url)
return web.Response(
body=path.read_bytes(), headers={"Content-Type": "image/png"}
)
# @time_cache_async(60)
async def render_template(self, template, request, context=None):
channels = []
if not context:
context = {}
context["rid"] = str(uuid.uuid4())
if request.session.get("uid"):
async for subscribed_channel in self.services.channel_member.find(
user_uid=request.session.get("uid"), deleted_at=None, is_banned=False
):
item = {}
other_user = await self.services.channel_member.get_other_dm_user(
subscribed_channel["channel_uid"], request.session.get("uid")
)
parent_object = await subscribed_channel.get_channel()
last_message = await parent_object.get_last_message()
color = None
if last_message:
last_message_user = await last_message.get_user()
color = last_message_user["color"]
item["color"] = color
item["last_message_on"] = parent_object["last_message_on"]
item["is_private"] = parent_object["tag"] == "dm"
if other_user:
item["name"] = other_user["nick"]
item["uid"] = subscribed_channel["channel_uid"]
else:
item["name"] = subscribed_channel["label"]
item["uid"] = subscribed_channel["channel_uid"]
item["new_count"] = subscribed_channel["new_count"]
channels.append(item)
channels.sort(key=lambda x: x["last_message_on"] or "", reverse=True)
if "channels" not in context:
context["channels"] = channels
if "user" not in context:
context["user"] = await self.services.user.get(
request.session.get("uid")
)
self.template_path.joinpath(template)
await self.services.user.get_template_path(request.session.get("uid"))
self.original_loader = self.jinja2_env.loader
self.jinja2_env.loader = await self.get_user_template_loader(
request.session.get("uid")
)
rendered = await super().render_template(template, request, context)
self.jinja2_env.loader = self.original_loader
return rendered
async def static_handler(self, request):
file_name = request.match_info.get('filename', '')
paths = []
uid = request.session.get("uid")
if uid:
user_static_path = await self.services.user.get_static_path(uid)
if user_static_path:
paths.append(user_static_path)
for admin_uid in self.services.user.get_admin_uids():
user_static_path = await self.services.user.get_static_path(admin_uid)
if user_static_path:
paths.append(user_static_path)
paths.append(self.static_path)
for path in paths:
if pathlib.Path(path).joinpath(file_name).exists():
return web.FileResponse(pathlib.Path(path).joinpath(file_name))
return web.HTTPNotFound()
async def get_user_template_loader(self, uid=None):
template_paths = []
for admin_uid in self.services.user.get_admin_uids():
user_template_path = await self.services.user.get_template_path(admin_uid)
if user_template_path:
template_paths.append(user_template_path)
if uid:
user_template_path = await self.services.user.get_template_path(uid)
if user_template_path:
template_paths.append(user_template_path)
template_paths.append(self.template_path)
return FileSystemLoader(template_paths)
app = Application(db_path="sqlite:///snek.db")
async def main():
await web._run_app(app, port=8081, host="0.0.0.0")
if __name__ == "__main__":
asyncio.run(main())

View File

@ -1,14 +1,43 @@
import pathlib import pathlib
from aiohttp import web from aiohttp import web
from app.app import Application as BaseApplication from app.app import Application as BaseApplication
from snek.system.markdown import MarkdownExtension from snek.system.markdown import MarkdownExtension
class Application(BaseApplication): class Application(BaseApplication):
def __init__(A,path=None,*B,**C):A.path=pathlib.Path(path);D=A.path;super().__init__(*B,template_path=D,**C);A.jinja2_env.add_extension(MarkdownExtension);A.router.add_get('/{tail:.*}',A.handle_document)
async def handle_document(B,request): def __init__(self, path=None, *args, **kwargs):
D='text/plain';E=b'Resource is not found on this server.';F='index.html';G=request;C=G.match_info['tail'].strip('/') self.path = pathlib.Path(path)
if C=='':C=F template_path = self.path
A=B.path.joinpath(C)
if not A.exists():return web.Response(status=404,body=E,content_type=D) super().__init__(template_path=template_path, *args, **kwargs)
if A.is_dir():A=A.joinpath(F) self.jinja2_env.add_extension(MarkdownExtension)
if not A.exists():return web.Response(status=404,body=E,content_type=D)
H=await B.render_template(str(A.relative_to(B.path)),G);return H self.router.add_get("/{tail:.*}", self.handle_document)
async def handle_document(self, request):
relative_path = request.match_info["tail"].strip("/")
if relative_path == "":
relative_path = "index.html"
document_path = self.path.joinpath(relative_path)
if not document_path.exists():
return web.Response(
status=404,
body=b"Resource is not found on this server.",
content_type="text/plain",
)
if document_path.is_dir():
document_path = document_path.joinpath("index.html")
if not document_path.exists():
return web.Response(
status=404,
body=b"Resource is not found on this server.",
content_type="text/plain",
)
response = await self.render_template(
str(document_path.relative_to(self.path)), request
)
return response

View File

@ -1,12 +1,39 @@
_B='created_at'
_A='uid'
import asyncio import asyncio
from snek.app import app from snek.app import app
async def fix_message(message):C='user';D='text';B='user_uid';A=message;A={_A:A[_A],B:A[B],D:A['message'],'sent':A[_B]};E=await app.services.user.get(uid=A[B]);A[C]=E and E['username']or None;return(A[C]or'')+': '+(A[D]or'')
async def fix_message(message):
message = {
"uid": message["uid"],
"user_uid": message["user_uid"],
"text": message["message"],
"sent": message["created_at"],
}
user = await app.services.user.get(uid=message["user_uid"])
message["user"] = user and user["username"] or None
return (message["user"] or "") + ": " + (message["text"] or "")
async def dump_public_channels(): async def dump_public_channels():
A=[] result = []
for B in app.db['channel'].find(is_private=False,is_listed=True,tag='public'):print(f"Dumping channel: {B["label"]}.");A+=[await fix_message(A)for A in app.db['channel_message'].find(channel_uid=B[_A],order_by=_B)];print('Dump succesfull!') for channel in app.db["channel"].find(
print('Converting to json.');print('Converting succesful, now writing to dump.json') is_private=False, is_listed=True, tag="public"
with open('dump.txt','w')as C:C.write('\n\n'.join(A)) ):
print('Dump written to dump.json') print(f"Dumping channel: {channel['label']}.")
if __name__=='__main__':asyncio.run(dump_public_channels()) result += [
await fix_message(record)
for record in app.db["channel_message"].find(
channel_uid=channel["uid"], order_by="created_at"
)
]
print("Dump succesfull!")
print("Converting to json.")
print("Converting succesful, now writing to dump.json")
with open("dump.txt", "w") as f:
f.write("\n\n".join(result))
print("Dump written to dump.json")
if __name__ == "__main__":
asyncio.run(dump_public_channels())

View File

@ -1,14 +1,51 @@
_B='username' from snek.system.form import Form, FormButtonElement, FormInputElement, HTMLElement
_A='password'
from snek.system.form import Form,FormButtonElement,FormInputElement,HTMLElement
class AuthField(FormInputElement): class AuthField(FormInputElement):
@property
async def errors(self): @property
A=self;B=await super().errors async def errors(self):
if A.model.password.value and A.model.username.value: result = await super().errors
if not await A.app.services.user.validate_login(A.model.username.value,A.model.password.value):return['Invalid username or password'] if self.model.password.value and self.model.username.value:
return B if not await self.app.services.user.validate_login(
self.model.username.value, self.model.password.value
):
return ["Invalid username or password"]
return result
class LoginForm(Form): class LoginForm(Form):
title=HTMLElement(tag='h1',text='Login');username=AuthField(name=_B,required=True,min_length=2,max_length=20,regex='^[a-zA-Z0-9_-]+$',place_holder='Username',type='text');password=AuthField(name=_A,required=True,min_length=1,type=_A,place_holder='Password');action=FormButtonElement(name='action',value='submit',text='Login',type='button')
@property title = HTMLElement(tag="h1", text="Login")
async def is_valid(self):A=self;return all([A[_B],A[_A],not await A.username.errors,not await A.password.errors])
username = AuthField(
name="username",
required=True,
min_length=2,
max_length=20,
regex=r"^[a-zA-Z0-9_-]+$",
place_holder="Username",
type="text",
)
password = AuthField(
name="password",
required=True,
min_length=1,
type="password",
place_holder="Password",
)
action = FormButtonElement(
name="action", value="submit", text="Login", type="button"
)
@property
async def is_valid(self):
return all(
[
self["username"],
self["password"],
not await self.username.errors,
not await self.password.errors,
]
)

View File

@ -1,10 +1,44 @@
_B='password' from snek.system.form import Form, FormButtonElement, FormInputElement, HTMLElement
_A='Register'
from snek.system.form import Form,FormButtonElement,FormInputElement,HTMLElement
class UsernameField(FormInputElement): class UsernameField(FormInputElement):
@property
async def errors(self): @property
A=self;B=await super().errors async def errors(self):
if A.value and await A.app.services.user.count(username=A.value):B.append('Username is not available.') result = await super().errors
return B if self.value and await self.app.services.user.count(username=self.value):
class RegisterForm(Form):title=HTMLElement(tag='h1',text=_A);username=UsernameField(name='username',required=True,min_length=2,max_length=20,regex='^[a-zA-Z0-9_-]+$',place_holder='Username',type='text');email=FormInputElement(name='email',required=False,regex='^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$',place_holder='Email address',type='email');password=FormInputElement(name=_B,required=True,min_length=1,type=_B,place_holder='Password');action=FormButtonElement(name='action',value='submit',text=_A,type='button') result.append("Username is not available.")
return result
class RegisterForm(Form):
title = HTMLElement(tag="h1", text="Register")
username = UsernameField(
name="username",
required=True,
min_length=2,
max_length=20,
regex=r"^[a-zA-Z0-9_-]+$",
place_holder="Username",
type="text",
)
email = FormInputElement(
name="email",
required=False,
regex=r"^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$",
place_holder="Email address",
type="email",
)
password = FormInputElement(
name="password",
required=True,
min_length=1,
type="password",
place_holder="Password",
)
action = FormButtonElement(
name="action", value="submit", text="Register", type="button"
)

View File

@ -1,2 +1,18 @@
from snek.system.form import Form,FormButtonElement,FormInputElement,HTMLElement from snek.system.form import Form, FormButtonElement, FormInputElement, HTMLElement
class SearchUserForm(Form):title=HTMLElement(tag='h1',text='Search user');username=FormInputElement(name='username',required=True,min_length=1,max_length=128,place_holder='Username');action=FormButtonElement(name='action',value='submit',text='Search',type='button')
class SearchUserForm(Form):
title = HTMLElement(tag="h1", text="Search user")
username = FormInputElement(
name="username",
required=True,
min_length=1,
max_length=128,
place_holder="Username",
)
action = FormButtonElement(
name="action", value="submit", text="Search", type="button"
)

View File

@ -1,5 +1,25 @@
_C='button' from snek.system.form import Form, FormButtonElement, FormInputElement, HTMLElement
_B='submit'
_A='action'
from snek.system.form import Form,FormButtonElement,FormInputElement,HTMLElement class SettingsProfileForm(Form):
class SettingsProfileForm(Form):nick=FormInputElement(name='nick',required=True,place_holder='Your Nickname',min_length=1,max_length=20);action=FormButtonElement(name=_A,value=_B,text='Save',type=_C);title=HTMLElement(tag='h1',text='Profile');profile=FormInputElement(name='profile',place_holder='Tell about yourself.',required=False,max_length=300);action=FormButtonElement(name=_A,value=_B,text='Save',type=_C)
nick = FormInputElement(
name="nick",
required=True,
place_holder="Your Nickname",
min_length=1,
max_length=20,
)
action = FormButtonElement(
name="action", value="submit", text="Save", type="button"
)
title = HTMLElement(tag="h1", text="Profile")
profile = FormInputElement(
name="profile",
place_holder="Tell about yourself.",
required=False,
max_length=300,
)
action = FormButtonElement(
name="action", value="submit", text="Save", type="button"
)

View File

@ -1,2 +1,3 @@
from snek.app import app from snek.app import app
application=app
application = app

View File

@ -1,4 +1,5 @@
import functools import functools
from snek.mapper.channel import ChannelMapper from snek.mapper.channel import ChannelMapper
from snek.mapper.channel_member import ChannelMemberMapper from snek.mapper.channel_member import ChannelMemberMapper
from snek.mapper.channel_message import ChannelMessageMapper from snek.mapper.channel_message import ChannelMessageMapper
@ -9,6 +10,24 @@ from snek.mapper.user import UserMapper
from snek.mapper.user_property import UserPropertyMapper from snek.mapper.user_property import UserPropertyMapper
from snek.mapper.repository import RepositoryMapper from snek.mapper.repository import RepositoryMapper
from snek.system.object import Object from snek.system.object import Object
@functools.cache @functools.cache
def get_mappers(app=None):A=app;return Object(**{'user':UserMapper(app=A),'channel_member':ChannelMemberMapper(app=A),'channel':ChannelMapper(app=A),'channel_message':ChannelMessageMapper(app=A),'notification':NotificationMapper(app=A),'drive_item':DriveItemMapper(app=A),'drive':DriveMapper(app=A),'user_property':UserPropertyMapper(app=A),'repository':RepositoryMapper(app=A)}) def get_mappers(app=None):
def get_mapper(name,app=None):return get_mappers(app=app)[name] return Object(
**{
"user": UserMapper(app=app),
"channel_member": ChannelMemberMapper(app=app),
"channel": ChannelMapper(app=app),
"channel_message": ChannelMessageMapper(app=app),
"notification": NotificationMapper(app=app),
"drive_item": DriveItemMapper(app=app),
"drive": DriveMapper(app=app),
"user_property": UserPropertyMapper(app=app),
"repository": RepositoryMapper(app=app),
}
)
def get_mapper(name, app=None):
return get_mappers(app=app)[name]

View File

@ -1,3 +1,7 @@
from snek.model.channel import ChannelModel from snek.model.channel import ChannelModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class ChannelMapper(BaseMapper):table_name='channel';model_class=ChannelModel
class ChannelMapper(BaseMapper):
table_name = "channel"
model_class = ChannelModel

View File

@ -1,3 +1,7 @@
from snek.model.channel_member import ChannelMemberModel from snek.model.channel_member import ChannelMemberModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class ChannelMemberMapper(BaseMapper):table_name='channel_member';model_class=ChannelMemberModel
class ChannelMemberMapper(BaseMapper):
table_name = "channel_member"
model_class = ChannelMemberModel

View File

@ -1,3 +1,7 @@
from snek.model.channel_message import ChannelMessageModel from snek.model.channel_message import ChannelMessageModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class ChannelMessageMapper(BaseMapper):model_class=ChannelMessageModel;table_name='channel_message'
class ChannelMessageMapper(BaseMapper):
model_class = ChannelMessageModel
table_name = "channel_message"

View File

@ -1,3 +1,7 @@
from snek.model.drive import DriveModel from snek.model.drive import DriveModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class DriveMapper(BaseMapper):table_name='drive';model_class=DriveModel
class DriveMapper(BaseMapper):
table_name = "drive"
model_class = DriveModel

View File

@ -1,3 +1,8 @@
from snek.model.drive_item import DriveItemModel from snek.model.drive_item import DriveItemModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class DriveItemMapper(BaseMapper):model_class=DriveItemModel;table_name='drive_item'
class DriveItemMapper(BaseMapper):
model_class = DriveItemModel
table_name = "drive_item"

View File

@ -1,3 +1,7 @@
from snek.model.notification import NotificationModel from snek.model.notification import NotificationModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class NotificationMapper(BaseMapper):table_name='notification';model_class=NotificationModel
class NotificationMapper(BaseMapper):
table_name = "notification"
model_class = NotificationModel

View File

@ -1,3 +1,7 @@
from snek.model.repository import RepositoryModel from snek.model.repository import RepositoryModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class RepositoryMapper(BaseMapper):model_class=RepositoryModel;table_name='repository'
class RepositoryMapper(BaseMapper):
model_class = RepositoryModel
table_name = "repository"

View File

@ -1,7 +1,20 @@
from snek.model.user import UserModel from snek.model.user import UserModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class UserMapper(BaseMapper): class UserMapper(BaseMapper):
table_name='user';model_class=UserModel table_name = "user"
def get_admin_uids(A): model_class = UserModel
try:return[A['uid']for A in A.db.query('SELECT uid FROM user WHERE is_admin = :is_admin',{'is_admin':True})]
except Exception as B:print(B);return[] def get_admin_uids(self):
try:
return [
user["uid"]
for user in self.db.query(
"SELECT uid FROM user WHERE is_admin = :is_admin",
{"is_admin": True},
)
]
except Exception as ex:
print(ex)
return []

View File

@ -1,3 +1,7 @@
from snek.model.user_property import UserPropertyModel from snek.model.user_property import UserPropertyModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class UserPropertyMapper(BaseMapper):table_name='user_property';model_class=UserPropertyModel
class UserPropertyMapper(BaseMapper):
table_name = "user_property"
model_class = UserPropertyModel

View File

@ -1,6 +1,9 @@
import functools import functools
from snek.model.channel import ChannelModel from snek.model.channel import ChannelModel
from snek.model.channel_member import ChannelMemberModel from snek.model.channel_member import ChannelMemberModel
# from snek.model.channel_message import ChannelMessageModel
from snek.model.channel_message import ChannelMessageModel from snek.model.channel_message import ChannelMessageModel
from snek.model.drive import DriveModel from snek.model.drive import DriveModel
from snek.model.drive_item import DriveItemModel from snek.model.drive_item import DriveItemModel
@ -9,6 +12,24 @@ from snek.model.user import UserModel
from snek.model.user_property import UserPropertyModel from snek.model.user_property import UserPropertyModel
from snek.model.repository import RepositoryModel from snek.model.repository import RepositoryModel
from snek.system.object import Object from snek.system.object import Object
@functools.cache @functools.cache
def get_models():return Object(**{'user':UserModel,'channel_member':ChannelMemberModel,'channel':ChannelModel,'channel_message':ChannelMessageModel,'drive_item':DriveItemModel,'drive':DriveModel,'notification':NotificationModel,'user_property':UserPropertyModel,'repository':RepositoryModel}) def get_models():
def get_model(name):return get_models()[name] return Object(
**{
"user": UserModel,
"channel_member": ChannelMemberModel,
"channel": ChannelModel,
"channel_message": ChannelMessageModel,
"drive_item": DriveItemModel,
"drive": DriveModel,
"notification": NotificationModel,
"user_property": UserPropertyModel,
"repository": RepositoryModel,
}
)
def get_model(name):
return get_models()[name]

View File

@ -1,12 +1,30 @@
_C='uid'
_B=False
_A=True
from snek.model.channel_message import ChannelMessageModel from snek.model.channel_message import ChannelMessageModel
from snek.system.model import BaseModel,ModelField from snek.system.model import BaseModel, ModelField
class ChannelModel(BaseModel): class ChannelModel(BaseModel):
label=ModelField(name='label',required=_A,kind=str);description=ModelField(name='description',required=_B,kind=str);tag=ModelField(name='tag',required=_B,kind=str);created_by_uid=ModelField(name='created_by_uid',required=_A,kind=str);is_private=ModelField(name='is_private',required=_A,kind=bool,value=_B);is_listed=ModelField(name='is_listed',required=_A,kind=bool,value=_A);index=ModelField(name='index',required=_A,kind=int,value=1000);last_message_on=ModelField(name='last_message_on',required=_B,kind=str) label = ModelField(name="label", required=True, kind=str)
async def get_last_message(A): description = ModelField(name="description", required=False, kind=str)
try: tag = ModelField(name="tag", required=False, kind=str)
async for B in A.app.services.channel_message.query('SELECT uid FROM channel_message WHERE channel_uid=:channel_uid ORDER BY created_at DESC LIMIT 1',{'channel_uid':A[_C]}):return await A.app.services.channel_message.get(uid=B[_C]) created_by_uid = ModelField(name="created_by_uid", required=True, kind=str)
except:pass is_private = ModelField(name="is_private", required=True, kind=bool, value=False)
async def get_members(A):return await A.app.services.channel_member.find(channel_uid=A[_C],deleted_at=None,is_banned=_B) is_listed = ModelField(name="is_listed", required=True, kind=bool, value=True)
index = ModelField(name="index", required=True, kind=int, value=1000)
last_message_on = ModelField(name="last_message_on", required=False, kind=str)
async def get_last_message(self) -> ChannelMessageModel:
try:
async for model in self.app.services.channel_message.query(
"SELECT uid FROM channel_message WHERE channel_uid=:channel_uid ORDER BY created_at DESC LIMIT 1",
{"channel_uid": self["uid"]},
):
return await self.app.services.channel_message.get(uid=model["uid"])
except:
pass
return None
async def get_members(self):
return await self.app.services.channel_member.find(
channel_uid=self["uid"], deleted_at=None, is_banned=False
)

View File

@ -1,19 +1,41 @@
_D='channel_uid' from snek.system.model import BaseModel, ModelField
_C='user_uid'
_B=False
_A=True
from snek.system.model import BaseModel,ModelField
class ChannelMemberModel(BaseModel): class ChannelMemberModel(BaseModel):
label=ModelField(name='label',required=_A,kind=str);channel_uid=ModelField(name=_D,required=_A,kind=str);user_uid=ModelField(name=_C,required=_A,kind=str);is_moderator=ModelField(name='is_moderator',required=_A,kind=bool,value=_B);is_read_only=ModelField(name='is_read_only',required=_A,kind=bool,value=_B);is_muted=ModelField(name='is_muted',required=_A,kind=bool,value=_B);is_banned=ModelField(name='is_banned',required=_A,kind=bool,value=_B);new_count=ModelField(name='new_count',required=_B,kind=int,value=0) label = ModelField(name="label", required=True, kind=str)
async def get_user(A):return await A.app.services.user.get(uid=A[_C]) channel_uid = ModelField(name="channel_uid", required=True, kind=str)
async def get_channel(A):return await A.app.services.channel.get(uid=A[_D]) user_uid = ModelField(name="user_uid", required=True, kind=str)
async def get_name(A): is_moderator = ModelField(
B=await A.get_channel() name="is_moderator", required=True, kind=bool, value=False
if B['tag']=='dm':C=await A.get_other_dm_user();return C['nick'] )
return B['name']or A['label'] is_read_only = ModelField(
async def get_other_dm_user(A): name="is_read_only", required=True, kind=bool, value=False
B='uid';C=await A.get_channel() )
if C['tag']!='dm':return is_muted = ModelField(name="is_muted", required=True, kind=bool, value=False)
async for D in A.app.services.channel_member.find(channel_uid=C[B]): is_banned = ModelField(name="is_banned", required=True, kind=bool, value=False)
if D[B]!=A[B]:return await A.app.services.user.get(uid=D[_C]) new_count = ModelField(name="new_count", required=False, kind=int, value=0)
return await A.get_user()
async def get_user(self):
return await self.app.services.user.get(uid=self["user_uid"])
async def get_channel(self):
return await self.app.services.channel.get(uid=self["channel_uid"])
async def get_name(self):
channel = await self.get_channel()
if channel["tag"] == "dm":
user = await self.get_other_dm_user()
return user["nick"]
return channel["name"] or self["label"]
async def get_other_dm_user(self):
channel = await self.get_channel()
if channel["tag"] != "dm":
return None
async for model in self.app.services.channel_member.find(
channel_uid=channel["uid"]
):
if model["uid"] != self["uid"]:
return await self.app.services.user.get(uid=model["user_uid"])
return await self.get_user()

View File

@ -1,8 +1,15 @@
_B='user_uid'
_A='channel_uid'
from snek.model.user import UserModel from snek.model.user import UserModel
from snek.system.model import BaseModel,ModelField from snek.system.model import BaseModel, ModelField
class ChannelMessageModel(BaseModel): class ChannelMessageModel(BaseModel):
channel_uid=ModelField(name=_A,required=True,kind=str);user_uid=ModelField(name=_B,required=True,kind=str);message=ModelField(name='message',required=True,kind=str);html=ModelField(name='html',required=False,kind=str) channel_uid = ModelField(name="channel_uid", required=True, kind=str)
async def get_user(A):return await A.app.services.user.get(uid=A[_B]) user_uid = ModelField(name="user_uid", required=True, kind=str)
async def get_channel(A):return await A.app.services.channel.get(uid=A[_A]) message = ModelField(name="message", required=True, kind=str)
html = ModelField(name="html", required=False, kind=str)
async def get_user(self) -> UserModel:
return await self.app.services.user.get(uid=self["user_uid"])
async def get_channel(self):
return await self.app.services.channel.get(uid=self["channel_uid"])

View File

@ -1,6 +1,14 @@
from snek.system.model import BaseModel,ModelField from snek.system.model import BaseModel, ModelField
class DriveModel(BaseModel): class DriveModel(BaseModel):
user_uid=ModelField(name='user_uid',required=True);name=ModelField(name='name',required=False,type=str)
@property user_uid = ModelField(name="user_uid", required=True)
async def items(self): name = ModelField(name="name", required=False, type=str)
async for A in self.app.services.drive_item.find(drive_uid=self['uid']):yield A
@property
async def items(self):
async for drive_item in self.app.services.drive_item.find(
drive_uid=self["uid"]
):
yield drive_item

View File

@ -1,10 +1,21 @@
_B='name'
_A=True
import mimetypes import mimetypes
from snek.system.model import BaseModel,ModelField
from snek.system.model import BaseModel, ModelField
class DriveItemModel(BaseModel): class DriveItemModel(BaseModel):
drive_uid=ModelField(name='drive_uid',required=_A,kind=str);name=ModelField(name=_B,required=_A,kind=str);path=ModelField(name='path',required=_A,kind=str);file_type=ModelField(name='file_type',required=_A,kind=str);file_size=ModelField(name='file_size',required=_A,kind=int);is_available=ModelField(name='is_available',required=_A,kind=bool,initial_value=_A) drive_uid = ModelField(name="drive_uid", required=True, kind=str)
@property name = ModelField(name="name", required=True, kind=str)
def extension(self):return self[_B].split('.')[-1] path = ModelField(name="path", required=True, kind=str)
@property file_type = ModelField(name="file_type", required=True, kind=str)
def mime_type(self):A,B=mimetypes.guess_type(self[_B]);return A file_size = ModelField(name="file_size", required=True, kind=int)
is_available = ModelField(name="is_available", required=True, kind=bool, initial_value=True)
@property
def extension(self):
return self["name"].split(".")[-1]
@property
def mime_type(self):
mimetype, _ = mimetypes.guess_type(self["name"])
return mimetype

View File

@ -1,3 +1,9 @@
_A=True from snek.system.model import BaseModel, ModelField
from snek.system.model import BaseModel,ModelField
class NotificationModel(BaseModel):object_uid=ModelField(name='object_uid',required=_A);object_type=ModelField(name='object_type',required=_A);message=ModelField(name='message',required=_A);user_uid=ModelField(name='user_uid',required=_A);read_at=ModelField(name='is_read',required=_A)
class NotificationModel(BaseModel):
object_uid = ModelField(name="object_uid", required=True)
object_type = ModelField(name="object_type", required=True)
message = ModelField(name="message", required=True)
user_uid = ModelField(name="user_uid", required=True)
read_at = ModelField(name="is_read", required=True)

View File

@ -1,3 +1,14 @@
from snek.model.user import UserModel from snek.model.user import UserModel
from snek.system.model import BaseModel,ModelField from snek.system.model import BaseModel, ModelField
class RepositoryModel(BaseModel):user_uid=ModelField(name='user_uid',required=True,kind=str);name=ModelField(name='name',required=True,kind=str);is_private=ModelField(name='is_private',required=False,kind=bool)
class RepositoryModel(BaseModel):
user_uid = ModelField(name="user_uid", required=True, kind=str)
name = ModelField(name="name", required=True, kind=str)
is_private = ModelField(name="is_private", required=False, kind=bool)

View File

@ -1,17 +1,60 @@
_D='^[a-zA-Z0-9_-+/]+$' from snek.system.model import BaseModel, ModelField
_C=False
_B=True
_A='uid'
from snek.system.model import BaseModel,ModelField
class UserModel(BaseModel): class UserModel(BaseModel):
username=ModelField(name='username',required=_B,min_length=2,max_length=20,regex=_D);nick=ModelField(name='nick',required=_B,min_length=2,max_length=20,regex=_D);color=ModelField(name='color',required=_B,regex='^#[0-9a-fA-F]{6}$',kind=str);email=ModelField(name='email',required=_C,regex='^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$');password=ModelField(name='password',required=_B,min_length=1);last_ping=ModelField(name='last_ping',required=_C,kind=str);is_admin=ModelField(name='is_admin',required=_C,kind=bool)
async def get_property(A,name): username = ModelField(
B=await A.app.services.user_property.find_one(user_uid=A[_A],name=name) name="username",
if B:return B['value'] required=True,
async def has_property(A,name):return await A.app.services.user_property.exists(user_uid=A[_A],name=name) min_length=2,
async def set_property(A,name,value): max_length=20,
C=value;B=name regex=r"^[a-zA-Z0-9_-+/]+$",
if not await A.has_property(B):await A.app.services.user_property.insert(user_uid=A[_A],name=B,value=C) )
else:await A.app.services.user_property.update(user_uid=A[_A],name=B,value=C) nick = ModelField(
async def get_channel_members(A): name="nick",
async for B in A.app.services.channel_member.find(user_uid=A[_A],is_banned=_C,deleted_at=None):yield B required=True,
min_length=2,
max_length=20,
regex=r"^[a-zA-Z0-9_-+/]+$",
)
color = ModelField(
name="color", required=True, regex=r"^#[0-9a-fA-F]{6}$", kind=str
)
email = ModelField(
name="email",
required=False,
regex=r"^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$",
)
password = ModelField(name="password", required=True, min_length=1)
last_ping = ModelField(name="last_ping", required=False, kind=str)
is_admin = ModelField(name="is_admin", required=False, kind=bool)
async def get_property(self, name):
prop = await self.app.services.user_property.find_one(
user_uid=self["uid"], name=name
)
if prop:
return prop["value"]
async def has_property(self, name):
return await self.app.services.user_property.exists(
user_uid=self["uid"], name=name
)
async def set_property(self, name, value):
if not await self.has_property(name):
await self.app.services.user_property.insert(
user_uid=self["uid"], name=name, value=value
)
else:
await self.app.services.user_property.update(
user_uid=self["uid"], name=name, value=value
)
async def get_channel_members(self):
async for channel_member in self.app.services.channel_member.find(
user_uid=self["uid"], is_banned=False, deleted_at=None
):
yield channel_member

View File

@ -1,2 +1,7 @@
from snek.system.model import BaseModel,ModelField from snek.system.model import BaseModel, ModelField
class UserPropertyModel(BaseModel):user_uid=ModelField(name='user_uid',required=True,kind=str);name=ModelField(name='name',required=True,kind=str);value=ModelField(name='path',required=True,kind=str)
class UserPropertyModel(BaseModel):
user_uid = ModelField(name="user_uid", required=True, kind=str)
name = ModelField(name="name", required=True, kind=str)
value = ModelField(name="path", required=True, kind=str)

View File

@ -1,4 +1,5 @@
import functools import functools
from snek.service.channel import ChannelService from snek.service.channel import ChannelService
from snek.service.channel_member import ChannelMemberService from snek.service.channel_member import ChannelMemberService
from snek.service.channel_message import ChannelMessageService from snek.service.channel_message import ChannelMessageService
@ -12,6 +13,27 @@ from snek.service.user_property import UserPropertyService
from snek.service.util import UtilService from snek.service.util import UtilService
from snek.service.repository import RepositoryService from snek.service.repository import RepositoryService
from snek.system.object import Object from snek.system.object import Object
@functools.cache @functools.cache
def get_services(app):A=app;return Object(**{'user':UserService(app=A),'channel_member':ChannelMemberService(app=A),'channel':ChannelService(app=A),'channel_message':ChannelMessageService(app=A),'chat':ChatService(app=A),'socket':SocketService(app=A),'notification':NotificationService(app=A),'util':UtilService(app=A),'drive':DriveService(app=A),'drive_item':DriveItemService(app=A),'user_property':UserPropertyService(app=A),'repository':RepositoryService(app=A)}) def get_services(app):
def get_service(name,app=None):return get_services(app=app)[name] return Object(
**{
"user": UserService(app=app),
"channel_member": ChannelMemberService(app=app),
"channel": ChannelService(app=app),
"channel_message": ChannelMessageService(app=app),
"chat": ChatService(app=app),
"socket": SocketService(app=app),
"notification": NotificationService(app=app),
"util": UtilService(app=app),
"drive": DriveService(app=app),
"drive_item": DriveItemService(app=app),
"user_property": UserPropertyService(app=app),
"repository": RepositoryService(app=app),
}
)
def get_service(name, app=None):
return get_services(app=app)[name]

View File

@ -1,49 +1,108 @@
_F='channel_uid'
_E='public'
_D=True
_C='uid'
_B=None
_A=False
from datetime import datetime from datetime import datetime
from snek.system.model import now from snek.system.model import now
from snek.system.service import BaseService from snek.system.service import BaseService
class ChannelService(BaseService): class ChannelService(BaseService):
mapper_name='channel' mapper_name = "channel"
async def get(E,uid=_B,**A):
D='name';C=uid async def get(self, uid=None, **kwargs):
if C: if uid:
A[_C]=C;B=await super().get(**A) kwargs["uid"] = uid
if B:return B result = await super().get(**kwargs)
del A[_C];A[D]=C;B=await super().get(**A) if result:
if B:return B return result
A[D]='#'+C;B=await super().get(**A) del kwargs["uid"]
if B:return B kwargs["name"] = uid
return result = await super().get(**kwargs)
return await super().get(**A) if result:
async def create(C,label,created_by_uid,description=_B,tag=_B,is_private=_A,is_listed=_D): return result
E=is_listed;D=tag;B=label kwargs["name"] = "#" + uid
if B[0]!='#'and E:B=f"#{B}" result = await super().get(**kwargs)
F=await C.count(deleted_at=_B) if result:
if not D and not F:D=_E return result
A=await C.new();A['label']=B;A['description']=description;A['tag']=D;A['created_by_uid']=created_by_uid;A['is_private']=is_private;A['is_listed']=E return None
if await C.save(A):return A return await super().get(**kwargs)
raise Exception(f"Failed to create channel: {A.errors}.")
async def get_dm(A,user1,user2): async def create(
C=user2;B=user1;D=await A.services.channel_member.get_dm(B,C) self,
if D:return await A.get(uid=D[_F]) label,
E=await A.create('DM',B,tag='dm');await A.services.channel_member.create_dm(E[_C],B,C);return E created_by_uid,
async def get_users(A,channel_uid): description=None,
async for C in A.services.channel_member.find(channel_uid=channel_uid,is_banned=_A,is_muted=_A,deleted_at=_B): tag=None,
B=await A.services.user.get(uid=C['user_uid']) is_private=False,
if B:yield B is_listed=True,
async def get_online_users(C,channel_uid): ):
B='last_ping' if label[0] != "#" and is_listed:
async for A in C.get_users(channel_uid): label = f"#{label}"
if not A[B]:continue count = await self.count(deleted_at=None)
if(datetime.fromisoformat(now())-datetime.fromisoformat(A[B])).total_seconds()<20:yield A if not tag and not count:
async def get_for_user(A,user_uid): tag = "public"
async for B in A.services.channel_member.find(user_uid=user_uid,is_banned=_A,deleted_at=_B):C=await A.get(uid=B[_F]);yield C model = await self.new()
async def ensure_public_channel(B,created_by_uid): model["label"] = label
C=created_by_uid;A=await B.get(is_listed=_D,tag=_E);D=_A model["description"] = description
if not A:D=_D;A=await B.create(_E,created_by_uid=C,is_listed=_D,tag=_E) model["tag"] = tag
await B.app.services.channel_member.create(A[_C],C,is_moderator=D,is_read_only=_A,is_muted=_A,is_banned=_A);return A model["created_by_uid"] = created_by_uid
model["is_private"] = is_private
model["is_listed"] = is_listed
if await self.save(model):
return model
raise Exception(f"Failed to create channel: {model.errors}.")
async def get_dm(self, user1, user2):
channel_member = await self.services.channel_member.get_dm(user1, user2)
if channel_member:
return await self.get(uid=channel_member["channel_uid"])
channel = await self.create("DM", user1, tag="dm")
await self.services.channel_member.create_dm(channel["uid"], user1, user2)
return channel
async def get_users(self, channel_uid):
async for channel_member in self.services.channel_member.find(
channel_uid=channel_uid,
is_banned=False,
is_muted=False,
deleted_at=None,
):
user = await self.services.user.get(uid=channel_member["user_uid"])
if user:
yield user
async def get_online_users(self, channel_uid):
async for user in self.get_users(channel_uid):
if not user["last_ping"]:
continue
if (
datetime.fromisoformat(now())
- datetime.fromisoformat(user["last_ping"])
).total_seconds() < 20:
yield user
async def get_for_user(self, user_uid):
async for channel_member in self.services.channel_member.find(
user_uid=user_uid,
is_banned=False,
deleted_at=None,
):
channel = await self.get(uid=channel_member["channel_uid"])
yield channel
async def ensure_public_channel(self, created_by_uid):
model = await self.get(is_listed=True, tag="public")
is_moderator = False
if not model:
is_moderator = True
model = await self.create(
"public", created_by_uid=created_by_uid, is_listed=True, tag="public"
)
await self.app.services.channel_member.create(
model["uid"],
created_by_uid,
is_moderator=is_moderator,
is_read_only=False,
is_muted=False,
is_banned=False,
)
return model

View File

@ -1,28 +1,74 @@
_C='user_uid'
_B='channel_uid'
_A=False
from snek.system.service import BaseService from snek.system.service import BaseService
class ChannelMemberService(BaseService): class ChannelMemberService(BaseService):
mapper_name='channel_member'
async def mark_as_read(A,channel_uid,user_uid):B=await A.get(channel_uid=channel_uid,user_uid=user_uid);B['new_count']=0;return await A.save(B) mapper_name = "channel_member"
async def get_user_uids(A,channel_uid):
async for B in A.mapper.query('SELECT user_uid FROM channel_member WHERE channel_uid=:channel_uid',{_B:channel_uid}):yield B[_C] async def mark_as_read(self, channel_uid, user_uid):
async def create(B,channel_uid,user_uid,is_moderator=_A,is_read_only=_A,is_muted=_A,is_banned=_A): channel_member = await self.get(channel_uid=channel_uid, user_uid=user_uid)
D='label';E='is_banned';F=user_uid;C=channel_uid;A=await B.get(channel_uid=C,user_uid=F) channel_member["new_count"] = 0
if A: return await self.save(channel_member)
if A[E]:return _A
return A async def get_user_uids(self, channel_uid):
A=await B.new();G=await B.services.channel.get(uid=C);A[D]=G[D];A[_B]=C;A[_C]=F;A['is_moderator']=is_moderator;A['is_read_only']=is_read_only;A['is_muted']=is_muted;A[E]=is_banned async for model in self.mapper.query(
if await B.save(A):return A "SELECT user_uid FROM channel_member WHERE channel_uid=:channel_uid",
raise Exception(f"Failed to create channel member: {A.errors}.") {"channel_uid": channel_uid},
async def get_dm(D,from_user,to_user): ):
E='to_user';F='from_user';A=to_user;B=from_user yield model["user_uid"]
async for C in D.query("SELECT channel_member.* FROM channel_member INNER JOIN channel ON (channel.uid = channel_member.channel_uid and channel.tag = 'dm') INNER JOIN channel_member AS channel_member2 ON(channel_member2.channel_uid = channel.uid AND channel_member2.user_uid = :to_user) WHERE channel_member.user_uid=:from_user ",{F:B,E:A}):return C
if not B==A:return async def create(
async for C in D.query("SELECT channel_member.* FROM channel_member INNER JOIN channel ON (channel.uid = channel_member.channel_uid and channel.tag = 'dm') LEFT JOIN channel_member AS channel_member2 ON(channel_member2.channel_uid = NULL AND channel_member2.user_uid = NULL) WHERE channel_member.user_uid=:from_user ",{F:B,E:A}):return C self,
async def get_other_dm_user(A,channel_uid,user_uid): channel_uid,
B='uid';C=channel_uid;D=await A.get(channel_uid=C,user_uid=user_uid);F=await A.services.channel.get(uid=D[_B]) user_uid,
if F['tag']!='dm':return is_moderator=False,
async for E in A.services.channel_member.find(channel_uid=C): is_read_only=False,
if E[B]!=D[B]:return await A.services.user.get(uid=E[_C]) is_muted=False,
async def create_dm(A,channel_uid,from_user_uid,to_user_uid):B=channel_uid;C=await A.create(B,from_user_uid);await A.create(B,to_user_uid);return C is_banned=False,
):
model = await self.get(channel_uid=channel_uid, user_uid=user_uid)
if model:
if model["is_banned"]:
return False
return model
model = await self.new()
channel = await self.services.channel.get(uid=channel_uid)
model["label"] = channel["label"]
model["channel_uid"] = channel_uid
model["user_uid"] = user_uid
model["is_moderator"] = is_moderator
model["is_read_only"] = is_read_only
model["is_muted"] = is_muted
model["is_banned"] = is_banned
if await self.save(model):
return model
raise Exception(f"Failed to create channel member: {model.errors}.")
async def get_dm(self, from_user, to_user):
async for model in self.query(
"SELECT channel_member.* FROM channel_member INNER JOIN channel ON (channel.uid = channel_member.channel_uid and channel.tag = 'dm') INNER JOIN channel_member AS channel_member2 ON(channel_member2.channel_uid = channel.uid AND channel_member2.user_uid = :to_user) WHERE channel_member.user_uid=:from_user ",
{"from_user": from_user, "to_user": to_user},
):
return model
if not from_user == to_user:
return None
async for model in self.query(
"SELECT channel_member.* FROM channel_member INNER JOIN channel ON (channel.uid = channel_member.channel_uid and channel.tag = 'dm') LEFT JOIN channel_member AS channel_member2 ON(channel_member2.channel_uid = NULL AND channel_member2.user_uid = NULL) WHERE channel_member.user_uid=:from_user ",
{"from_user": from_user, "to_user": to_user},
):
return model
async def get_other_dm_user(self, channel_uid, user_uid):
channel_member = await self.get(channel_uid=channel_uid, user_uid=user_uid)
channel = await self.services.channel.get(uid=channel_member["channel_uid"])
if channel["tag"] != "dm":
return None
async for model in self.services.channel_member.find(channel_uid=channel_uid):
if model["uid"] != channel_member["uid"]:
return await self.services.user.get(uid=model["user_uid"])
async def create_dm(self, channel_uid, from_user_uid, to_user_uid):
result = await self.create(channel_uid, from_user_uid)
await self.create(channel_uid, to_user_uid)
return result

View File

@ -1,33 +1,93 @@
_I='user_nick'
_H='created_at'
_G='html'
_F='uid'
_E='message'
_D='color'
_C='username'
_B='user_uid'
_A='channel_uid'
from snek.system.service import BaseService from snek.system.service import BaseService
class ChannelMessageService(BaseService): class ChannelMessageService(BaseService):
mapper_name='channel_message' mapper_name = "channel_message"
async def create(B,channel_uid,user_uid,message):
E=user_uid;A=await B.new();A[_A]=channel_uid;A[_B]=E;A[_E]=message;D={};F=A.record;D.update(F);C=await B.app.services.user.get(uid=E);D.update({_B:C[_F],_C:C[_C],_I:C['nick'],_D:C[_D]}) async def create(self, channel_uid, user_uid, message):
try:G=B.app.jinja2_env.get_template('message.html');A[_G]=G.render(**D) model = await self.new()
except Exception as H:print(H,flush=True)
if await B.save(A):return A model["channel_uid"] = channel_uid
raise Exception(f"Failed to create channel message: {A.errors}.") model["user_uid"] = user_uid
async def to_extended_dict(C,message): model["message"] = message
A=message;B=await C.services.user.get(uid=A[_B])
if not B:return{} context = {}
return{_F:A[_F],_D:B[_D],_B:A[_B],_A:A[_A],_I:B['nick'],_E:A[_E],_H:A[_H],_G:A[_G],_C:B[_C]}
async def offset(D,channel_uid,page=0,timestamp=None,page_size=30): record = model.record
J='timestamp';E='offset';F='page_size';G=timestamp;H=channel_uid;C=page_size;A=[];I=page*C context.update(record)
try: user = await self.app.services.user.get(uid=user_uid)
if G: context.update(
async for B in D.query('SELECT * FROM channel_message WHERE channel_uid=:channel_uid AND created_at < :timestamp ORDER BY created_at DESC LIMIT :page_size OFFSET :offset',{_A:H,F:C,E:I,J:G}):A.append(B) {
elif page>0: "user_uid": user["uid"],
async for B in D.query('SELECT * FROM channel_message WHERE channel_uid=:channel_uid WHERE created_at < :timestamp ORDER BY created_at DESC LIMIT :page_size',{_A:H,F:C,E:I,J:G}):A.append(B) "username": user["username"],
else: "user_nick": user["nick"],
async for B in D.query('SELECT * FROM channel_message WHERE channel_uid=:channel_uid ORDER BY created_at DESC LIMIT :page_size OFFSET :offset',{_A:H,F:C,E:I}):A.append(B) "color": user["color"],
except:pass }
A.sort(key=lambda x:x[_H]);return A )
try:
template = self.app.jinja2_env.get_template("message.html")
model["html"] = template.render(**context)
except Exception as ex:
print(ex, flush=True)
if await self.save(model):
return model
raise Exception(f"Failed to create channel message: {model.errors}.")
async def to_extended_dict(self, message):
user = await self.services.user.get(uid=message["user_uid"])
if not user:
return {}
return {
"uid": message["uid"],
"color": user["color"],
"user_uid": message["user_uid"],
"channel_uid": message["channel_uid"],
"user_nick": user["nick"],
"message": message["message"],
"created_at": message["created_at"],
"html": message["html"],
"username": user["username"],
}
async def offset(self, channel_uid, page=0, timestamp=None, page_size=30):
results = []
offset = page * page_size
try:
if timestamp:
async for model in self.query(
"SELECT * FROM channel_message WHERE channel_uid=:channel_uid AND created_at < :timestamp ORDER BY created_at DESC LIMIT :page_size OFFSET :offset",
{
"channel_uid": channel_uid,
"page_size": page_size,
"offset": offset,
"timestamp": timestamp,
},
):
results.append(model)
elif page > 0:
async for model in self.query(
"SELECT * FROM channel_message WHERE channel_uid=:channel_uid WHERE created_at < :timestamp ORDER BY created_at DESC LIMIT :page_size",
{
"channel_uid": channel_uid,
"page_size": page_size,
"offset": offset,
"timestamp": timestamp,
},
):
results.append(model)
else:
async for model in self.query(
"SELECT * FROM channel_message WHERE channel_uid=:channel_uid ORDER BY created_at DESC LIMIT :page_size OFFSET :offset",
{
"channel_uid": channel_uid,
"page_size": page_size,
"offset": offset,
},
):
results.append(model)
except:
pass
results.sort(key=lambda x: x["created_at"])
return results

View File

@ -1,7 +1,39 @@
from snek.system.model import now from snek.system.model import now
from snek.system.service import BaseService from snek.system.service import BaseService
class ChatService(BaseService): class ChatService(BaseService):
async def send(A,user_uid,channel_uid,message):
H='username';I='created_at';J='color';K='html';L='message';D='uid';E=user_uid;C=channel_uid;F=await A.services.channel.get(uid=C) async def send(self, user_uid, channel_uid, message):
if not F:raise Exception('Channel not found.') channel = await self.services.channel.get(uid=channel_uid)
B=await A.services.channel_message.create(C,E,message);M=B[D];G=await A.services.user.get(uid=E);F['last_message_on']=now();await A.services.channel.save(F);await A.services.socket.broadcast(C,{L:B[L],K:B[K],'user_uid':E,J:G[J],'channel_uid':C,I:B[I],'updated_at':None,H:G[H],D:B[D],'user_nick':G['nick']});await A.app.create_task(A.services.notification.create_channel_message(M));return True if not channel:
raise Exception("Channel not found.")
channel_message = await self.services.channel_message.create(
channel_uid, user_uid, message
)
channel_message_uid = channel_message["uid"]
user = await self.services.user.get(uid=user_uid)
channel["last_message_on"] = now()
await self.services.channel.save(channel)
await self.services.socket.broadcast(
channel_uid,
{
"message": channel_message["message"],
"html": channel_message["html"],
"user_uid": user_uid,
"color": user["color"],
"channel_uid": channel_uid,
"created_at": channel_message["created_at"],
"updated_at": None,
"username": user["username"],
"uid": channel_message["uid"],
"user_nick": user["nick"],
},
)
await self.app.create_task(
self.services.notification.create_channel_message(channel_message_uid)
)
return True

View File

@ -1,41 +1,153 @@
_H='Documents'
_G='Archives'
_F='Videos'
_E='Pictures'
_D='uid'
_C='user_uid'
_B='My Drive'
_A='name'
from snek.system.service import BaseService from snek.system.service import BaseService
class DriveService(BaseService): class DriveService(BaseService):
mapper_name='drive';EXTENSIONS_PICTURES=['jpg','jpeg','png','gif','svg','webp','tiff'];EXTENSIONS_VIDEOS=['mp4','m4v','mov','wmv','webm','mkv','mpg','mpeg','avi','ogv','ogg','flv','3gp','3g2'];EXTENSIONS_ARCHIVES=['zip','rar','7z','tar','tar.gz','tar.xz','tar.bz2','tar.lzma','tar.lz'];EXTENSIONS_AUDIO=['mp3','wav','ogg','flac','m4a','wma','aac','opus','aiff','au','mid','midi'];EXTENSIONS_DOCS=['pdf','doc','docx','xls','xlsx','ppt','pptx','txt','md','json','csv','xml','html','css','js','py','sql','rs','toml','yml','yaml','ini','conf','config','log','csv','tsv','java','cs','csproj','scss','less','sass','json','lock','lock.json','jsonl']
async def get_drive_name_by_extension(B,extension): mapper_name = "drive"
A=extension
if A.startswith('.'):A=A[1:] EXTENSIONS_PICTURES = ["jpg", "jpeg", "png", "gif", "svg", "webp", "tiff"]
if A in B.EXTENSIONS_PICTURES:return _E EXTENSIONS_VIDEOS = [
if A in B.EXTENSIONS_VIDEOS:return _F "mp4",
if A in B.EXTENSIONS_ARCHIVES:return _G "m4v",
if A in B.EXTENSIONS_AUDIO:return'Audio' "mov",
if A in B.EXTENSIONS_DOCS:return _H "wmv",
return _B "webm",
async def get_drive_by_extension(A,user_uid,extension):B=await A.get_drive_name_by_extension(extension);return await A.get_or_create(user_uid=user_uid,name=B) "mkv",
async def get_by_user(C,user_uid,name=None): "mpg",
B=name;D={_C:user_uid} "mpeg",
async for A in C.find(**D): "avi",
if not B:yield A "ogv",
elif A[_A]==B:yield A "ogg",
elif not A[_A]and B==_B:A[_A]=_B;await C.save(A);yield A "flv",
async def get_or_create(B,user_uid,name=None,extensions=None): "3gp",
D=user_uid;C=name;E={_C:D} "3g2",
if C:E[_A]=C ]
async for A in B.get_by_user(**E):return A EXTENSIONS_ARCHIVES = [
A=await B.new();A[_C]=D;A[_A]=C;await B.save(A);return A "zip",
async def prepare_default_drives(B): "rar",
C='drive_uid' "7z",
async for A in B.services.drive_item.find(): "tar",
E=A.extension;D=await B.get_drive_by_extension(A[_C],E) "tar.gz",
if not A[C]==D[_D]:A[C]=D[_D];await B.services.drive_item.save(A) "tar.xz",
async def prepare_default_drives_for_user(A,user_uid):B=user_uid;await A.get_or_create(user_uid=B,name=_B);await A.get_or_create(user_uid=B,name='Shared Drive');await A.get_or_create(user_uid=B,name=_E);await A.get_or_create(user_uid=B,name=_F);await A.get_or_create(user_uid=B,name=_G);await A.get_or_create(user_uid=B,name=_H) "tar.bz2",
async def prepare_all(A): "tar.lzma",
await A.prepare_default_drives() "tar.lz",
async for B in A.services.user.find():await A.prepare_default_drives_for_user(B[_D]) ]
EXTENSIONS_AUDIO = [
"mp3",
"wav",
"ogg",
"flac",
"m4a",
"wma",
"aac",
"opus",
"aiff",
"au",
"mid",
"midi",
]
EXTENSIONS_DOCS = [
"pdf",
"doc",
"docx",
"xls",
"xlsx",
"ppt",
"pptx",
"txt",
"md",
"json",
"csv",
"xml",
"html",
"css",
"js",
"py",
"sql",
"rs",
"toml",
"yml",
"yaml",
"ini",
"conf",
"config",
"log",
"csv",
"tsv",
"java",
"cs",
"csproj",
"scss",
"less",
"sass",
"json",
"lock",
"lock.json",
"jsonl",
]
async def get_drive_name_by_extension(self, extension):
if extension.startswith("."):
extension = extension[1:]
if extension in self.EXTENSIONS_PICTURES:
return "Pictures"
if extension in self.EXTENSIONS_VIDEOS:
return "Videos"
if extension in self.EXTENSIONS_ARCHIVES:
return "Archives"
if extension in self.EXTENSIONS_AUDIO:
return "Audio"
if extension in self.EXTENSIONS_DOCS:
return "Documents"
return "My Drive"
async def get_drive_by_extension(self, user_uid, extension):
name = await self.get_drive_name_by_extension(extension)
return await self.get_or_create(user_uid=user_uid, name=name)
async def get_by_user(self, user_uid, name=None):
kwargs = {"user_uid": user_uid}
async for model in self.find(**kwargs):
if not name:
yield model
elif model["name"] == name:
yield model
elif not model["name"] and name == "My Drive":
model["name"] = "My Drive"
await self.save(model)
yield model
async def get_or_create(self, user_uid, name=None, extensions=None):
kwargs = {"user_uid": user_uid}
if name:
kwargs["name"] = name
async for model in self.get_by_user(**kwargs):
return model
model = await self.new()
model["user_uid"] = user_uid
model["name"] = name
await self.save(model)
return model
async def prepare_default_drives(self):
async for drive_item in self.services.drive_item.find():
extension = drive_item.extension
drive = await self.get_drive_by_extension(drive_item["user_uid"], extension)
if not drive_item["drive_uid"] == drive["uid"]:
drive_item["drive_uid"] = drive["uid"]
await self.services.drive_item.save(drive_item)
async def prepare_default_drives_for_user(self, user_uid):
await self.get_or_create(user_uid=user_uid, name="My Drive")
await self.get_or_create(user_uid=user_uid, name="Shared Drive")
await self.get_or_create(user_uid=user_uid, name="Pictures")
await self.get_or_create(user_uid=user_uid, name="Videos")
await self.get_or_create(user_uid=user_uid, name="Archives")
await self.get_or_create(user_uid=user_uid, name="Documents")
async def prepare_all(self):
await self.prepare_default_drives()
async for user in self.services.user.find():
await self.prepare_default_drives_for_user(user["uid"])

View File

@ -1,7 +1,19 @@
from snek.system.service import BaseService from snek.system.service import BaseService
class DriveItemService(BaseService): class DriveItemService(BaseService):
mapper_name='drive_item'
async def create(B,drive_uid,name,path,type_,size): mapper_name = "drive_item"
A=await B.new();A['drive_uid']=drive_uid;A['name']=name;A['path']=str(path);A['extension']=str(name).split('.')[-1];A['file_type']=type_;A['file_size']=size
if await B.save(A):return A async def create(self, drive_uid, name, path, type_, size):
C=await A.errors;raise Exception(f"Failed to create drive item: {C}.") model = await self.new()
model["drive_uid"] = drive_uid
model["name"] = name
model["path"] = str(path)
model["extension"] = str(name).split(".")[-1]
model["file_type"] = type_
model["file_size"] = size
if await self.save(model):
return model
errors = await model.errors
raise Exception(f"Failed to create drive item: {errors}.")

View File

@ -1,28 +1,65 @@
_E='message'
_D='object_type'
_C='object_uid'
_B=False
_A='user_uid'
from snek.system.model import now from snek.system.model import now
from snek.system.service import BaseService from snek.system.service import BaseService
class NotificationService(BaseService): class NotificationService(BaseService):
mapper_name='notification' mapper_name = "notification"
async def mark_as_read(B,user_uid,channel_message_uid):
A=await B.get(user_uid,object_uid=channel_message_uid) async def mark_as_read(self, user_uid, channel_message_uid):
if not A:return _B model = await self.get(user_uid, object_uid=channel_message_uid)
A['read_at']=now();await B.save(A);return True if not model:
async def get_unread_stats(A,user_uid):await A.query('SELECT object_type, COUNT(*) as count FROM notification WHERE user_uid=:user_uid AND read_at IS NULL GROUP BY object_type',{_A:user_uid}) return False
async def create(B,object_uid,object_type,user_uid,message): model["read_at"] = now()
A=await B.new();A[_C]=object_uid;A[_D]=object_type;A[_A]=user_uid;A[_E]=message await self.save(model)
if await B.save(A):return A return True
raise Exception(f"Failed to create notification: {A.errors}.")
async def create_channel_message(A,channel_message_uid): async def get_unread_stats(self, user_uid):
E=channel_message_uid;D='new_count';F=await A.services.channel_message.get(uid=E);G=await A.services.user.get(uid=F[_A]);A.app.db.begin() await self.query(
async for B in A.services.channel_member.find(channel_uid=F['channel_uid'],is_banned=_B,is_muted=_B,deleted_at=None): "SELECT object_type, COUNT(*) as count FROM notification WHERE user_uid=:user_uid AND read_at IS NULL GROUP BY object_type",
if not B[D]:B[D]=0 {"user_uid": user_uid},
B[D]+=1;H=await A.services.user.get(uid=B[_A]) )
if not H:continue
await A.services.channel_member.save(B);C=await A.new();C[_C]=E;C[_D]='channel_message';C[_A]=B[_A];C[_E]=f"New message from {G["nick"]} in {B["label"]}." async def create(self, object_uid, object_type, user_uid, message):
try:await A.save(C) model = await self.new()
except Exception:raise Exception(f"Failed to create notification: {C.errors}.") model["object_uid"] = object_uid
A.app.db.commit() model["object_type"] = object_type
model["user_uid"] = user_uid
model["message"] = message
if await self.save(model):
return model
raise Exception(f"Failed to create notification: {model.errors}.")
async def create_channel_message(self, channel_message_uid):
channel_message = await self.services.channel_message.get(
uid=channel_message_uid
)
user = await self.services.user.get(uid=channel_message["user_uid"])
self.app.db.begin()
async for channel_member in self.services.channel_member.find(
channel_uid=channel_message["channel_uid"],
is_banned=False,
is_muted=False,
deleted_at=None,
):
if not channel_member["new_count"]:
channel_member["new_count"] = 0
channel_member["new_count"] += 1
usr = await self.services.user.get(uid=channel_member["user_uid"])
if not usr:
continue
await self.services.channel_member.save(channel_member)
model = await self.new()
model["object_uid"] = channel_message_uid
model["object_type"] = "channel_message"
model["user_uid"] = channel_member["user_uid"]
model["message"] = (
f"New message from {user['nick']} in {channel_member['label']}."
)
try:
await self.save(model)
except Exception:
raise Exception(f"Failed to create notification: {model.errors}.")
self.app.db.commit()

View File

@ -1,23 +1,52 @@
_B='user_uid'
_A=False
from snek.system.service import BaseService from snek.system.service import BaseService
import asyncio,shutil import asyncio
import shutil
class RepositoryService(BaseService): class RepositoryService(BaseService):
mapper_name='repository' mapper_name = "repository"
async def delete(B,user_uid,name):
A=user_uid;C=asyncio.get_event_loop();D=(await B.services.user.get_repository_path(A)).joinpath(name) async def delete(self, user_uid, name):
try:await C.run_in_executor(None,shutil.rmtree,D) loop = asyncio.get_event_loop()
except Exception as E:print(E) repository_path = (await self.services.user.get_repository_path(user_uid)).joinpath(name)
await super().delete(user_uid=A,name=name) try:
async def exists(B,user_uid,name,**A):A[_B]=user_uid;A['name']=name;return await super().exists(**A) await loop.run_in_executor(None, shutil.rmtree, repository_path)
async def init(D,user_uid,name): except Exception as ex:
B='.git';A=await D.services.user.get_repository_path(user_uid) print(ex)
if not A.exists():A.mkdir(parents=True)
A=A.joinpath(name);A=str(A) await super().delete(user_uid=user_uid, name=name)
if not A.endswith(B):A+=B
E=['git','init','--bare',A];C=await asyncio.subprocess.create_subprocess_exec(*E,stdout=asyncio.subprocess.PIPE,stderr=asyncio.subprocess.PIPE);F,G=await C.communicate();return C.returncode==0
async def create(A,user_uid,name,is_private=_A): async def exists(self, user_uid, name, **kwargs):
C=name;D=user_uid kwargs["user_uid"] = user_uid
if await A.exists(user_uid=D,name=C):return _A kwargs["name"] = name
if not await A.init(user_uid=D,name=C):return _A return await super().exists(**kwargs)
B=await A.new();B[_B]=D;B['name']=C;B['is_private']=is_private;return await A.save(B)
async def init(self, user_uid, name):
repository_path = await self.services.user.get_repository_path(user_uid)
if not repository_path.exists():
repository_path.mkdir(parents=True)
repository_path = repository_path.joinpath(name)
repository_path = str(repository_path)
if not repository_path.endswith(".git"):
repository_path += ".git"
command = ['git', 'init', '--bare', repository_path]
process = await asyncio.subprocess.create_subprocess_exec(
*command,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await process.communicate()
return process.returncode == 0
async def create(self, user_uid, name,is_private=False):
if await self.exists(user_uid=user_uid, name=name):
return False
if not await self.init(user_uid=user_uid, name=name):
return False
model = await self.new()
model["user_uid"] = user_uid
model["name"] = name
model["is_private"] = is_private
return await self.save(model)

View File

@ -1,36 +1,71 @@
_B=False
_A=True
from snek.model.user import UserModel from snek.model.user import UserModel
from snek.system.service import BaseService from snek.system.service import BaseService
class SocketService(BaseService): class SocketService(BaseService):
class Socket:
def __init__(A,ws,user):A.ws=ws;A.is_connected=_A;A.user=user class Socket:
async def send_json(A,data): def __init__(self, ws, user: UserModel):
if not A.is_connected:return _B self.ws = ws
try:await A.ws.send_json(data) self.is_connected = True
except Exception:A.is_connected=_B self.user = user
return A.is_connected
async def close(A): async def send_json(self, data):
if not A.is_connected:return _A if not self.is_connected:
await A.ws.close();A.is_connected=_B;return _A return False
def __init__(A,app):super().__init__(app);A.sockets=set();A.users={};A.subscriptions={} try:
async def add(A,ws,user_uid): await self.ws.send_json(data)
B=user_uid;C=A.Socket(ws,await A.app.services.user.get(uid=B));A.sockets.add(C) except Exception:
if not A.users.get(B):A.users[B]=set() self.is_connected = False
A.users[B].add(C) return self.is_connected
async def subscribe(A,ws,channel_uid,user_uid):
B=channel_uid async def close(self):
if B not in A.subscriptions:A.subscriptions[B]=set() if not self.is_connected:
C=A.Socket(ws,await A.app.services.user.get(uid=user_uid));A.subscriptions[B].add(C) return True
async def send_to_user(B,user_uid,message):
A=0 await self.ws.close()
for C in B.users.get(user_uid,[]): self.is_connected = False
if await C.send_json(message):A+=1
return A return True
async def broadcast(A,channel_uid,message):
try: def __init__(self, app):
async for B in A.services.channel_member.get_user_uids(channel_uid):print(B,flush=_A);await A.send_to_user(B,message) super().__init__(app)
except Exception as C:print(C,flush=_A) self.sockets = set()
return _A self.users = {}
async def delete(A,ws): self.subscriptions = {}
for B in[A for A in A.sockets if A.ws==ws]:await B.close();A.sockets.remove(B)
async def add(self, ws, user_uid):
s = self.Socket(ws, await self.app.services.user.get(uid=user_uid))
self.sockets.add(s)
if not self.users.get(user_uid):
self.users[user_uid] = set()
self.users[user_uid].add(s)
async def subscribe(self, ws, channel_uid, user_uid):
if channel_uid not in self.subscriptions:
self.subscriptions[channel_uid] = set()
s = self.Socket(ws, await self.app.services.user.get(uid=user_uid))
self.subscriptions[channel_uid].add(s)
async def send_to_user(self, user_uid, message):
count = 0
for s in self.users.get(user_uid, []):
if await s.send_json(message):
count += 1
return count
async def broadcast(self, channel_uid, message):
try:
async for user_uid in self.services.channel_member.get_user_uids(
channel_uid
):
print(user_uid, flush=True)
await self.send_to_user(user_uid, message)
except Exception as ex:
print(ex, flush=True)
return True
async def delete(self, ws):
for s in [sock for sock in self.sockets if sock.ws == ws]:
await s.close()
self.sockets.remove(s)

View File

@ -1,53 +1,91 @@
_B='color'
_A=True
import pathlib import pathlib
from snek.system import security from snek.system import security
from snek.system.service import BaseService from snek.system.service import BaseService
class UserService(BaseService): class UserService(BaseService):
mapper_name='user' mapper_name = "user"
async def get_by_username(A,username):return await A.get(username=username)
async def search(C,query,**D): async def get_by_username(self, username):
A=query;A=A.strip().lower() return await self.get(username=username)
if not A:return[]
B=[] async def search(self, query, **kwargs):
async for E in C.find(username={'ilike':'%'+A+'%'},**D):B.append(E) query = query.strip().lower()
return B if not query:
async def validate_login(C,username,password): return []
A=False;B=await C.get(username=username) results = []
if not B:return A async for result in self.find(username={"ilike": "%" + query + "%"}, **kwargs):
if not await security.verify(password,B['password']):return A results.append(result)
return _A return results
async def save(B,user):
A=user async def validate_login(self, username, password):
if not A[_B]:A[_B]=await B.services.util.random_light_hex_color() model = await self.get(username=username)
return await super().save(A) if not model:
async def authenticate(B,username,password): return False
C=password;A=username;print(A,C,flush=_A);D=await B.validate_login(A,C);print(D,flush=_A) if not await security.verify(password, model["password"]):
if not D:return return False
E=await B.get(username=A,deleted_at=None);return E return True
def get_admin_uids(A):return A.mapper.get_admin_uids()
async def get_repository_path(A,user_uid):return pathlib.Path(f"./drive/repositories/{user_uid}") async def save(self, user):
async def get_static_path(B,user_uid): if not user["color"]:
A=pathlib.Path(f"./drive/{user_uid}/snek/static") user["color"] = await self.services.util.random_light_hex_color()
if not A.exists():return return await super().save(user)
return A
async def get_template_path(B,user_uid): async def authenticate(self, username, password):
A=pathlib.Path(f"./drive/{user_uid}/snek/templates") print(username, password, flush=True)
if not A.exists():return success = await self.validate_login(username, password)
return A print(success, flush=True)
async def get_home_folder(B,user_uid): if not success:
A=pathlib.Path(f"./drive/{user_uid}") return None
if not A.exists():
try:A.mkdir(parents=_A,exist_ok=_A) model = await self.get(username=username, deleted_at=None)
except:pass return model
return A
async def register(B,email,username,password): def get_admin_uids(self):
C=username return self.mapper.get_admin_uids()
if await B.exists(username=C):raise Exception('User already exists.')
A=await B.new();A['nick']=C;A[_B]=await B.services.util.random_light_hex_color();A.email.value=email;A.username.value=C;A.password.value=await security.hash(password) async def get_repository_path(self, user_uid):
if await B.save(A): return pathlib.Path(f"./drive/repositories/{user_uid}")
if A:
D=await B.services.channel.ensure_public_channel(A['uid']) async def get_static_path(self, user_uid):
if not D:raise Exception('Failed to create public channel.') path = pathlib.Path(f"./drive/{user_uid}/snek/static")
return A if not path.exists():
raise Exception(f"Failed to create user: {A.errors}.") return None
return path
async def get_template_path(self, user_uid):
path = pathlib.Path(f"./drive/{user_uid}/snek/templates")
if not path.exists():
return None
return path
async def get_home_folder(self, user_uid):
folder = pathlib.Path(f"./drive/{user_uid}")
if not folder.exists():
try:
folder.mkdir(parents=True, exist_ok=True)
except:
pass
return folder
async def register(self, email, username, password):
if await self.exists(username=username):
raise Exception("User already exists.")
model = await self.new()
model["nick"] = username
model["color"] = await self.services.util.random_light_hex_color()
model.email.value = email
model.username.value = username
model.password.value = await security.hash(password)
if await self.save(model):
if model:
channel = await self.services.channel.ensure_public_channel(
model["uid"]
)
if not channel:
raise Exception("Failed to create public channel.")
return model
raise Exception(f"Failed to create user: {model.errors}.")

View File

@ -1,15 +1,35 @@
_A='user_property'
import json import json
from snek.system.service import BaseService from snek.system.service import BaseService
class UserPropertyService(BaseService): class UserPropertyService(BaseService):
mapper_name=_A mapper_name = "user_property"
async def set(C,user_uid,name,value):A='name';B='user_uid';C.mapper.db[_A].upsert({B:user_uid,A:name,'value':json.dumps(value,default=str)},[B,A])
async def get(B,user_uid,name): async def set(self, user_uid, name, value):
try:return json.loads((await super().get(user_uid=user_uid,name=name))['value']) self.mapper.db["user_property"].upsert(
except Exception as A:print(A);return {
async def search(C,query,**D): "user_uid": user_uid,
A=query;A=A.strip().lower() "name": name,
if not A:raise[] "value": json.dumps(value, default=str),
B=[] },
async for E in C.find(name={'ilike':'%'+A+'%'},**D):B.append(E) ["user_uid", "name"],
return B )
async def get(self, user_uid, name):
try:
return json.loads(
(await super().get(user_uid=user_uid, name=name))["value"]
)
except Exception as ex:
print(ex)
return None
async def search(self, query, **kwargs):
query = query.strip().lower()
if not query:
raise []
results = []
async for result in self.find(name={"ilike": "%" + query + "%"}, **kwargs):
results.append(result)
return results

View File

@ -1,4 +1,14 @@
import random import random
from snek.system.service import BaseService from snek.system.service import BaseService
class UtilService(BaseService): class UtilService(BaseService):
async def random_light_hex_color(D):A=random.randint(128,255);B=random.randint(128,255);C=random.randint(128,255);return f"#{A:02x}{B:02x}{C:02x}"
async def random_light_hex_color(self):
r = random.randint(128, 255)
g = random.randint(128, 255)
b = random.randint(128, 255)
return f"#{r:02x}{g:02x}{b:02x}"

View File

@ -1,207 +1,489 @@
_O='branches' import os
_N='message' import aiohttp
_M='author'
_L='Invalid JSON data'
_K='origin'
_J='Repository not found'
_I='main'
_H='repository'
_G='branch'
_F='.git'
_E=None
_D='user'
_C='repo_name'
_B='username'
_A='repository_path'
import os,aiohttp
from aiohttp import web from aiohttp import web
import git,shutil,json,tempfile,asyncio,logging,base64,pathlib import git
logging.basicConfig(level=logging.INFO,format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') import shutil
logger=logging.getLogger('git_server') import json
import tempfile
import asyncio
import logging
import base64
import pathlib
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger('git_server')
class GitApplication(web.Application): class GitApplication(web.Application):
def __init__(A,parent=_E):B='/branches/{repo_name}';A.parent=parent;super().__init__(client_max_size=5368709120);A.REPO_DIR='drive/repositories/3177f85e-dbb3-4406-993e-3d3748fea545';A.USERS={'x':'x','bob':'bobpass'};A.add_routes([web.post('/create/{repo_name}',A.create_repository),web.delete('/delete/{repo_name}',A.delete_repository),web.get('/clone/{repo_name}',A.clone_repository),web.post('/push/{repo_name}',A.push_repository),web.post('/pull/{repo_name}',A.pull_repository),web.get('/status/{repo_name}',A.status_repository),web.get('/list',A.list_repositories),web.get(B,A.list_branches),web.post(B,A.create_branch),web.get('/log/{repo_name}',A.commit_log),web.get('/file/{repo_name}/{file_path:.*}',A.file_content),web.get('/{path:.+}/info/refs',A.git_smart_http),web.post('/{path:.+}/git-upload-pack',A.git_smart_http),web.post('/{path:.+}/git-receive-pack',A.git_smart_http),web.get('/{repo_name}.git/info/refs',A.git_smart_http),web.post('/{repo_name}.git/git-upload-pack',A.git_smart_http),web.post('/{repo_name}.git/git-receive-pack',A.git_smart_http)]) def __init__(self, parent=None):
async def check_basic_auth(B,request): self.parent = parent
C='Basic ';A=request;D=A.headers.get('Authorization','') super().__init__(client_max_size=1024*1024*1024*5)
if not D.startswith(C):return _E,_E self.REPO_DIR = "drive/repositories/3177f85e-dbb3-4406-993e-3d3748fea545"
E=D.split(C)[1];F=base64.b64decode(E).decode();G,H=F.split(':',1);A[_D]=await B.parent.services.user.authenticate(username=G,password=H) self.USERS = {
if not A[_D]:return _E,_E 'x': 'x',
A[_A]=await B.parent.services.user.get_repository_path(A[_D]['uid']);return A[_D][_B],A[_A] 'bob': 'bobpass',
@staticmethod }
def require_auth(handler): self.add_routes([
async def A(self,request,*D,**E): web.post('/create/{repo_name}', self.create_repository),
A=request;B,C=await self.check_basic_auth(A) web.delete('/delete/{repo_name}', self.delete_repository),
if not B or not C:return web.Response(status=401,headers={'WWW-Authenticate':'Basic'},text='Authentication required') web.get('/clone/{repo_name}', self.clone_repository),
A[_B]=B;A[_A]=C;return await handler(self,A,*D,**E) web.post('/push/{repo_name}', self.push_repository),
return A web.post('/pull/{repo_name}', self.pull_repository),
def repo_path(A,repository_path,repo_name):return repository_path.joinpath(repo_name+_F) web.get('/status/{repo_name}', self.status_repository),
def check_repo_exists(A,repository_path,repo_name): web.get('/list', self.list_repositories),
B=A.repo_path(repository_path,repo_name) web.get('/branches/{repo_name}', self.list_branches),
if not os.path.exists(B):return web.Response(text=_J,status=404) web.post('/branches/{repo_name}', self.create_branch),
@require_auth web.get('/log/{repo_name}', self.commit_log),
async def create_repository(self,request): web.get('/file/{repo_name}/{file_path:.*}', self.file_content),
B=request;E=B[_B];A=B.match_info[_C];F=B[_A] web.get('/{path:.+}/info/refs', self.git_smart_http),
if not A or'/'in A or'..'in A:return web.Response(text='Invalid repository name',status=400) web.post('/{path:.+}/git-upload-pack', self.git_smart_http),
C=self.repo_path(F,A) web.post('/{path:.+}/git-receive-pack', self.git_smart_http),
if os.path.exists(C):return web.Response(text='Repository already exists',status=400) web.get('/{repo_name}.git/info/refs', self.git_smart_http),
try:git.Repo.init(C,bare=True);logger.info(f"Created repository: {A} for user {E}");return web.Response(text=f"Created repository {A}") web.post('/{repo_name}.git/git-upload-pack', self.git_smart_http),
except Exception as D:logger.error(f"Error creating repository {A}: {str(D)}");return web.Response(text=f"Error creating repository: {str(D)}",status=500) web.post('/{repo_name}.git/git-receive-pack', self.git_smart_http),
@require_auth ])
async def delete_repository(self,request):
B=request;F=B[_B];A=B.match_info[_C];C=B[_A];D=self.check_repo_exists(C,A)
if D:return D async def check_basic_auth(self, request):
try:shutil.rmtree(self.repo_path(C,A));logger.info(f"Deleted repository: {A} for user {F}");return web.Response(text=f"Deleted repository {A}") auth_header = request.headers.get("Authorization", "")
except Exception as E:logger.error(f"Error deleting repository {A}: {str(E)}");return web.Response(text=f"Error deleting repository: {str(E)}",status=500) if not auth_header.startswith("Basic "):
@require_auth return None,None
async def clone_repository(self,request): encoded_creds = auth_header.split("Basic ")[1]
A=request;H=A[_B];B=A.match_info[_C];E=A[_A];C=self.check_repo_exists(E,B) decoded_creds = base64.b64decode(encoded_creds).decode()
if C:return C username, password = decoded_creds.split(":", 1)
F=A.host;D=f"http://{F}/{B}.git";G={_H:B,'clone_command':f"git clone {D}",'clone_url':D};return web.json_response(G) request["user"] = await self.parent.services.user.authenticate(
@require_auth username=username, password=password
async def push_repository(self,request): )
B=request;L=B[_B];C=B.match_info[_C];E=B[_A];F=self.check_repo_exists(E,C) if not request["user"]:
if F:return F return None,None
try:D=await B.json() request["repository_path"] = await self.parent.services.user.get_repository_path(
except json.JSONDecodeError:return web.Response(text=_L,status=400) request["user"]["uid"]
M=D.get('commit_message','Update from server');G=D.get(_G,_I);H=D.get('changes',[]) )
if not H:return web.Response(text='No changes provided',status=400)
with tempfile.TemporaryDirectory()as I: return request["user"]['username'],request["repository_path"]
A=git.Repo.clone_from(self.repo_path(E,C),I)
for J in H:
K=os.path.join(I,J.get('file',''));N=J.get('content','');os.makedirs(os.path.dirname(K),exist_ok=True) @staticmethod
with open(K,'w')as O:O.write(N) def require_auth(handler):
A.git.add(A=True) async def wrapped(self, request, *args, **kwargs):
if not A.config_reader().has_section(_D):A.config_writer().set_value(_D,'name','Git Server').release();A.config_writer().set_value(_D,'email','git@server.local').release() username, repository_path = await self.check_basic_auth(request)
A.index.commit(M);P=A.remote(_K);P.push(refspec=f"{G}:{G}") if not username or not repository_path:
logger.info(f"Pushed to repository: {C} for user {L}");return web.Response(text=f"Successfully pushed changes to {C}") return web.Response(status=401, headers={'WWW-Authenticate': 'Basic'}, text='Authentication required')
@require_auth request['username'] = username
async def pull_repository(self,request): request['repository_path'] = repository_path
C=request;K=C[_B];A=C.match_info[_C];H=C[_A];I=self.check_repo_exists(H,A) return await handler(self, request, *args, **kwargs)
if I:return I return wrapped
try:E=await C.json()
except json.JSONDecodeError:E={} def repo_path(self, repository_path, repo_name):
B=E.get('remote_url');L=E.get(_G,_I) return repository_path.joinpath(repo_name + '.git')
if not B:return web.Response(text='Remote URL is required',status=400)
with tempfile.TemporaryDirectory()as M: def check_repo_exists(self, repository_path, repo_name):
try: repo_dir = self.repo_path(repository_path, repo_name)
D=git.Repo.clone_from(self.repo_path(H,A),M);F='pull_source' if not os.path.exists(repo_dir):
try:G=D.create_remote(F,B) return web.Response(text="Repository not found", status=404)
except git.GitCommandError:G=D.remote(F);G.set_url(B) return None
G.fetch();D.git.merge(f"{F}/{L}");N=D.remote(_K);N.push();logger.info(f"Pulled to repository {A} from {B} for user {K}");return web.Response(text=f"Successfully pulled changes from {B} to {A}")
except Exception as J:logger.error(f"Error pulling to {A}: {str(J)}");return web.Response(text=f"Error pulling changes: {str(J)}",status=500) @require_auth
@require_auth async def create_repository(self, request):
async def status_repository(self,request): username = request['username']
C=request;S=C[_B];B=C.match_info[_C];F=C[_A];G=self.check_repo_exists(F,B) repo_name = request.match_info['repo_name']
if G:return G repository_path = request['repository_path']
with tempfile.TemporaryDirectory()as D: if not repo_name or '/' in repo_name or '..' in repo_name:
try: return web.Response(text="Invalid repository name", status=400)
E=git.Repo.clone_from(self.repo_path(F,B),D);L=[A.name for A in E.branches];M=E.active_branch.name;H=[] repo_dir = self.repo_path(repository_path, repo_name)
for A in list(E.iter_commits(max_count=5)):H.append({'id':A.hexsha,_M:f"{A.author.name} <{A.author.email}>",'date':A.committed_datetime.isoformat(),_N:A.message}) if os.path.exists(repo_dir):
I=[] return web.Response(text="Repository already exists", status=400)
for(J,T,N)in os.walk(D): try:
if _F in J:continue git.Repo.init(repo_dir, bare=True)
for O in N:P=os.path.join(J,O);Q=os.path.relpath(P,D);I.append(Q) logger.info(f"Created repository: {repo_name} for user {username}")
R={_H:B,_O:L,'active_branch':M,'recent_commits':H,'files':I};return web.json_response(R) return web.Response(text=f"Created repository {repo_name}")
except Exception as K:logger.error(f"Error getting status for {B}: {str(K)}");return web.Response(text=f"Error getting repository status: {str(K)}",status=500) except Exception as e:
@require_auth logger.error(f"Error creating repository {repo_name}: {str(e)}")
async def list_repositories(self,request): return web.Response(text=f"Error creating repository: {str(e)}", status=500)
D=request;G=D[_B]
try: @require_auth
A=[];B=self.REPO_DIR async def delete_repository(self, request):
if os.path.exists(B): username = request['username']
for C in os.listdir(B): repo_name = request.match_info['repo_name']
F=os.path.join(B,C) repository_path = request['repository_path']
if os.path.isdir(F)and C.endswith(_F):A.append(C[:-4]) error_response = self.check_repo_exists(repository_path, repo_name)
if D.query.get('format')=='json':return web.json_response({'repositories':A}) if error_response:
else:return web.Response(text='\n'.join(A)if A else'No repositories found') return error_response
except Exception as E:logger.error(f"Error listing repositories: {str(E)}");return web.Response(text=f"Error listing repositories: {str(E)}",status=500) #'''
@require_auth try:
async def list_branches(self,request): shutil.rmtree(self.repo_path(repository_path, repo_name))
A=request;H=A[_B];B=A.match_info[_C];C=A[_A];D=self.check_repo_exists(C,B) logger.info(f"Deleted repository: {repo_name} for user {username}")
if D:return D return web.Response(text=f"Deleted repository {repo_name}")
with tempfile.TemporaryDirectory()as E:F=git.Repo.clone_from(self.repo_path(C,B),E);G=[A.name for A in F.branches];return web.json_response({_O:G}) except Exception as e:
@require_auth logger.error(f"Error deleting repository {repo_name}: {str(e)}")
async def create_branch(self,request): return web.Response(text=f"Error deleting repository: {str(e)}", status=500)
B=request;I=B[_B];C=B.match_info[_C];D=B[_A];E=self.check_repo_exists(D,C)
if E:return E @require_auth
try:F=await B.json() async def clone_repository(self, request):
except json.JSONDecodeError:return web.Response(text=_L,status=400) username = request['username']
A=F.get('branch_name');J=F.get('start_point','HEAD') repo_name = request.match_info['repo_name']
if not A:return web.Response(text='Branch name is required',status=400) repository_path = request['repository_path']
with tempfile.TemporaryDirectory()as K: error_response = self.check_repo_exists(repository_path, repo_name)
try:G=git.Repo.clone_from(self.repo_path(D,C),K);G.git.branch(A,J);G.git.push(_K,A);logger.info(f"Created branch {A} in repository {C} for user {I}");return web.Response(text=f"Created branch {A}") if error_response:
except Exception as H:logger.error(f"Error creating branch {A} in {C}: {str(H)}");return web.Response(text=f"Error creating branch: {str(H)}",status=500) return error_response
@require_auth host = request.host
async def commit_log(self,request): clone_url = f"http://{host}/{repo_name}.git"
B=request;L=B[_B];C=B.match_info[_C];F=B[_A];G=self.check_repo_exists(F,C) response_data = {
if G:return G "repository": repo_name,
try:I=int(B.query.get('limit',10));H=B.query.get(_G,_I) "clone_command": f"git clone {clone_url}",
except ValueError:return web.Response(text='Invalid limit parameter',status=400) "clone_url": clone_url
with tempfile.TemporaryDirectory()as J: }
try: return web.json_response(response_data)
K=git.Repo.clone_from(self.repo_path(F,C),J);E=[]
try: @require_auth
for A in list(K.iter_commits(H,max_count=I)):E.append({'id':A.hexsha,'short_id':A.hexsha[:7],_M:f"{A.author.name} <{A.author.email}>",'date':A.committed_datetime.isoformat(),_N:A.message.strip()}) async def push_repository(self, request):
except git.GitCommandError as D: username = request['username']
if'unknown revision or path'in str(D):E=[] repo_name = request.match_info['repo_name']
else:raise repository_path = request['repository_path']
return web.json_response({_H:C,_G:H,'commits':E}) error_response = self.check_repo_exists(repository_path, repo_name)
except Exception as D:logger.error(f"Error getting commit log for {C}: {str(D)}");return web.Response(text=f"Error getting commit log: {str(D)}",status=500) if error_response:
@require_auth return error_response
async def file_content(self,request): try:
A=request;N=A[_B];B=A.match_info[_C];C=A.match_info.get('file_path','');E=A.query.get(_G,_I);F=A[_A];G=self.check_repo_exists(F,B) data = await request.json()
if G:return G except json.JSONDecodeError:
with tempfile.TemporaryDirectory()as H: return web.Response(text="Invalid JSON data", status=400)
try: commit_message = data.get('commit_message', 'Update from server')
J=git.Repo.clone_from(self.repo_path(F,B),H) branch = data.get('branch', 'main')
try:J.git.checkout(E) changes = data.get('changes', [])
except git.GitCommandError:return web.Response(text=f"Branch '{E}' not found",status=404) if not changes:
D=os.path.join(H,C) return web.Response(text="No changes provided", status=400)
if not os.path.exists(D):return web.Response(text=f"File '{C}' not found",status=404) with tempfile.TemporaryDirectory() as temp_dir:
if os.path.isdir(D):K=os.listdir(D);return web.json_response({_H:B,'path':C,'type':'directory','contents':K}) temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
else: for change in changes:
try: file_path = os.path.join(temp_dir, change.get('file', ''))
with open(D,'r')as L:M=L.read() content = change.get('content', '')
return web.Response(text=M) os.makedirs(os.path.dirname(file_path), exist_ok=True)
except UnicodeDecodeError:return web.Response(text=f"Cannot display binary file content for '{C}'",status=400) with open(file_path, 'w') as f:
except Exception as I:logger.error(f"Error getting file content from {B}: {str(I)}");return web.Response(text=f"Error getting file content: {str(I)}",status=500) f.write(content)
@require_auth temp_repo.git.add(A=True)
async def git_smart_http(self,request): if not temp_repo.config_reader().has_section('user'):
B='POST';G='git-receive-pack';H='git-upload-pack';I='Content-Type';J='--stateless-rpc';D='/git-receive-pack';E='/git-upload-pack';F='/info/refs';A=request;P=A[_B];N=A[_A];C=A.path temp_repo.config_writer().set_value("user", "name", "Git Server").release()
async def K(): temp_repo.config_writer().set_value("user", "email", "git@server.local").release()
B=C.lstrip('/') temp_repo.index.commit(commit_message)
if B.endswith(F):A=B[:-len(F)] origin = temp_repo.remote('origin')
elif B.endswith(E):A=B[:-len(E)] origin.push(refspec=f"{branch}:{branch}")
elif B.endswith(D):A=B[:-len(D)] logger.info(f"Pushed to repository: {repo_name} for user {username}")
else:A=B return web.Response(text=f"Successfully pushed changes to {repo_name}")
if A.endswith(_F):A=A[:-4]
A=A[4:];G=N.joinpath(A+_F);logger.info(f"Resolved repo path: {G}");return G @require_auth
async def O(service): async def pull_repository(self, request):
C=service;D=await K();logger.info(f"handle_info_refs: {D}") username = request['username']
if not os.path.exists(D):return web.Response(text=_J,status=404) repo_name = request.match_info['repo_name']
L=[C,J,'--advertise-refs',str(D)] repository_path = request['repository_path']
try: error_response = self.check_repo_exists(repository_path, repo_name)
E=await asyncio.create_subprocess_exec(*L,stdout=asyncio.subprocess.PIPE,stderr=asyncio.subprocess.PIPE);M,F=await E.communicate() if error_response:
if E.returncode!=0:logger.error(f"Git command failed: {F.decode()}");return web.Response(text=f"Git error: {F.decode()}",status=500) return error_response
B=web.StreamResponse(status=200,reason='OK',headers={I:f"application/x-{C}-advertisement",'Cache-Control':'no-cache'});await B.prepare(A);G=f"# service={C}\n";N=len(G)+4;O=f"{N:04x}";await B.write(f"{O}{G}0000".encode());await B.write(M);return B try:
except Exception as H:logger.error(f"Error handling info/refs: {str(H)}");return web.Response(text=f"Server error: {str(H)}",status=500) data = await request.json()
async def L(service): except json.JSONDecodeError:
B=service;C=await K();logger.info(f"handle_service_rpc: {C}") data = {}
if not os.path.exists(C):return web.Response(text=_J,status=404) remote_url = data.get('remote_url')
if not A.headers.get(I)==f"application/x-{B}-request":return web.Response(text='Invalid Content-Type',status=403) branch = data.get('branch', 'main')
G=await A.read();H=[B,J,str(C)] if not remote_url:
try: return web.Response(text="Remote URL is required", status=400)
D=await asyncio.create_subprocess_exec(*H,stdin=asyncio.subprocess.PIPE,stdout=asyncio.subprocess.PIPE,stderr=asyncio.subprocess.PIPE);L,E=await D.communicate(input=G) with tempfile.TemporaryDirectory() as temp_dir:
if D.returncode!=0:logger.error(f"Git command failed: {E.decode()}");return web.Response(text=f"Git error: {E.decode()}",status=500) try:
return web.Response(body=L,content_type=f"application/x-{B}-result") local_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
except Exception as F:logger.error(f"Error handling service RPC: {str(F)}");return web.Response(text=f"Server error: {str(F)}",status=500) remote_name = "pull_source"
if A.method=='GET'and C.endswith(F): try:
M=A.query.get('service') remote = local_repo.create_remote(remote_name, remote_url)
if M in(H,G):return await O(M) except git.GitCommandError:
else:return web.Response(text='Smart HTTP requires service parameter',status=400) remote = local_repo.remote(remote_name)
elif A.method==B and E in C:return await L(H) remote.set_url(remote_url)
elif A.method==B and D in C:return await L(G) remote.fetch()
return web.Response(text='Not found',status=404) local_repo.git.merge(f"{remote_name}/{branch}")
if __name__=='__main__': origin = local_repo.remote('origin')
try:import uvloop;asyncio.set_event_loop_policy(uvloop.EventLoopPolicy());logger.info('Using uvloop for improved performance') origin.push()
except ImportError:logger.info('uvloop not available, using standard event loop') logger.info(f"Pulled to repository {repo_name} from {remote_url} for user {username}")
app=GitApplication();logger.info('Starting Git server on port 8080');web.run_app(app,port=8080) return web.Response(text=f"Successfully pulled changes from {remote_url} to {repo_name}")
except Exception as e:
logger.error(f"Error pulling to {repo_name}: {str(e)}")
return web.Response(text=f"Error pulling changes: {str(e)}", status=500)
@require_auth
async def status_repository(self, request):
username = request['username']
repo_name = request.match_info['repo_name']
repository_path = request['repository_path']
error_response = self.check_repo_exists(repository_path, repo_name)
if error_response:
return error_response
with tempfile.TemporaryDirectory() as temp_dir:
try:
temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
branches = [b.name for b in temp_repo.branches]
active_branch = temp_repo.active_branch.name
commits = []
for commit in list(temp_repo.iter_commits(max_count=5)):
commits.append({
"id": commit.hexsha,
"author": f"{commit.author.name} <{commit.author.email}>",
"date": commit.committed_datetime.isoformat(),
"message": commit.message
})
files = []
for root, dirs, filenames in os.walk(temp_dir):
if '.git' in root:
continue
for filename in filenames:
full_path = os.path.join(root, filename)
rel_path = os.path.relpath(full_path, temp_dir)
files.append(rel_path)
status_info = {
"repository": repo_name,
"branches": branches,
"active_branch": active_branch,
"recent_commits": commits,
"files": files
}
return web.json_response(status_info)
except Exception as e:
logger.error(f"Error getting status for {repo_name}: {str(e)}")
return web.Response(text=f"Error getting repository status: {str(e)}", status=500)
@require_auth
async def list_repositories(self, request):
username = request['username']
try:
repos = []
user_dir = self.REPO_DIR
if os.path.exists(user_dir):
for item in os.listdir(user_dir):
item_path = os.path.join(user_dir, item)
if os.path.isdir(item_path) and item.endswith('.git'):
repos.append(item[:-4])
if request.query.get('format') == 'json':
return web.json_response({"repositories": repos})
else:
return web.Response(text="\n".join(repos) if repos else "No repositories found")
except Exception as e:
logger.error(f"Error listing repositories: {str(e)}")
return web.Response(text=f"Error listing repositories: {str(e)}", status=500)
@require_auth
async def list_branches(self, request):
username = request['username']
repo_name = request.match_info['repo_name']
repository_path = request['repository_path']
error_response = self.check_repo_exists(repository_path, repo_name)
if error_response:
return error_response
with tempfile.TemporaryDirectory() as temp_dir:
temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
branches = [b.name for b in temp_repo.branches]
return web.json_response({"branches": branches})
@require_auth
async def create_branch(self, request):
username = request['username']
repo_name = request.match_info['repo_name']
repository_path = request['repository_path']
error_response = self.check_repo_exists(repository_path, repo_name)
if error_response:
return error_response
try:
data = await request.json()
except json.JSONDecodeError:
return web.Response(text="Invalid JSON data", status=400)
branch_name = data.get('branch_name')
start_point = data.get('start_point', 'HEAD')
if not branch_name:
return web.Response(text="Branch name is required", status=400)
with tempfile.TemporaryDirectory() as temp_dir:
try:
temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
temp_repo.git.branch(branch_name, start_point)
temp_repo.git.push('origin', branch_name)
logger.info(f"Created branch {branch_name} in repository {repo_name} for user {username}")
return web.Response(text=f"Created branch {branch_name}")
except Exception as e:
logger.error(f"Error creating branch {branch_name} in {repo_name}: {str(e)}")
return web.Response(text=f"Error creating branch: {str(e)}", status=500)
@require_auth
async def commit_log(self, request):
username = request['username']
repo_name = request.match_info['repo_name']
repository_path = request['repository_path']
error_response = self.check_repo_exists(repository_path, repo_name)
if error_response:
return error_response
try:
limit = int(request.query.get('limit', 10))
branch = request.query.get('branch', 'main')
except ValueError:
return web.Response(text="Invalid limit parameter", status=400)
with tempfile.TemporaryDirectory() as temp_dir:
try:
temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
commits = []
try:
for commit in list(temp_repo.iter_commits(branch, max_count=limit)):
commits.append({
"id": commit.hexsha,
"short_id": commit.hexsha[:7],
"author": f"{commit.author.name} <{commit.author.email}>",
"date": commit.committed_datetime.isoformat(),
"message": commit.message.strip()
})
except git.GitCommandError as e:
if "unknown revision or path" in str(e):
commits = []
else:
raise
return web.json_response({
"repository": repo_name,
"branch": branch,
"commits": commits
})
except Exception as e:
logger.error(f"Error getting commit log for {repo_name}: {str(e)}")
return web.Response(text=f"Error getting commit log: {str(e)}", status=500)
@require_auth
async def file_content(self, request):
username = request['username']
repo_name = request.match_info['repo_name']
file_path = request.match_info.get('file_path', '')
branch = request.query.get('branch', 'main')
repository_path = request['repository_path']
error_response = self.check_repo_exists(repository_path, repo_name)
if error_response:
return error_response
with tempfile.TemporaryDirectory() as temp_dir:
try:
temp_repo = git.Repo.clone_from(self.repo_path(repository_path, repo_name), temp_dir)
try:
temp_repo.git.checkout(branch)
except git.GitCommandError:
return web.Response(text=f"Branch '{branch}' not found", status=404)
file_full_path = os.path.join(temp_dir, file_path)
if not os.path.exists(file_full_path):
return web.Response(text=f"File '{file_path}' not found", status=404)
if os.path.isdir(file_full_path):
files = os.listdir(file_full_path)
return web.json_response({
"repository": repo_name,
"path": file_path,
"type": "directory",
"contents": files
})
else:
try:
with open(file_full_path, 'r') as f:
content = f.read()
return web.Response(text=content)
except UnicodeDecodeError:
return web.Response(text=f"Cannot display binary file content for '{file_path}'", status=400)
except Exception as e:
logger.error(f"Error getting file content from {repo_name}: {str(e)}")
return web.Response(text=f"Error getting file content: {str(e)}", status=500)
@require_auth
async def git_smart_http(self, request):
username = request['username']
repository_path = request['repository_path']
path = request.path
async def get_repository_path():
req_path = path.lstrip('/')
if req_path.endswith('/info/refs'):
repo_name = req_path[:-len('/info/refs')]
elif req_path.endswith('/git-upload-pack'):
repo_name = req_path[:-len('/git-upload-pack')]
elif req_path.endswith('/git-receive-pack'):
repo_name = req_path[:-len('/git-receive-pack')]
else:
repo_name = req_path
if repo_name.endswith('.git'):
repo_name = repo_name[:-4]
repo_name = repo_name[4:]
repo_dir = repository_path.joinpath(repo_name + ".git")
logger.info(f"Resolved repo path: {repo_dir}")
return repo_dir
async def handle_info_refs(service):
repo_path = await get_repository_path()
logger.info(f"handle_info_refs: {repo_path}")
if not os.path.exists(repo_path):
return web.Response(text="Repository not found", status=404)
cmd = [service, '--stateless-rpc', '--advertise-refs', str(repo_path)]
try:
process = await asyncio.create_subprocess_exec(
*cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await process.communicate()
if process.returncode != 0:
logger.error(f"Git command failed: {stderr.decode()}")
return web.Response(text=f"Git error: {stderr.decode()}", status=500)
response = web.StreamResponse(
status=200,
reason='OK',
headers={
'Content-Type': f'application/x-{service}-advertisement',
'Cache-Control': 'no-cache'
}
)
await response.prepare(request)
packet = f"# service={service}\n"
length = len(packet) + 4
header = f"{length:04x}"
await response.write(f"{header}{packet}0000".encode())
await response.write(stdout)
return response
except Exception as e:
logger.error(f"Error handling info/refs: {str(e)}")
return web.Response(text=f"Server error: {str(e)}", status=500)
async def handle_service_rpc(service):
repo_path = await get_repository_path()
logger.info(f"handle_service_rpc: {repo_path}")
if not os.path.exists(repo_path):
return web.Response(text="Repository not found", status=404)
if not request.headers.get('Content-Type') == f'application/x-{service}-request':
return web.Response(text="Invalid Content-Type", status=403)
body = await request.read()
cmd = [service, '--stateless-rpc', str(repo_path)]
try:
process = await asyncio.create_subprocess_exec(
*cmd,
stdin=asyncio.subprocess.PIPE,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await process.communicate(input=body)
if process.returncode != 0:
logger.error(f"Git command failed: {stderr.decode()}")
return web.Response(text=f"Git error: {stderr.decode()}", status=500)
return web.Response(
body=stdout,
content_type=f'application/x-{service}-result'
)
except Exception as e:
logger.error(f"Error handling service RPC: {str(e)}")
return web.Response(text=f"Server error: {str(e)}", status=500)
if request.method == 'GET' and path.endswith('/info/refs'):
service = request.query.get('service')
if service in ('git-upload-pack', 'git-receive-pack'):
return await handle_info_refs(service)
else:
return web.Response(text="Smart HTTP requires service parameter", status=400)
elif request.method == 'POST' and '/git-upload-pack' in path:
return await handle_service_rpc('git-upload-pack')
elif request.method == 'POST' and '/git-receive-pack' in path:
return await handle_service_rpc('git-receive-pack')
return web.Response(text="Not found", status=404)
if __name__ == '__main__':
try:
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
logger.info("Using uvloop for improved performance")
except ImportError:
logger.info("uvloop not available, using standard event loop")
app = GitApplication()
logger.info("Starting Git server on port 8080")
web.run_app(app, port=8080)

View File

@ -1,67 +1,144 @@
_C='delete' import functools
_B='set' import json
_A='get'
import functools,json
from snek.system import security from snek.system import security
cache=functools.cache
CACHE_MAX_ITEMS_DEFAULT=5000 cache = functools.cache
CACHE_MAX_ITEMS_DEFAULT = 5000
class Cache: class Cache:
def __init__(A,app,max_items=CACHE_MAX_ITEMS_DEFAULT):A.app=app;A.cache={};A.max_items=max_items;A.stats={};A.lru=[];A.version=15505 def __init__(self, app, max_items=CACHE_MAX_ITEMS_DEFAULT):
async def get(A,args): self.app = app
B=args;await A.update_stat(B,_A) self.cache = {}
try:A.lru.pop(A.lru.index(B)) self.max_items = max_items
except:return self.stats = {}
A.lru.insert(0,B) self.lru = []
while len(A.lru)>A.max_items:A.cache.pop(A.lru[-1]);A.lru.pop() self.version = ((42 + 420 + 1984 + 1990 + 10 + 6 + 71 + 3004 + 7245) ^ 1337) + 4
return A.cache[B]
async def get_stats(A): async def get(self, args):
C=[] await self.update_stat(args, "get")
for B in A.lru:C.append({'key':B,_B:A.stats[B][_B],_A:A.stats[B][_A],_C:A.stats[B][_C],'value':str(A.serialize(A.cache[B].record))}) try:
return C self.lru.pop(self.lru.index(args))
def serialize(C,obj):B=None;A=obj.copy();A.pop('created_at',B);A.pop('deleted_at',B);A.pop('email',B);A.pop('password',B);return A except:
async def update_stat(A,key,action): # print("Cache miss!", args, flush=True)
C=action;B=key return None
if B not in A.stats:A.stats[B]={_B:0,_A:0,_C:0} self.lru.insert(0, args)
A.stats[B][C]=A.stats[B][C]+1 while len(self.lru) > self.max_items:
def json_default(B,value): self.cache.pop(self.lru[-1])
A=value self.lru.pop()
try:return json.dumps(A.__dict__,default=str) # print("Cache hit!", args, flush=True)
except:return str(A) return self.cache[args]
async def create_cache_key(A,args,kwargs):return await security.hash(json.dumps({'args':args,'kwargs':kwargs},sort_keys=True,default=A.json_default))
async def set(A,args,result): async def get_stats(self):
B=args;C=B not in A.cache;A.cache[B]=result;await A.update_stat(B,_B) all_ = []
try:A.lru.pop(A.lru.index(B)) for key in self.lru:
except(ValueError,IndexError):pass all_.append(
A.lru.insert(0,B) {
while len(A.lru)>A.max_items:A.cache.pop(A.lru[-1]);A.lru.pop() "key": key,
if C:A.version+=1 "set": self.stats[key]["set"],
async def delete(A,args): "get": self.stats[key]["get"],
B=args;await A.update_stat(B,_C) "delete": self.stats[key]["delete"],
if B in A.cache: "value": str(self.serialize(self.cache[key].record)),
try:A.lru.pop(A.lru.index(B)) }
except IndexError:pass )
del A.cache[B] return all_
def async_cache(A,func):
@functools.wraps(func) def serialize(self, obj):
async def B(*B,**C): cpy = obj.copy()
D=await A.create_cache_key(B,C);E=await A.get(D) cpy.pop("created_at", None)
if E:return E cpy.pop("deleted_at", None)
F=await func(*B,**C);await A.set(D,F);return F cpy.pop("email", None)
return B cpy.pop("password", None)
def async_delete_cache(A,func): return cpy
@functools.wraps(func)
async def B(*C,**D): async def update_stat(self, key, action):
B=await A.create_cache_key(C,D) if key not in self.stats:
if B in A.cache: self.stats[key] = {"set": 0, "get": 0, "delete": 0}
try:A.lru.pop(A.lru.index(B)) self.stats[key][action] = self.stats[key][action] + 1
except IndexError:pass
del A.cache[B] def json_default(self, value):
return await func(*C,**D) # if hasattr(value, "to_json"):
return B # return value.to_json()
try:
return json.dumps(value.__dict__, default=str)
except:
return str(value)
async def create_cache_key(self, args, kwargs):
return await security.hash(
json.dumps(
{"args": args, "kwargs": kwargs},
sort_keys=True,
default=self.json_default,
)
)
async def set(self, args, result):
is_new = args not in self.cache
self.cache[args] = result
await self.update_stat(args, "set")
try:
self.lru.pop(self.lru.index(args))
except (ValueError, IndexError):
pass
self.lru.insert(0, args)
while len(self.lru) > self.max_items:
self.cache.pop(self.lru[-1])
self.lru.pop()
if is_new:
self.version += 1
# print(f"Cache store! {len(self.lru)} items. New version:", self.version, flush=True)
async def delete(self, args):
await self.update_stat(args, "delete")
if args in self.cache:
try:
self.lru.pop(self.lru.index(args))
except IndexError:
pass
del self.cache[args]
def async_cache(self, func):
@functools.wraps(func)
async def wrapper(*args, **kwargs):
cache_key = await self.create_cache_key(args, kwargs)
cached = await self.get(cache_key)
if cached:
return cached
result = await func(*args, **kwargs)
await self.set(cache_key, result)
return result
return wrapper
def async_delete_cache(self, func):
@functools.wraps(func)
async def wrapper(*args, **kwargs):
cache_key = await self.create_cache_key(args, kwargs)
if cache_key in self.cache:
try:
self.lru.pop(self.lru.index(cache_key))
except IndexError:
pass
del self.cache[cache_key]
return await func(*args, **kwargs)
return wrapper
def async_cache(func): def async_cache(func):
B={} cache = {}
@functools.wraps(func)
async def A(*A): @functools.wraps(func)
if A in B:return B[A] async def wrapper(*args):
C=await func(*A);B[A]=C;return C if args in cache:
return A return cache[args]
result = await func(*args)
cache[args] = result
return result
return wrapper

View File

@ -1,32 +1,120 @@
_B='fields' # Written by retoor@molodetz.nl
_A=None
# This code defines a framework for handling HTML elements as Python objects, including specific classes for HTML, form input, and form button elements. It offers methods to convert these elements to JSON, manipulate them, and validate form data.
# This code uses the `snek.system.model` library for managing model fields.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from snek.system import model from snek.system import model
class HTMLElement(model.ModelField): class HTMLElement(model.ModelField):
def __init__(A,id=_A,tag='div',name=_A,html=_A,class_name=_A,text=_A,*B,**C):A.tag=tag;A.text=text;A.id=id;A.class_name=class_name or name;A.html=html;super().__init__(*B,name=name,**C) def __init__(
async def to_json(B):A=await super().to_json();A['text']=B.text;A['id']=B.id;A['html']=B.html;A['class_name']=B.class_name;A['tag']=B.tag;return A self,
class FormElement(HTMLElement):0 id=None,
tag="div",
name=None,
html=None,
class_name=None,
text=None,
*args,
**kwargs,
):
self.tag = tag
self.text = text
self.id = id
self.class_name = class_name or name
self.html = html
super().__init__(name=name, *args, **kwargs)
async def to_json(self):
result = await super().to_json()
result["text"] = self.text
result["id"] = self.id
result["html"] = self.html
result["class_name"] = self.class_name
result["tag"] = self.tag
return result
class FormElement(HTMLElement):
pass
class FormInputElement(FormElement): class FormInputElement(FormElement):
def __init__(A,type='text',place_holder=_A,*B,**C):super().__init__(*B,tag='input',**C);A.place_holder=place_holder;A.type=type def __init__(self, type="text", place_holder=None, *args, **kwargs):
async def to_json(B):A=await super().to_json();A['place_holder']=B.place_holder;A['type']=B.type;return A super().__init__(tag="input", *args, **kwargs)
self.place_holder = place_holder
self.type = type
async def to_json(self):
data = await super().to_json()
data["place_holder"] = self.place_holder
data["type"] = self.type
return data
class FormButtonElement(FormElement): class FormButtonElement(FormElement):
def __init__(C,tag='button',*A,**B):super().__init__(*A,tag=tag,**B) def __init__(self, tag="button", *args, **kwargs):
super().__init__(tag=tag, *args, **kwargs)
class Form(model.BaseModel): class Form(model.BaseModel):
@property @property
def html_elements(self):return[A for A in self.fields if isinstance(A,HTMLElement)] def html_elements(self):
def set_user_data(A,data):return super().set_user_data(data.get(_B)) return [element for element in self.fields if isinstance(element, HTMLElement)]
async def to_json(D,encode=False):
B='is_valid';E=await super().to_json();C={} def set_user_data(self, data):
for A in E.keys(): return super().set_user_data(data.get("fields"))
if A==B:continue
F=getattr(D,A) async def to_json(self, encode=False):
if isinstance(F,HTMLElement): elements = await super().to_json()
try:C[A]=E[A] html_elements = {}
except KeyError:pass for element in elements.keys():
G=all(A[B]for A in C.values());return{_B:C,B:G,'errors':await D.errors} if element == "is_valid":
@property # is_valid is async get property so we can't do getattr on it
async def errors(self): continue
A=[] field = getattr(self, element)
for B in self.html_elements:A+=await B.errors if isinstance(field, HTMLElement):
return A try:
@property html_elements[element] = elements[element]
async def is_valid(self):return False except KeyError:
pass
is_valid = all(field["is_valid"] for field in html_elements.values())
return {
"fields": html_elements,
"is_valid": is_valid,
"errors": await self.errors,
}
@property
async def errors(self):
result = []
for field in self.html_elements:
result += await field.errors
return result
@property
async def is_valid(self):
# This is not good, but timebox to resolve issue exceeded.
return False

View File

@ -1,44 +1,110 @@
import asyncio,pathlib,uuid,zlib # Written by retoor@molodetz.nl
# This script enables downloading, processing, and caching web content, including taking website screenshots and repairing links in HTML content.
# Imports used: aiohttp, aiohttp.web for creating web servers and handling async requests; app.cache for caching utilities; BeautifulSoup from bs4 for HTML parsing; imgkit for creating screenshots.
# The MIT License (MIT)
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import asyncio
import pathlib
import uuid
import zlib
from urllib.parse import urljoin from urllib.parse import urljoin
import aiohttp,imgkit
import aiohttp
import imgkit
from app.cache import time_cache_async from app.cache import time_cache_async
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
async def crc32(data): async def crc32(data):
A=data try:
try:A=A.encode() data = data.encode()
except:pass except:
return'crc32'+str(zlib.crc32(A)) pass
async def get_file(name,suffix='.cache'): return "crc32" + str(zlib.crc32(data))
A=name;A=await crc32(A);B=pathlib.Path('.').joinpath('cache')
if not B.exists():B.mkdir(parents=True,exist_ok=True)
return B.joinpath(A+suffix) async def get_file(name, suffix=".cache"):
async def public_touch(name=None):A=pathlib.Path('.').joinpath(str(uuid.uuid4())+name);A.open('wb').close();return A name = await crc32(name)
path = pathlib.Path(".").joinpath("cache")
if not path.exists():
path.mkdir(parents=True, exist_ok=True)
return path.joinpath(name + suffix)
async def public_touch(name=None):
path = pathlib.Path(".").joinpath(str(uuid.uuid4()) + name)
path.open("wb").close()
return path
async def create_site_photo(url): async def create_site_photo(url):
A=url;C=asyncio.get_event_loop() loop = asyncio.get_event_loop()
if not A.startswith('https'):A='https://'+A if not url.startswith("https"):
B=await get_file('site-screenshot-'+A,'.png') url = "https://" + url
if B.exists():return B output_path = await get_file("site-screenshot-" + url, ".png")
B.touch()
def D():imgkit.from_url(A,B.absolute());return B if output_path.exists():
return await C.run_in_executor(None,D) return output_path
async def repair_links(base_url,html_content): output_path.touch()
D='http';E=base_url;B='src';C='href';F=BeautifulSoup(html_content,'html.parser')
for A in F.find_all(['a','img','link']): def make_photo():
if A.has_attr(C)and not A[C].startswith(D):A[C]=urljoin(E,A[C]) imgkit.from_url(url, output_path.absolute())
if A.has_attr(B)and not A[B].startswith(D):A[B]=urljoin(E,A[B]) return output_path
return F.prettify()
async def is_html_content(content): return await loop.run_in_executor(None, make_photo)
B=False;A=content
if not A:return B
try:A=A.decode(errors='ignore') async def repair_links(base_url, html_content):
except:pass soup = BeautifulSoup(html_content, "html.parser")
C=['<html','<img','<p','<span','<div'];A=A.lower() for tag in soup.find_all(["a", "img", "link"]):
for D in C: if tag.has_attr("href") and not tag["href"].startswith("http"):
if D in A:return True tag["href"] = urljoin(base_url, tag["href"])
return B if tag.has_attr("src") and not tag["src"].startswith("http"):
tag["src"] = urljoin(base_url, tag["src"])
return soup.prettify()
async def is_html_content(content: bytes):
if not content:
return False
try:
content = content.decode(errors="ignore")
except:
pass
marks = ["<html", "<img", "<p", "<span", "<div"]
content = content.lower()
for mark in marks:
if mark in content:
return True
return False
@time_cache_async(120) @time_cache_async(120)
async def get(url): async def get(url):
async with aiohttp.ClientSession()as B: async with aiohttp.ClientSession() as session:
C=await B.get(url);A=await C.text() response = await session.get(url)
if await is_html_content(A):A=(await repair_links(url,A)).encode() content = await response.text()
return A if await is_html_content(content):
content = (await repair_links(url, content)).encode()
return content

View File

@ -1,37 +1,70 @@
_A='uid' DEFAULT_LIMIT = 30
DEFAULT_LIMIT=30
import typing import typing
from snek.system.model import BaseModel from snek.system.model import BaseModel
class BaseMapper: class BaseMapper:
model_class:BaseModel=None;default_limit:int=DEFAULT_LIMIT;table_name:str=None
def __init__(A,app):A.app=app;A.default_limit=A.__class__.default_limit model_class: BaseModel = None
@property default_limit: int = DEFAULT_LIMIT
def db(self):return self.app.db table_name: str = None
async def new(A):return A.model_class(mapper=A,app=A.app)
@property def __init__(self, app):
def table(self):return self.db[self.table_name] self.app = app
async def get(B,uid=None,**C):
if uid:C[_A]=uid self.default_limit = self.__class__.default_limit
A=B.table.find_one(**C)
if not A:return @property
A=dict(A);D=await B.new() def db(self):
for(E,F)in A.items():D[E]=F return self.app.db
return D;return await B.model_class.from_record(mapper=B,record=A)
async def exists(A,**B):return A.table.exists(**B) async def new(self):
async def count(A,**B):return A.table.count(**B) return self.model_class(mapper=self, app=self.app)
async def save(B,model):
A=model @property
if not A.record.get(_A):raise Exception(f"Attempt to save without uid: {A.record}.") def table(self):
A.updated_at.update();return B.table.upsert(A.record,[_A]) return self.db[self.table_name]
async def find(A,**B):
C='_limit' async def get(self, uid: str = None, **kwargs) -> BaseModel:
if not B.get(C):B[C]=A.default_limit if uid:
for E in A.table.find(**B): kwargs["uid"] = uid
D=await A.new() record = self.table.find_one(**kwargs)
for(F,G)in E.items():D[F]=G if not record:
yield D return None
async def query(A,sql,*B): record = dict(record)
for C in A.db.query(sql,*B):yield dict(C) model = await self.new()
async def delete(B,**A): for key, value in record.items():
if not A or not isinstance(A,dict):raise Exception("Can't execute delete with no filter.") model[key] = value
return B.table.delete(**A) return model
return await self.model_class.from_record(mapper=self, record=record)
async def exists(self, **kwargs):
return self.table.exists(**kwargs)
async def count(self, **kwargs) -> int:
return self.table.count(**kwargs)
async def save(self, model: BaseModel) -> bool:
if not model.record.get("uid"):
raise Exception(f"Attempt to save without uid: {model.record}.")
model.updated_at.update()
return self.table.upsert(model.record, ["uid"])
async def find(self, **kwargs) -> typing.AsyncGenerator:
if not kwargs.get("_limit"):
kwargs["_limit"] = self.default_limit
for record in self.table.find(**kwargs):
model = await self.new()
for key, value in record.items():
model[key] = value
yield model
async def query(self, sql, *args):
for record in self.db.query(sql, *args):
yield dict(record)
async def delete(self, **kwargs) -> int:
if not kwargs or not isinstance(kwargs, dict):
raise Exception("Can't execute delete with no filter.")
return self.table.delete(**kwargs)

View File

@ -1,35 +1,87 @@
_A=True # Original source: https://brandonjay.dev/posts/2021/render-markdown-html-in-python-with-jinja2
from types import SimpleNamespace from types import SimpleNamespace
from app.cache import time_cache_async from app.cache import time_cache_async
from mistune import HTMLRenderer,Markdown from mistune import HTMLRenderer, Markdown
from pygments import highlight from pygments import highlight
from pygments.formatters import html from pygments.formatters import html
from pygments.lexers import get_lexer_by_name from pygments.lexers import get_lexer_by_name
class MarkdownRenderer(HTMLRenderer): class MarkdownRenderer(HTMLRenderer):
_allow_harmful_protocols=_A
def __init__(A,app,template):A.template=template;A.app=app;A.env=A.app.jinja2_env;B=html.HtmlFormatter();A.env.globals['highlight_styles']=B.get_style_defs() _allow_harmful_protocols = True
def _escape(A,str):return str
def get_lexer(A,lang,default='bash'): def __init__(self, app, template):
try:return get_lexer_by_name(lang,stripall=_A) self.template = template
except:return get_lexer_by_name(default,stripall=_A)
def block_code(B,code,lang=None,info=None): self.app = app
A=lang self.env = self.app.jinja2_env
if not A:A=info formatter = html.HtmlFormatter()
if not A:A='bash' self.env.globals["highlight_styles"] = formatter.get_style_defs()
C=B.get_lexer(A);D=html.HtmlFormatter(lineseparator='<br>');E=highlight(code,C,D);return E
def render(A):B=A.app.template_path.joinpath(A.template).read_text();C=MarkdownRenderer(A.app,A.template);D=Markdown(renderer=C);return D(B) def _escape(self, str):
def render_markdown_sync(app,markdown_string):A=MarkdownRenderer(app,None);B=Markdown(renderer=A);return B(markdown_string) return str ##escape(str)
def get_lexer(self, lang, default="bash"):
try:
return get_lexer_by_name(lang, stripall=True)
except:
return get_lexer_by_name(default, stripall=True)
def block_code(self, code, lang=None, info=None):
if not lang:
lang = info
if not lang:
lang = "bash"
lexer = self.get_lexer(lang)
formatter = html.HtmlFormatter(lineseparator="<br>")
result = highlight(code, lexer, formatter)
return result
def render(self):
markdown_string = self.app.template_path.joinpath(self.template).read_text()
renderer = MarkdownRenderer(self.app, self.template)
markdown = Markdown(renderer=renderer)
return markdown(markdown_string)
def render_markdown_sync(app, markdown_string):
renderer = MarkdownRenderer(app, None)
markdown = Markdown(renderer=renderer)
return markdown(markdown_string)
@time_cache_async(120) @time_cache_async(120)
async def render_markdown(app,markdown_string):return render_markdown_sync(app,markdown_string) async def render_markdown(app, markdown_string):
from jinja2 import TemplateSyntaxError,nodes return render_markdown_sync(app, markdown_string)
from jinja2 import TemplateSyntaxError, nodes
from jinja2.ext import Extension from jinja2.ext import Extension
from jinja2.nodes import Const from jinja2.nodes import Const
# Source: https://ron.sh/how-to-write-a-jinja2-extension/
class MarkdownExtension(Extension): class MarkdownExtension(Extension):
tags={'markdown'} tags = {"markdown"}
def __init__(A,environment):B=environment;A.app=SimpleNamespace(jinja2_env=B);super(MarkdownExtension,A).__init__(B)
def parse(D,parser): def __init__(self, environment):
A=parser;E=next(A.stream).lineno;B=[Const('')];C='' self.app = SimpleNamespace(jinja2_env=environment)
try:B=[A.parse_expression()] super(MarkdownExtension, self).__init__(environment)
except TemplateSyntaxError:C=A.parse_statements(['name:endmarkdown'],drop_needle=_A)
return nodes.CallBlock(D.call_method('_to_html',B),[],[],C).set_lineno(E) def parse(self, parser):
def _to_html(A,md_file,caller):return render_markdown_sync(A.app,caller()) line_number = next(parser.stream).lineno
md_file = [Const("")]
body = ""
try:
md_file = [parser.parse_expression()]
except TemplateSyntaxError:
body = parser.parse_statements(["name:endmarkdown"], drop_needle=True)
return nodes.CallBlock(
self.call_method("_to_html", md_file), [], [], body
).set_lineno(line_number)
def _to_html(self, md_file, caller):
return render_markdown_sync(self.app, caller())

View File

@ -1,21 +1,53 @@
_D='Access-Control-Allow-Credentials' # Written by retoor@molodetz.nl
_C='Access-Control-Allow-Headers'
_B='Access-Control-Allow-Methods' # This code provides middleware functions for an aiohttp server to manage and modify CORS (Cross-Origin Resource Sharing) headers.
_A='Access-Control-Allow-Origin'
# Imports from 'aiohttp' library are used to create middleware; they are not part of Python's standard library.
# MIT License: This code is distributed under the MIT License.
from aiohttp import web from aiohttp import web
@web.middleware @web.middleware
async def no_cors_middleware(request,handler):A=await handler(request);A.headers.pop(_A,None);return A async def no_cors_middleware(request, handler):
response = await handler(request)
response.headers.pop("Access-Control-Allow-Origin", None)
return response
@web.middleware @web.middleware
async def cors_allow_middleware(request,handler):A=await handler(request);A.headers[_A]='*';A.headers[_B]='GET, POST, OPTIONS, PUT, DELETE, MOVE, COPY, HEAD, LOCK, UNLOCK, PATCH, PROPFIND';A.headers[_C]='*';A.headers[_D]='true';return A async def cors_allow_middleware(request, handler):
response = await handler(request)
response.headers["Access-Control-Allow-Origin"] = "*"
response.headers["Access-Control-Allow-Methods"] = (
"GET, POST, OPTIONS, PUT, DELETE, MOVE, COPY, HEAD, LOCK, UNLOCK, PATCH, PROPFIND"
)
response.headers["Access-Control-Allow-Headers"] = "*"
response.headers["Access-Control-Allow-Credentials"] = "true"
return response
@web.middleware @web.middleware
async def auth_middleware(request,handler): async def auth_middleware(request, handler):
B='uid';C='user';A=request;A[C]=None request["user"] = None
if A.session.get(B)and A.session.get('logged_in'):A[C]=await A.app.services.user.get(uid=A.app.session.get(B)) if request.session.get("uid") and request.session.get("logged_in"):
return await handler(A) request["user"] = await request.app.services.user.get(
uid=request.app.session.get("uid")
)
return await handler(request)
@web.middleware @web.middleware
async def cors_middleware(request,handler): async def cors_middleware(request, handler):
C='Allow';D=handler;B=request if request.headers.get("Allow"):
if B.headers.get(C):return await D(B) return await handler(request)
A=await D(B)
if B.headers.get(C):return A response = await handler(request)
A.headers[_A]='*';A.headers[_B]='GET, POST, PUT, DELETE, OPTIONS';A.headers[_C]='*';A.headers[_D]='true';return A if request.headers.get("Allow"):
return response
response.headers["Access-Control-Allow-Origin"] = "*"
response.headers["Access-Control-Allow-Methods"] = "GET, POST, PUT, DELETE, OPTIONS"
response.headers["Access-Control-Allow-Headers"] = "*"
response.headers["Access-Control-Allow-Credentials"] = "true"
return response

View File

@ -1,139 +1,377 @@
_I='deleted_at' # Written by retoor@molodetz.nl
_H='updated_at'
_G='created_at' # The script defines a flexible validation and field management system for models, with capabilities for setting attributes, validation, error handling, and JSON conversion. It includes classes for managing various field types with specific properties such as UUID, timestamps for creation and updates, and custom validation rules.
_F='is_valid'
_E='name' # This script utilizes external Python libraries such as 're' for regex operations, 'uuid' for generating unique identifiers, and 'json' for data interchange. The 'datetime' and 'timezone' modules from the Python standard library are used for date and time operations. 'OrderedDict' from 'collections' provides enhanced dictionary capabilities, and 'copy' allows deep copying of objects.
_D=False
_C='value' # MIT License
_B=True #
_A=None # Permission is hereby granted, free of charge, to any person obtaining a copy
import copy,json,re,uuid # of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import copy
import json
import re
import uuid
from collections import OrderedDict from collections import OrderedDict
from datetime import datetime,timezone from datetime import datetime, timezone
TIMESTAMP_REGEX='^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{6}\\+\\d{2}:\\d{2}$'
def now():return str(datetime.now(timezone.utc)) TIMESTAMP_REGEX = r"^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{6}\+\d{2}:\d{2}$"
def add_attrs(**A):
def B(func):
for(B,C)in A.items():setattr(func,B,C) def now():
return func return str(datetime.now(timezone.utc))
return B
def validate_attrs(required=_D,min_length=_A,max_length=_A,regex=_A,**A):
def B(func):return add_attrs(required=required,min_length=min_length,max_length=max_length,regex=regex,**A)(func) def add_attrs(**kwargs):
def decorator(func):
for key, value in kwargs.items():
setattr(func, key, value)
return func
return decorator
def validate_attrs(
required=False, min_length=None, max_length=None, regex=None, **kwargs
):
def decorator(func):
return add_attrs(
required=required,
min_length=min_length,
max_length=max_length,
regex=regex,
**kwargs,
)(func)
class Validator: class Validator:
_index=0 _index = 0
@property
def value(self):return self._value @property
@value.setter def value(self):
def value(self,val):self._value=json.loads(json.dumps(val,default=str)) return self._value
@property
def initial_value(self):return self.value @value.setter
def custom_validation(A):return _B def value(self, val):
def __init__(A,required=_D,min_num=_A,max_num=_A,min_length=_A,max_length=_A,regex=_A,value=_A,kind=_A,help_text=_A,app=_A,model=_A,**B):A.index=Validator._index;Validator._index+=1;A.app=app;A.model=model;A.required=required;A.min_num=min_num;A.max_num=max_num;A.min_length=min_length;A.max_length=max_length;A.regex=regex;A._value=_A;A.value=value;A.kind=kind;A.help_text=help_text;A.__dict__.update(B) self._value = json.loads(json.dumps(val, default=str))
@property
async def errors(self): @property
A=self;B=[] def initial_value(self):
if A.value is _A and A.required:B.append('Field is required.');return B return self.value
if A.value is _A:return B
if A.kind in[int,float]: def custom_validation(self):
if A.min_num is not _A and A.value<A.min_num:B.append(f"Field should be minimal {A.min_num}.") return True
if A.max_num is not _A and A.value>A.max_num:B.append(f"Field should be maximal {A.max_num}.")
if A.min_length is not _A and len(A.value)<A.min_length:B.append(f"Field should be minimal {A.min_length} characters long.") def __init__(
if A.max_length is not _A and len(A.value)>A.max_length:B.append(f"Field should be maximal {A.max_length} characters long.") self,
if A.regex and A.value and not re.match(A.regex,A.value):B.append('Invalid value.') required=False,
if A.kind and not isinstance(A.value,A.kind):B.append(f"Invalid kind. It is supposed to be {A.kind}.") min_num=None,
return B max_num=None,
async def validate(B): min_length=None,
A=await B.errors max_length=None,
if A:raise ValueError(f"Errors: {A}.") regex=None,
return _B value=None,
def __repr__(A):return str(A.to_json()) kind=None,
@property help_text=None,
async def is_valid(self): app=None,
try:await self.validate();return _B model=None,
except ValueError:return _D **kwargs,
async def to_json(A):B=await A.errors;C=await A.is_valid;return{'required':A.required,'min_num':A.min_num,'max_num':A.max_num,'min_length':A.min_length,'max_length':A.max_length,'regex':A.regex,_C:A.value,'kind':str(A.kind),'help_text':A.help_text,'errors':B,_F:C,'index':A.index} ):
self.index = Validator._index
Validator._index += 1
self.app = app
self.model = model
self.required = required
self.min_num = min_num
self.max_num = max_num
self.min_length = min_length
self.max_length = max_length
self.regex = regex
self._value = None
self.value = value
self.kind = kind
self.help_text = help_text
self.__dict__.update(kwargs)
@property
async def errors(self):
error_list = []
if self.value is None and self.required:
error_list.append("Field is required.")
return error_list
if self.value is None:
return error_list
if self.kind in [int, float]:
if self.min_num is not None and self.value < self.min_num:
error_list.append(f"Field should be minimal {self.min_num}.")
if self.max_num is not None and self.value > self.max_num:
error_list.append(f"Field should be maximal {self.max_num}.")
if self.min_length is not None and len(self.value) < self.min_length:
error_list.append(
f"Field should be minimal {self.min_length} characters long."
)
if self.max_length is not None and len(self.value) > self.max_length:
error_list.append(
f"Field should be maximal {self.max_length} characters long."
)
if self.regex and self.value and not re.match(self.regex, self.value):
error_list.append("Invalid value.")
if self.kind and not isinstance(self.value, self.kind):
error_list.append(f"Invalid kind. It is supposed to be {self.kind}.")
return error_list
async def validate(self):
errors = await self.errors
if errors:
raise ValueError(f"Errors: {errors}.")
return True
def __repr__(self):
return str(self.to_json())
@property
async def is_valid(self):
try:
await self.validate()
return True
except ValueError:
return False
async def to_json(self):
errors = await self.errors
is_valid = await self.is_valid
return {
"required": self.required,
"min_num": self.min_num,
"max_num": self.max_num,
"min_length": self.min_length,
"max_length": self.max_length,
"regex": self.regex,
"value": self.value,
"kind": str(self.kind),
"help_text": self.help_text,
"errors": errors,
"is_valid": is_valid,
"index": self.index,
}
class ModelField(Validator): class ModelField(Validator):
index=1
def __init__(A,name=_A,save=_B,*B,**C):A.name=name;A.save=save;super().__init__(*B,**C) index = 1
async def to_json(B):A=await super().to_json();A[_E]=B.name;return A
def __init__(self, name=None, save=True, *args, **kwargs):
self.name = name
self.save = save
super().__init__(*args, **kwargs)
async def to_json(self):
result = await super().to_json()
result["name"] = self.name
return result
class CreatedField(ModelField): class CreatedField(ModelField):
@property
def initial_value(self):return now() @property
def update(A): def initial_value(self):
if not A.value:A.value=now() return now()
def update(self):
if not self.value:
self.value = now()
class UpdatedField(ModelField): class UpdatedField(ModelField):
def update(A):A.value=now()
def update(self):
self.value = now()
class DeletedField(ModelField): class DeletedField(ModelField):
def update(A):A.value=now()
def update(self):
self.value = now()
class UUIDField(ModelField): class UUIDField(ModelField):
@property
def value(self):return str(self._value) @property
@value.setter def value(self):
def value(self,val):self._value=str(val) return str(self._value)
@property
def initial_value(self):return str(uuid.uuid4()) @value.setter
def value(self, val):
self._value = str(val)
@property
def initial_value(self):
return str(uuid.uuid4())
class BaseModel: class BaseModel:
uid=UUIDField(name='uid',required=_B);created_at=CreatedField(name=_G,required=_B,regex=TIMESTAMP_REGEX,place_holder='Created at');updated_at=UpdatedField(name=_H,regex=TIMESTAMP_REGEX,place_holder='Updated at');deleted_at=DeletedField(name=_I,regex=TIMESTAMP_REGEX,place_holder='Deleted at')
@classmethod uid = UUIDField(name="uid", required=True)
async def from_record(B,record,mapper):A=B();A.mapper=mapper;A.record=record;return A created_at = CreatedField(
@property name="created_at",
def mapper(self):return self._mapper required=True,
@mapper.setter regex=TIMESTAMP_REGEX,
def mapper(self,value):self._mapper=value place_holder="Created at",
@property )
def record(self):return{A:B.value for(A,B)in self.fields.items()} updated_at = UpdatedField(
@record.setter name="updated_at", regex=TIMESTAMP_REGEX, place_holder="Updated at"
def record(self,val): )
A=self deleted_at = DeletedField(
for(B,C)in val.items(): name="deleted_at", regex=TIMESTAMP_REGEX, place_holder="Deleted at"
D=A.fields.get(B) )
if not D:continue
A[B]=C @classmethod
return A async def from_record(cls, record, mapper):
def __init__(A,*F,**C): model = cls()
D='app';A._mapper=C.get('mapper');A.app=C.get(D);A.fields={} model.mapper = mapper
for B in dir(A.__class__): model.record = record
E=getattr(A.__class__,B) return model
if isinstance(E,Validator):A.__dict__[B]=copy.deepcopy(E);A.__dict__[B].value=C.pop(B,A.__dict__[B].initial_value);A.fields[B]=A.__dict__[B];A.fields[B].model=A;A.fields[B].app=C.get(D)
def __setitem__(B,key,value): @property
A=B.__dict__.get(key) def mapper(self):
if isinstance(A,Validator):A.value=value return self._mapper
def __getattr__(B,key):
A=B.__dict__.get(key) @mapper.setter
if isinstance(A,Validator):return A.value def mapper(self, value):
return A self._mapper = value
def set_user_data(C,data):
for(D,A)in data.items(): @property
B=C.fields.get(D) def record(self):
if not B:continue return {key: field.value for key, field in self.fields.items()}
if A.get(_E):A=A.get(_C)
B.value=A @record.setter
@property def record(self, val):
async def is_valid(self):return all([await A.is_valid for A in self.fields.values()]) for key, value in val.items():
def __getitem__(B,key): field = self.fields.get(key)
A=B.__dict__.get(key) if not field:
if isinstance(A,Validator):return A.value continue
def __setattr__(A,key,value): self[key] = value
B=value;C=getattr(A,key) return self
if isinstance(C,Validator):C.value=B
else:A.__dict__[key]=B def __init__(self, *args, **kwargs):
@property self._mapper = kwargs.get("mapper")
async def recordz(self): self.app = kwargs.get("app")
D=await self.to_json();B={} self.fields = {}
for(C,A)in D.items(): for key in dir(self.__class__):
if not isinstance(A,dict)or _C not in A:continue obj = getattr(self.__class__, key)
if getattr(self,C).save:B[C]=A.get(_C)
return B if isinstance(obj, Validator):
async def to_json(A,encode=_D): self.__dict__[key] = copy.deepcopy(obj)
B=OrderedDict({'uid':A.uid.value,_G:A.created_at.value,_H:A.updated_at.value,_I:A.deleted_at.value,_F:await A.is_valid}) self.__dict__[key].value = kwargs.pop(
for(C,D)in A.fields.items(): key, self.__dict__[key].initial_value
if C=='record':continue )
D=A.__dict__[C] self.fields[key] = self.__dict__[key]
if hasattr(D,_C):B[C]=await D.to_json() self.fields[key].model = self
if encode:return json.dumps(B,indent=2) self.fields[key].app = kwargs.get("app")
return B
def __setitem__(self, key, value):
obj = self.__dict__.get(key)
if isinstance(obj, Validator):
obj.value = value
def __getattr__(self, key):
obj = self.__dict__.get(key)
if isinstance(obj, Validator):
return obj.value
return obj
def set_user_data(self, data):
for key, value in data.items():
field = self.fields.get(key)
if not field:
continue
if value.get("name"):
value = value.get("value")
field.value = value
@property
async def is_valid(self):
return all([await field.is_valid for field in self.fields.values()])
def __getitem__(self, key):
obj = self.__dict__.get(key)
if isinstance(obj, Validator):
return obj.value
def __setattr__(self, key, value):
obj = getattr(self, key)
if isinstance(obj, Validator):
obj.value = value
else:
self.__dict__[key] = value
@property
async def recordz(self):
obj = await self.to_json()
record = {}
for key, value in obj.items():
if not isinstance(value, dict) or "value" not in value:
continue
if getattr(self, key).save:
record[key] = value.get("value")
return record
async def to_json(self, encode=False):
model_data = OrderedDict(
{
"uid": self.uid.value,
"created_at": self.created_at.value,
"updated_at": self.updated_at.value,
"deleted_at": self.deleted_at.value,
"is_valid": await self.is_valid,
}
)
for key, value in self.fields.items():
if key == "record":
continue
value = self.__dict__[key]
if hasattr(value, "value"):
model_data[key] = await value.to_json()
if encode:
return json.dumps(model_data, indent=2)
return model_data
class FormElement(ModelField): class FormElement(ModelField):
def __init__(A,place_holder=_A,*B,**C):super().__init__(*B,**C);A.place_holder=place_holder
def __init__(self, place_holder=None, *args, **kwargs):
super().__init__(*args, **kwargs)
self.place_holder = place_holder
class FormElement(ModelField): class FormElement(ModelField):
def __init__(A,place_holder=_A,*B,**C):A.place_holder=place_holder;super().__init__(*B,**C)
async def to_json(B):A=await super().to_json();A[_E]=B.name;A['place_holder']=B.place_holder;return A def __init__(self, place_holder=None, *args, **kwargs):
self.place_holder = place_holder
super().__init__(*args, **kwargs)
async def to_json(self):
data = await super().to_json()
data["name"] = self.name
data["place_holder"] = self.place_holder
return data

View File

@ -1,7 +1,13 @@
class Object: class Object:
def __init__(A,*C,**D):
for B in C: def __init__(self, *args, **kwargs):
if isinstance(B,dict):A.__dict__.update(B) for arg in args:
A.__dict__.update(D) if isinstance(arg, dict):
def __getitem__(A,key):return A.__dict__[key] self.__dict__.update(arg)
def __setitem__(A,key,value):A.__dict__[key]=value self.__dict__.update(kwargs)
def __getitem__(self, key):
return self.__dict__[key]
def __setitem__(self, key, value):
self.__dict__[key] = value

View File

@ -1,17 +1,46 @@
import cProfile,pstats,sys import cProfile
import pstats
import sys
from aiohttp import web from aiohttp import web
profiler=None
profiler = None
import io import io
@web.middleware @web.middleware
async def profile_middleware(request,handler): async def profile_middleware(request, handler):
global profiler global profiler
if not profiler:profiler=cProfile.Profile() if not profiler:
profiler.enable();B=await handler(request);profiler.disable();A=pstats.Stats(profiler,stream=sys.stdout);A.sort_stats('cumulative');A.print_stats();return B profiler = cProfile.Profile()
async def profiler_handler(request):A=io.StringIO();B=pstats.Stats(profiler,stream=A);C=request.query.get('sort','tot. percall');B.sort_stats(C);B.print_stats();return web.Response(text=A.getvalue()) profiler.enable()
response = await handler(request)
profiler.disable()
stats = pstats.Stats(profiler, stream=sys.stdout)
stats.sort_stats("cumulative")
stats.print_stats()
return response
async def profiler_handler(request):
output = io.StringIO()
stats = pstats.Stats(profiler, stream=output)
sort_by = request.query.get("sort", "tot. percall")
stats.sort_stats(sort_by)
stats.print_stats()
return web.Response(text=output.getvalue())
class Profiler: class Profiler:
def __init__(A):
global profiler def __init__(self):
if profiler is None:profiler=cProfile.Profile() global profiler
A.profiler=profiler if profiler is None:
async def __aenter__(A):A.profiler.enable() profiler = cProfile.Profile()
async def __aexit__(A,*B,**C):A.profiler.disable() self.profiler = profiler
async def __aenter__(self):
self.profiler.enable()
async def __aexit__(self, *args, **kwargs):
self.profiler.disable()

View File

@ -1,24 +1,77 @@
_A='snekker-de-snek-' import hashlib
import hashlib,uuid import uuid
DEFAULT_SALT=_A
DEFAULT_NS=_A DEFAULT_SALT = "snekker-de-snek-"
DEFAULT_NS = "snekker-de-snek-"
class UIDNS: class UIDNS:
def __init__(A,name):'Initialize UIDNS with a name.';A.name=name def __init__(self, name: str) -> None:
@property """Initialize UIDNS with a name."""
def bytes(self):'Return the bytes representation of the name.';return self.name.encode() self.name = name
def uid(value=None,ns=DEFAULT_NS):
'Generate a UUID based on the provided value and namespace.\n\n Args:\n value (str): The value to generate the UUID from. If None, a new UUID is created.\n ns (str): The namespace to use for UUID generation.\n\n Returns:\n str: The generated UUID as a string.\n ';A=value @property
try:ns=ns.decode() def bytes(self) -> bytes:
except AttributeError:pass """Return the bytes representation of the name."""
if not A:A=str(uuid.uuid4()) return self.name.encode()
try:A=A.decode()
except AttributeError:pass
return str(uuid.uuid5(UIDNS(ns),A)) def uid(value: str = None, ns: str = DEFAULT_NS) -> str:
async def hash(data,salt=DEFAULT_SALT): """Generate a UUID based on the provided value and namespace.
'Hash the given data with the specified salt using SHA-256.\n\n Args:\n data (str): The data to hash.\n salt (str): The salt to use for hashing.\n\n Returns:\n str: The hexadecimal representation of the hashed data.\n ';C='ignore';A=salt;B=data
try:B=B.encode(errors=C) Args:
except AttributeError:pass value (str): The value to generate the UUID from. If None, a new UUID is created.
try:A=A.encode(errors=C) ns (str): The namespace to use for UUID generation.
except AttributeError:pass
D=A+B;E=hashlib.sha256(D);return E.hexdigest() Returns:
async def verify(string,hashed):'Verify if the given string matches the hashed value.\n\n Args:\n string (str): The string to verify.\n hashed (str): The hashed value to compare against.\n\n Returns:\n bool: True if the string matches the hashed value, False otherwise.\n ';return await hash(string)==hashed str: The generated UUID as a string.
"""
try:
ns = ns.decode()
except AttributeError:
pass
if not value:
value = str(uuid.uuid4())
try:
value = value.decode()
except AttributeError:
pass
return str(uuid.uuid5(UIDNS(ns), value))
async def hash(data: str, salt: str = DEFAULT_SALT) -> str:
"""Hash the given data with the specified salt using SHA-256.
Args:
data (str): The data to hash.
salt (str): The salt to use for hashing.
Returns:
str: The hexadecimal representation of the hashed data.
"""
try:
data = data.encode(errors="ignore")
except AttributeError:
pass
try:
salt = salt.encode(errors="ignore")
except AttributeError:
pass
salted = salt + data
obj = hashlib.sha256(salted)
return obj.hexdigest()
async def verify(string: str, hashed: str) -> bool:
"""Verify if the given string matches the hashed value.
Args:
string (str): The string to verify.
hashed (str): The hashed value to compare against.
Returns:
bool: True if the string matches the hashed value, False otherwise.
"""
return await hash(string) == hashed

View File

@ -1,42 +1,67 @@
_B='uid'
_A=None
from snek.mapper import get_mapper from snek.mapper import get_mapper
from snek.model.user import UserModel from snek.model.user import UserModel
from snek.system.mapper import BaseMapper from snek.system.mapper import BaseMapper
class BaseService: class BaseService:
mapper_name:BaseMapper=_A
@property mapper_name: BaseMapper = None
def services(self):return self.app.services
def __init__(A,app): @property
A.app=app;A.cache=app.cache def services(self):
if A.mapper_name:A.mapper=get_mapper(A.mapper_name,app=A.app) return self.app.services
else:A.mapper=_A
async def exists(C,uid=_A,**A): def __init__(self, app):
B=uid self.app = app
if B: self.cache = app.cache
if not A and await C.cache.get(B):return True if self.mapper_name:
A[_B]=B self.mapper = get_mapper(self.mapper_name, app=self.app)
return await C.count(**A)>0 else:
async def count(A,**B):return await A.mapper.count(**B) self.mapper = None
async def new(A,**B):return await A.mapper.new()
async def query(A,sql,*B): async def exists(self, uid=None, **kwargs):
for C in A.app.db.query(sql,*B):yield C if uid:
async def get(B,uid=_A,**C): if not kwargs and await self.cache.get(uid):
D=uid return True
if D: kwargs["uid"] = uid
if not C: return await self.count(**kwargs) > 0
A=await B.cache.get(D)
if False and A and A.__class__==B.mapper.model_class:return A async def count(self, **kwargs):
C[_B]=D return await self.mapper.count(**kwargs)
A=await B.mapper.get(**C)
if A:await B.cache.set(A[_B],A) async def new(self, **kwargs):
return A return await self.mapper.new()
async def save(B,model):
A=model async def query(self, sql, *args):
if await B.mapper.save(A):await B.cache.set(A[_B],A);return True for record in self.app.db.query(sql, *args):
C=await A.errors;raise Exception(f"Couldn't save model. Errors: f{C}") yield record
async def find(C,**A):
B='_limit' async def get(self, uid=None, **kwargs):
if B not in A or int(A.get(B))>30:A[B]=60 if uid:
async for D in C.mapper.find(**A):yield D if not kwargs:
async def delete(A,**B):return await A.mapper.delete(**B) result = await self.cache.get(uid)
if False and result and result.__class__ == self.mapper.model_class:
return result
kwargs["uid"] = uid
result = await self.mapper.get(**kwargs)
if result:
await self.cache.set(result["uid"], result)
return result
async def save(self, model: UserModel):
# if model.is_valid: You Know why not
if await self.mapper.save(model):
await self.cache.set(model["uid"], model)
return True
errors = await model.errors
raise Exception(f"Couldn't save model. Errors: f{errors}")
async def find(self, **kwargs):
if "_limit" not in kwargs or int(kwargs.get("_limit")) > 30:
kwargs["_limit"] = 60
async for model in self.mapper.find(**kwargs):
yield model
async def delete(self, **kwargs):
return await self.mapper.delete(**kwargs)

File diff suppressed because one or more lines are too long

View File

@ -1,49 +1,113 @@
_A=None import asyncio
import asyncio,os import os
try:import pty
except Exception as ex:print('You are not able to run a terminal. See error:');print(ex) try:
import pty
except Exception as ex:
print("You are not able to run a terminal. See error:")
print(ex)
import subprocess import subprocess
commands={'alpine':'docker run -it alpine /bin/sh','r':'docker run -v /usr/local/bin:/usr/local/bin -it ubuntu:latest run.sh'}
commands = {
"alpine": "docker run -it alpine /bin/sh",
"r": "docker run -v /usr/local/bin:/usr/local/bin -it ubuntu:latest run.sh",
}
class TerminalSession: class TerminalSession:
def __init__(A,command):A.master,A.slave=_A,_A;A.process=_A;A.sockets=[];A.history=b'';A.history_size=20480;A.command=command;A.start_process(A.command) def __init__(self, command):
def start_process(A,command): self.master, self.slave = None, None
if not A.is_running(): self.process = None
if A.master:os.close(A.master);os.close(A.slave);A.master=_A;A.slave=_A self.sockets = []
A.master,A.slave=pty.openpty();A.process=subprocess.Popen(command.split(' '),stdin=A.slave,stdout=A.slave,stderr=A.slave,bufsize=0,universal_newlines=True) self.history = b""
def is_running(A): self.history_size = 1024 * 20
if not A.process:return False self.command = command
asyncio.get_event_loop();return A.process.poll()is _A self.start_process(self.command)
async def add_websocket(A,ws):A.start_process(A.command);asyncio.create_task(A.read_output(ws))
async def read_output(A,ws): def start_process(self, command):
B=ws;A.sockets.append(B) if not self.is_running():
if len(A.sockets)>1 and A.history: if self.master:
D=0 os.close(self.master)
try:D=A.history.index(b'\n') os.close(self.slave)
except ValueError:pass self.master = None
await B.send_bytes(A.history[D:]);return self.slave = None
E=asyncio.get_event_loop()
while True: self.master, self.slave = pty.openpty()
try: self.process = subprocess.Popen(
C=await E.run_in_executor(_A,os.read,A.master,1024) command.split(" "),
if not C:break stdin=self.slave,
A.history+=C stdout=self.slave,
if len(A.history)>A.history_size:A.history=A.history[:0-A.history_size] stderr=self.slave,
try: bufsize=0,
for B in A.sockets:await B.send_bytes(C) universal_newlines=True,
except:A.sockets.remove(B) )
except Exception:await A.close();break
async def close(A): def is_running(self):
print('Terminating process') if not self.process:
if A.process:A.process.terminate();A.process=_A return False
if A.master:os.close(A.master);os.close(A.slave);A.master=_A;A.slave=_A asyncio.get_event_loop()
print('Terminated process') return self.process.poll() is None
for B in A.sockets:
try:await B.close() async def add_websocket(self, ws):
except Exception:pass self.start_process(self.command)
A.sockets=[] asyncio.create_task(self.read_output(ws))
async def write_input(B,data):
A=data async def read_output(self, ws):
try:A=A.encode() self.sockets.append(ws)
except AttributeError:pass if len(self.sockets) > 1 and self.history:
try:await asyncio.get_event_loop().run_in_executor(_A,os.write,B.master,A) start = 0
except Exception as C:print(C);await B.close() try:
start = self.history.index(b"\n")
except ValueError:
pass
await ws.send_bytes(self.history[start:])
return
loop = asyncio.get_event_loop()
while True:
try:
data = await loop.run_in_executor(None, os.read, self.master, 1024)
if not data:
break
self.history += data
if len(self.history) > self.history_size:
self.history = self.history[: 0 - self.history_size]
try:
for ws in self.sockets:
await ws.send_bytes(data) # Send raw bytes for ANSI support
except:
self.sockets.remove(ws)
except Exception:
await self.close()
break
async def close(self):
print("Terminating process")
if self.process:
self.process.terminate()
self.process = None
if self.master:
os.close(self.master)
os.close(self.slave)
self.master = None
self.slave = None
print("Terminated process")
for ws in self.sockets:
try:
await ws.close()
except Exception:
pass
self.sockets = []
async def write_input(self, data):
try:
data = data.encode()
except AttributeError:
pass
try:
await asyncio.get_event_loop().run_in_executor(
None, os.write, self.master, data
)
except Exception as ex:
print(ex)
await self.close()

View File

@ -1,31 +1,75 @@
from aiohttp import web from aiohttp import web
from snek.system.markdown import render_markdown from snek.system.markdown import render_markdown
class BaseView(web.View): class BaseView(web.View):
login_required=False
async def _iter(A): login_required = False
if A.login_required and(not A.session.get('logged_in')or not A.session.get('uid')):return web.HTTPFound('/')
return await super()._iter() async def _iter(self):
@property if self.login_required and (
def base_url(self):return str(self.request.url.with_path('').with_query('')) not self.session.get("logged_in") or not self.session.get("uid")
@property ):
def app(self):return self.request.app return web.HTTPFound("/")
@property return await super()._iter()
def db(self):return self.app.db
@property @property
def services(self):return self.app.services def base_url(self):
async def json_response(B,data,**A):return web.json_response(data,**A) return str(self.request.url.with_path("").with_query(""))
@property
def session(self):return self.request.session @property
async def render_template(A,template_name,context=None): def app(self):
C=context;B=template_name return self.request.app
if B.endswith('.md'):D=await A.request.app.render_template(B,A.request,C);E=await render_markdown(A.app,D.body.decode());return web.Response(body=E,content_type='text/html')
return await A.request.app.render_template(B,A.request,C) @property
def db(self):
return self.app.db
@property
def services(self):
return self.app.services
async def json_response(self, data, **kwargs):
return web.json_response(data, **kwargs)
@property
def session(self):
return self.request.session
async def render_template(self, template_name, context=None):
if template_name.endswith(".md"):
response = await self.request.app.render_template(
template_name, self.request, context
)
body = await render_markdown(self.app, response.body.decode())
return web.Response(body=body, content_type="text/html")
return await self.request.app.render_template(
template_name, self.request, context
)
class BaseFormView(BaseView): class BaseFormView(BaseView):
form=None
async def get(A):B=A.form(app=A.app);return await A.json_response(await B.to_json()) form = None
async def post(A):
E='action';C=A.form(app=A.app);D=await A.request.json();C.set_user_data(D['form']);B=await C.to_json() async def get(self):
if D.get(E)=='validate':0 form = self.form(app=self.app)
if D.get(E)=='submit'and B['is_valid']:B=await A.submit(C);return await A.json_response(B)
return await A.json_response(B) return await self.json_response(await form.to_json())
async def submit(A,model=None):0
async def post(self):
form = self.form(app=self.app)
post = await self.request.json()
form.set_user_data(post["form"])
result = await form.to_json()
if post.get("action") == "validate":
# Pass
pass
if post.get("action") == "submit" and result["is_valid"]:
result = await self.submit(form)
return await self.json_response(result)
return await self.json_response(result)
async def submit(self, model=None):
pass

View File

@ -1,5 +1,39 @@
# Written by retoor@molodetz.nl
# This source code defines two classes, `AboutHTMLView` and `AboutMDView`, both inheriting from `BaseView`. They asynchronously return rendered templates for HTML and Markdown respectively.
# External Import: `BaseView` from `snek.system.view`
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
from snek.system.view import BaseView from snek.system.view import BaseView
class AboutHTMLView(BaseView): class AboutHTMLView(BaseView):
async def get(A):return await A.render_template('about.html')
async def get(self):
return await self.render_template("about.html")
class AboutMDView(BaseView): class AboutMDView(BaseView):
async def get(A):return await A.render_template('about.md')
async def get(self):
return await self.render_template("about.md")

View File

@ -1,10 +1,44 @@
# Written by retoor@molodetz.nl
# This code defines a WebView class that inherits from BaseView and includes a method for rendering a web template, requiring login access for its usage.
# The code imports the BaseView class from the `snek.system.view` module.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import uuid import uuid
from aiohttp import web from aiohttp import web
from multiavatar import multiavatar from multiavatar import multiavatar
from snek.system.view import BaseView from snek.system.view import BaseView
class AvatarView(BaseView): class AvatarView(BaseView):
login_required=False login_required = False
async def get(C):
A=C.request.match_info.get('uid') async def get(self):
if A=='unique':A=str(uuid.uuid4()) uid = self.request.match_info.get("uid")
D=multiavatar.multiavatar(A,True,None);B=web.Response(text=D,content_type='image/svg+xml');B.headers['Cache-Control']=f"public, max-age={56154}";return B if uid == "unique":
uid = str(uuid.uuid4())
avatar = multiavatar.multiavatar(uid, True, None)
response = web.Response(text=avatar, content_type="image/svg+xml")
response.headers["Cache-Control"] = f"public, max-age={1337*42}"
return response

View File

@ -1,5 +1,37 @@
# Written by retoor@molodetz.nl
# This code defines two classes, DocsHTMLView and DocsMDView, which are intended to asynchronously render HTML and Markdown templates respectively. Both classes inherit from the BaseView class.
# Dependencies: BaseView is imported from the "snek.system.view" package.
# MIT License
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from snek.system.view import BaseView from snek.system.view import BaseView
class DocsHTMLView(BaseView): class DocsHTMLView(BaseView):
async def get(A):return await A.render_template('docs.html')
async def get(self):
return await self.render_template("docs.html")
class DocsMDView(BaseView): class DocsMDView(BaseView):
async def get(A):return await A.render_template('docs.md')
async def get(self):
return await self.render_template("docs.md")

View File

@ -1,99 +1,269 @@
_P='Path not found'
_O='application/octet-stream'
_N='items'
_M='size'
_L='mimetype'
_K='name'
_J='rel_path'
_I='dir'
_H='url'
_G=None
_F='path'
_E='status'
_D='file'
_C='uid'
_B='absolute_url'
_A='type'
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
import os,mimetypes
import os
import mimetypes
from aiohttp import web from aiohttp import web
from urllib.parse import unquote,quote from urllib.parse import unquote, quote
from datetime import datetime from datetime import datetime
'Run with: python server.py (Python\xa0\xa03.9)\nVisit http://localhost:8080 to try the demo.\n'
"""Run with: python server.py (Python  3.9)
Visit http://localhost:8080 to try the demo.
"""
from aiohttp import web from aiohttp import web
from pathlib import Path from pathlib import Path
import mimetypes,urllib.parse import mimetypes, urllib.parse
BASE_DIR=Path(__file__).parent.resolve()
ROOT_DIR=(BASE_DIR/'storage').resolve() # ---------- Configuration --------------------------------------------------
ASSETS_DIR=(BASE_DIR/'assets').resolve() BASE_DIR = Path(__file__).parent.resolve()
ROOT_DIR = (BASE_DIR / "storage").resolve() # files shown to the outside world
ASSETS_DIR = (BASE_DIR / "assets").resolve() # JS & demo HTML
ROOT_DIR.mkdir(exist_ok=True) ROOT_DIR.mkdir(exist_ok=True)
ASSETS_DIR.mkdir(exist_ok=True) ASSETS_DIR.mkdir(exist_ok=True)
def safe_resolve_path(rel):
'Return *absolute* path inside ROOT_DIR or raise FileNotFoundError.';A=(ROOT_DIR/rel.lstrip('/')).resolve() # ---------- Helpers --------------------------------------------------------
if A==ROOT_DIR or ROOT_DIR in A.parents:return A
raise FileNotFoundError('Unsafe path') def safe_resolve_path(rel: str) -> Path:
"""Return *absolute* path inside ROOT_DIR or raise FileNotFoundError."""
target = (ROOT_DIR / rel.lstrip("/")).resolve()
if target == ROOT_DIR or ROOT_DIR in target.parents:
return target
raise FileNotFoundError("Unsafe path")
# ---------- API view -------------------------------------------------------
class DriveView(BaseView): class DriveView(BaseView):
async def get(C): async def get(self):
H='limit';I='offset';D=C.request.query.get(_F,'');E=int(C.request.query.get(I,0));J=int(C.request.query.get(H,20));A=await C.services.user.get_home_folder(C.session.get(_C)) rel = self.request.query.get("path", "")
if D:A.joinpath(D) offset = int(self.request.query.get("offset", 0))
if not A.exists():return web.json_response({'error':'Not found'},status=404) limit = int(self.request.query.get("limit", 20))
if A.is_dir(): target = await self.services.user.get_home_folder(self.session.get("uid"))
F=[] if rel:
for B in sorted(A.iterdir(),key=lambda p:(p.is_file(),p.name.lower())):K=(Path(D)/B.name).as_posix();M=mimetypes.guess_type(B.name)[0]if B.is_file()else'inode/directory';G=C.request.url.with_path(f"/drive/{urllib.parse.quote(K)}")if B.is_file()else _G;F.append({_K:B.name,_A:'directory'if B.is_dir()else _D,_L:M,_M:B.stat().st_size if B.is_file()else _G,_F:K,_H:G}) target.joinpath(rel)
import json as L;N=len(F);O=F[E:E+J];return web.json_response({_N:L.loads(L.dumps(O,default=str)),'pagination':{I:E,H:J,'total':N}})
with open(A,'rb')as P:Q=P.read();return web.Response(body=Q,content_type=mimetypes.guess_type(A.name)[0]) if not target.exists():
G=C.request.url.with_path(f"/drive/{urllib.parse.quote(D)}");return web.json_response({_K:A.name,_A:_D,_L:mimetypes.guess_type(A.name)[0],_M:A.stat().st_size,_F:D,_H:str(G)}) return web.json_response({"error": "Not found"}, status=404)
# ---- Directory listing -------------------------------------------
if target.is_dir():
entries = []
# Directories first, then files both alphabetical (caseinsensitive)
for p in sorted(target.iterdir(), key=lambda p: (p.is_file(), p.name.lower())):
item_path = (Path(rel) / p.name).as_posix()
mime = mimetypes.guess_type(p.name)[0] if p.is_file() else "inode/directory"
url = (self.request.url.with_path(f"/drive/{urllib.parse.quote(item_path)}")
if p.is_file() else None)
entries.append({
"name": p.name,
"type": "directory" if p.is_dir() else "file",
"mimetype": mime,
"size": p.stat().st_size if p.is_file() else None,
"path": item_path,
"url": url,
})
import json
total = len(entries)
items = entries[offset:offset+limit]
return web.json_response({
"items": json.loads(json.dumps(items,default=str)),
"pagination": {"offset": offset, "limit": limit, "total": total}
})
with open(target, "rb") as f:
content = f.read()
return web.Response(body=content, content_type=mimetypes.guess_type(target.name)[0])
# ---- Single file metadata ----------------------------------------
url = self.request.url.with_path(f"/drive/{urllib.parse.quote(rel)}")
return web.json_response({
"name": target.name,
"type": "file",
"mimetype": mimetypes.guess_type(target.name)[0],
"size": target.stat().st_size,
"path": rel,
"url": str(url),
})
class DriveView222(BaseView): class DriveView222(BaseView):
PAGE_SIZE=20 PAGE_SIZE = 20
async def base_path(A):return await A.services.user.get_home_folder(A.session.get(_C))
async def get_full_path(C,rel_path): async def base_path(self):
A=await C.base_path();D=os.path.normpath(unquote(rel_path or''));B=os.path.abspath(os.path.join(A,D)) return await self.services.user.get_home_folder(self.session.get("uid"))
if not B.startswith(os.path.abspath(A)):raise web.HTTPForbidden(reason='Invalid path')
return B async def get_full_path(self, rel_path):
async def make_absolute_url(B,rel_path):A=rel_path;A=A.lstrip('/');C=str(B.request.url.with_path(f"/drive/{quote(A)}"));return C base_path = await self.base_path()
async def entry_details(E,dir_path,entry,parent_rel_path):A=entry;B=os.path.join(dir_path,A);C=os.stat(B);D=os.path.isdir(B);F=_G if D else mimetypes.guess_type(B)[0]or _O;G=C.st_size if not D else _G;H=datetime.fromtimestamp(C.st_ctime).isoformat();I=datetime.fromtimestamp(C.st_mtime).isoformat();J=os.path.join(parent_rel_path,A).replace('\\','/');return{_K:A,_A:_I if D else _D,_L:F,_M:G,'created_at':H,'updated_at':I,_B:await E.make_absolute_url(J)} safe_path = os.path.normpath(unquote(rel_path or ""))
async def get(A): full_path = os.path.abspath(os.path.join(base_path, safe_path))
F='page_size';G='page';C=A.request.match_info.get(_J,'');B=await A.get_full_path(C);H=int(A.request.query.get(G,1));D=int(A.request.query.get(F,A.PAGE_SIZE));I=await A.make_absolute_url(C) if not full_path.startswith(os.path.abspath(base_path)):
if not os.path.exists(B):raise web.HTTPNotFound(reason=_P) raise web.HTTPForbidden(reason="Invalid path")
if os.path.isdir(B):E=os.listdir(B);E.sort();J=(H-1)*D;K=J+D;L=E[J:K];M=[await A.entry_details(B,D,C)for D in L];return web.json_response({_F:C,_B:I,'entries':M,'total':len(E),G:H,F:D}) return full_path
else:
with open(B,'rb')as N:O=N.read() async def make_absolute_url(self, rel_path):
P=mimetypes.guess_type(B)[0]or _O;Q={'X-Absolute-Url':I};return web.Response(body=O,content_type=P,headers=Q) rel_path = rel_path.lstrip("/")
async def post(A): url = str(self.request.url.with_path(f"/drive/{quote(rel_path)}"))
C='created';D=A.request.match_info.get(_J,'');B=await A.get_full_path(D);E=await A.make_absolute_url(D) return url
if os.path.exists(B):raise web.HTTPConflict(reason='File or directory already exists')
F=await A.request.post() async def entry_details(self, dir_path, entry, parent_rel_path):
if F.get(_A)==_I:os.makedirs(B);return web.json_response({_E:C,_A:_I,_B:E}) entry_path = os.path.join(dir_path, entry)
else: stat = os.stat(entry_path)
G=F.get(_D) is_dir = os.path.isdir(entry_path)
if not G:raise web.HTTPBadRequest(reason='No file uploaded') mimetype = None if is_dir else (mimetypes.guess_type(entry_path)[0] or "application/octet-stream")
with open(B,'wb')as H:H.write(G.file.read()) size = stat.st_size if not is_dir else None
return web.json_response({_E:C,_A:_D,_B:E}) created_at = datetime.fromtimestamp(stat.st_ctime).isoformat()
async def put(A): updated_at = datetime.fromtimestamp(stat.st_mtime).isoformat()
C=A.request.match_info.get(_J,'');B=await A.get_full_path(C);D=await A.make_absolute_url(C) rel_entry_path = os.path.join(parent_rel_path, entry).replace("\\", "/")
if not os.path.exists(B):raise web.HTTPNotFound(reason='File not found') return {
if os.path.isdir(B):raise web.HTTPBadRequest(reason='Cannot overwrite directory') "name": entry,
E=await A.request.read() "type": "dir" if is_dir else "file",
with open(B,'wb')as F:F.write(E) "mimetype": mimetype,
return web.json_response({_E:'updated',_B:D}) "size": size,
async def delete(B): "created_at": created_at,
C='deleted';D=B.request.match_info.get(_J,'');A=await B.get_full_path(D);E=await B.make_absolute_url(D) "updated_at": updated_at,
if not os.path.exists(A):raise web.HTTPNotFound(reason=_P) "absolute_url": await self.make_absolute_url(rel_entry_path),
if os.path.isdir(A):os.rmdir(A);return web.json_response({_E:C,_A:_I,_B:E}) }
else:os.remove(A);return web.json_response({_E:C,_A:_D,_B:E})
async def get(self):
rel_path = self.request.match_info.get("rel_path", "")
full_path = await self.get_full_path(rel_path)
page = int(self.request.query.get("page", 1))
page_size = int(self.request.query.get("page_size", self.PAGE_SIZE))
abs_url = await self.make_absolute_url(rel_path)
if not os.path.exists(full_path):
raise web.HTTPNotFound(reason="Path not found")
if os.path.isdir(full_path):
entries = os.listdir(full_path)
entries.sort()
start = (page - 1) * page_size
end = start + page_size
paged_entries = entries[start:end]
details = [await self.entry_details(full_path, entry, rel_path) for entry in paged_entries]
return web.json_response({
"path": rel_path,
"absolute_url": abs_url,
"entries": details,
"total": len(entries),
"page": page,
"page_size": page_size,
})
else:
with open(full_path, "rb") as f:
content = f.read()
mimetype = mimetypes.guess_type(full_path)[0] or "application/octet-stream"
headers = {"X-Absolute-Url": abs_url}
return web.Response(body=content, content_type=mimetype, headers=headers)
async def post(self):
rel_path = self.request.match_info.get("rel_path", "")
full_path = await self.get_full_path(rel_path)
abs_url = await self.make_absolute_url(rel_path)
if os.path.exists(full_path):
raise web.HTTPConflict(reason="File or directory already exists")
data = await self.request.post()
if data.get("type") == "dir":
os.makedirs(full_path)
return web.json_response({"status": "created", "type": "dir", "absolute_url": abs_url})
else:
file_field = data.get("file")
if not file_field:
raise web.HTTPBadRequest(reason="No file uploaded")
with open(full_path, "wb") as f:
f.write(file_field.file.read())
return web.json_response({"status": "created", "type": "file", "absolute_url": abs_url})
async def put(self):
rel_path = self.request.match_info.get("rel_path", "")
full_path = await self.get_full_path(rel_path)
abs_url = await self.make_absolute_url(rel_path)
if not os.path.exists(full_path):
raise web.HTTPNotFound(reason="File not found")
if os.path.isdir(full_path):
raise web.HTTPBadRequest(reason="Cannot overwrite directory")
body = await self.request.read()
with open(full_path, "wb") as f:
f.write(body)
return web.json_response({"status": "updated", "absolute_url": abs_url})
async def delete(self):
rel_path = self.request.match_info.get("rel_path", "")
full_path = await self.get_full_path(rel_path)
abs_url = await self.make_absolute_url(rel_path)
if not os.path.exists(full_path):
raise web.HTTPNotFound(reason="Path not found")
if os.path.isdir(full_path):
os.rmdir(full_path)
return web.json_response({"status": "deleted", "type": "dir", "absolute_url": abs_url})
else:
os.remove(full_path)
return web.json_response({"status": "deleted", "type": "file", "absolute_url": abs_url})
class DriveViewi2(BaseView): class DriveViewi2(BaseView):
login_required=True
async def get(A): login_required = True
G='/drive.bin/';D=A.request.match_info.get('drive');H=A.request.query.get('before');E={}
if H:E['created_at__lt']=H async def get(self):
if D:
E['drive_uid']=D;F=await A.services.drive.get(uid=D);I=[] drive_uid = self.request.match_info.get("drive")
async for C in A.services.drive_item.find(**E):B=C.record;B[_H]=G+B[_C]+'.'+C.extension;I.append(B)
return web.json_response(I)
L=await A.services.user.get(uid=A.session.get(_C));J=[] before = self.request.query.get("before")
async for F in A.services.drive.get_by_user(L[_C]): filters = {}
B=F.record;B[_N]=[] if before:
async for C in F.items:K=C.record;K[_H]=G+K[_C]+'.'+C.extension;B[_N].append(C.record) filters["created_at__lt"] = before
J.append(B)
return web.json_response(J) if drive_uid:
filters['drive_uid'] = drive_uid
drive = await self.services.drive.get(uid=drive_uid)
drive_items = []
async for item in self.services.drive_item.find(**filters):
record = item.record
record["url"] = "/drive.bin/" + record["uid"] + "." + item.extension
drive_items.append(record)
return web.json_response(drive_items)
user = await self.services.user.get(uid=self.session.get("uid"))
drives = []
async for drive in self.services.drive.get_by_user(user["uid"]):
record = drive.record
record["items"] = []
async for item in drive.items:
drive_item_record = item.record
drive_item_record["url"] = (
"/drive.bin/" + drive_item_record["uid"] + "." + item.extension
)
record["items"].append(item.record)
drives.append(record)
return web.json_response(drives)

View File

@ -1,6 +1,23 @@
# Written by retoor@molodetz.nl
# This code defines an asynchronous IndexView class inheriting from BaseView with a method to render an HTML template.
# External imports: BaseView from snek.system.view
# MIT License
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
class IndexView(BaseView): class IndexView(BaseView):
async def get(A): async def get(self):
if A.session.get('uid'):return web.HTTPFound('/web.html') if self.session.get("uid"):
return await A.render_template('index.html') return web.HTTPFound("/web.html")
return await self.render_template("index.html")

View File

@ -1,15 +1,44 @@
_B='/web.html' # Written by retoor@molodetz.nl
_A='logged_in'
# This source code defines a LoginView class that inherits from BaseFormView and handles user authentication. It checks if a user is logged in, provides a JSON response or renders a login HTML template as needed, and processes form submissions to authenticate users.
# The code imports the LoginForm from snek.form.login and BaseFormView from snek.system.view, both of which are likely custom modules in the system, as well as web from aiohttp for handling HTTP responses.
# MIT License
from aiohttp import web from aiohttp import web
from snek.form.login import LoginForm from snek.form.login import LoginForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class LoginView(BaseFormView): class LoginView(BaseFormView):
form=LoginForm;login_required=False form = LoginForm
async def get(A):
if A.session.get(_A):return web.HTTPFound(_B) login_required = False
if A.request.path.endswith('.json'):return await super().get()
return await A.render_template('login.html',{'form':await A.form(app=A.app).to_json()}) async def get(self):
async def submit(B,form): if self.session.get("logged_in"):
D='color';E='uid';C='username' return web.HTTPFound("/web.html")
if await form.is_valid:A=await B.services.user.get(username=form[C],deleted_at=None);await B.services.user.save(A);B.session.update({_A:True,C:A[C],E:A[E],D:A[D]});return{'redirect_url':_B} if self.request.path.endswith(".json"):
return{'is_valid':False} return await super().get()
return await self.render_template(
"login.html", {"form": await self.form(app=self.app).to_json()}
)
async def submit(self, form):
if await form.is_valid:
user = await self.services.user.get(
username=form["username"], deleted_at=None
)
await self.services.user.save(user)
self.session.update(
{
"logged_in": True,
"username": user["username"],
"uid": user["uid"],
"color": user["color"],
}
)
return {"redirect_url": "/web.html"}
return {"is_valid": False}

View File

@ -1,8 +1,23 @@
# Written by retoor@molodetz.nl
# This code defines an asynchronous view for handling a login form. It checks if the form is valid, sets session variables for a logged-in user, and provides a redirect URL if successful.
# Imports: LoginForm from snek.form.login and BaseFormView from snek.system.view
# MIT License
from snek.form.login import LoginForm from snek.form.login import LoginForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class LoginFormView(BaseFormView): class LoginFormView(BaseFormView):
form=LoginForm form = LoginForm
async def submit(A,form):
B=form async def submit(self, form):
if await B.is_valid():A.session['logged_in']=True;A.session['username']=B.username.value;A.session['uid']=B.uid.value;return{'redirect_url':'/web.html'} if await form.is_valid():
return{'is_valid':False} self.session["logged_in"] = True
self.session["username"] = form.username.value
self.session["uid"] = form.uid.value
return {"redirect_url": "/web.html"}
return {"is_valid": False}

View File

@ -1,14 +1,56 @@
_B='username' # Written by retoor@molodetz.nl
_A='logged_in'
# This code provides a view for logging out users. It handles GET and POST requests, deletes session information, and redirects the user after logging out.
# This code imports 'web' from the 'aiohttp' library to handle HTTP operations and imports 'BaseView' from 'snek.system.view' to extend a base class for creating views.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
class LogoutView(BaseView): class LogoutView(BaseView):
redirect_url='/';login_required=True redirect_url = "/"
async def get(A): login_required = True
try:del A.session[_A];del A.session['uid'];del A.session[_B]
except KeyError:pass async def get(self):
return web.HTTPFound(A.redirect_url) try:
async def post(A): del self.session["logged_in"]
try:del A.session[_A];del A.session['uid'];del A.session[_B] del self.session["uid"]
except KeyError:pass del self.session["username"]
return await A.json_response({'redirect_url':A.redirect_url}) except KeyError:
pass
return web.HTTPFound(self.redirect_url)
async def post(self):
try:
del self.session["logged_in"]
del self.session["uid"]
del self.session["username"]
except KeyError:
pass
return await self.json_response({"redirect_url": self.redirect_url})

View File

@ -1,12 +1,41 @@
_B='/web.html' # Written by retoor@molodetz.nl
_A='logged_in'
# This module defines a web view for user registration. It handles GET requests and form submissions for the registration process.
# The code makes use of 'RegisterForm' from 'snek.form.register' for handling registration forms and 'BaseFormView' from 'snek.system.view' for basic view functionalities.
# MIT License
from aiohttp import web from aiohttp import web
from snek.form.register import RegisterForm from snek.form.register import RegisterForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class RegisterView(BaseFormView): class RegisterView(BaseFormView):
form=RegisterForm;login_required=False form = RegisterForm
async def get(A):
if A.session.get(_A):return web.HTTPFound(_B) login_required = False
if A.request.path.endswith('.json'):return await super().get()
return await A.render_template('register.html',{'form':await A.form(app=A.app).to_json()}) async def get(self):
async def submit(C,form):D='color';E='username';F='uid';A=form;B=await C.app.services.user.register(A.email.value,A.username.value,A.password.value);C.request.session.update({F:B[F],E:B[E],_A:True,D:B[D]});return{'redirect_url':_B} if self.session.get("logged_in"):
return web.HTTPFound("/web.html")
if self.request.path.endswith(".json"):
return await super().get()
return await self.render_template(
"register.html", {"form": await self.form(app=self.app).to_json()}
)
async def submit(self, form):
result = await self.app.services.user.register(
form.email.value, form.username.value, form.password.value
)
self.request.session.update(
{
"uid": result["uid"],
"username": result["username"],
"logged_in": True,
"color": result["color"],
}
)
return {"redirect_url": "/web.html"}

View File

@ -1,5 +1,47 @@
# Written by retoor@molodetz.nl
# This code defines a `RegisterFormView` class that handles the user registration process by using a form object, a view parent class, and asynchronously submitting the form data to register a user. It then stores the user's session details and provides a redirect URL to a specific page.
# Imports used but not part of the language:
# snek.form.register.RegisterForm, snek.system.view.BaseFormView
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from snek.form.register import RegisterForm from snek.form.register import RegisterForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class RegisterFormView(BaseFormView): class RegisterFormView(BaseFormView):
form=RegisterForm form = RegisterForm
async def submit(C,form):D='color';E='username';F='uid';A=form;B=await C.app.services.user.register(A.email.value,A.username.value,A.password.value);C.request.session.update({F:B[F],E:B[E],'logged_in':True,D:B[D]});return{'redirect_url':'/web.html'}
async def submit(self, form):
result = await self.app.services.user.register(
form.email.value, form.username.value, form.password.value
)
self.request.session.update(
{
"uid": result["uid"],
"username": result["username"],
"logged_in": True,
"color": result["color"],
}
)
return {"redirect_url": "/web.html"}

View File

@ -1,105 +1,283 @@
_M='noresponse' # Written by retoor@molodetz.nl
_L='deleted_at'
_K='Not allowed' # This source code implements a WebSocket-based RPC (Remote Procedure Call) view that uses asynchronous methods to facilitate real-time communication and services for an authenticated user session in a web application. The class handles WebSocket events, user authentication, and various RPC interactions such as login, message retrieval, and more.
_J='password'
_I='logged_in' # External imports are used from the aiohttp library for the WebSocket response handling and the snek.system view for the BaseView class.
_H='channel_uid'
_G='last_ping' # MIT License: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions.
_F='nick'
_E=None
_D=True import json
_C=False import traceback
_B='username'
_A='uid'
import json,traceback
from aiohttp import web from aiohttp import web
from snek.system.model import now from snek.system.model import now
from snek.system.profiler import Profiler from snek.system.profiler import Profiler
from snek.system.view import BaseView from snek.system.view import BaseView
class RPCView(BaseView): class RPCView(BaseView):
class RPCApi:
def __init__(A,view,ws):A.view=view;A.app=A.view.app;A.services=A.app.services;A.ws=ws class RPCApi:
@property def __init__(self, view, ws):
def user_uid(self):return self.view.session.get(_A) self.view = view
@property self.app = self.view.app
def request(self):return self.view.request self.services = self.app.services
def _require_login(A): self.ws = ws
if not A.is_logged_in:raise Exception('Not logged in')
@property @property
def is_logged_in(self):return self.view.session.get(_I,_C) def user_uid(self):
async def mark_as_read(A,channel_uid):A._require_login();await A.services.channel_member.mark_as_read(channel_uid,A.user_uid);return _D return self.view.session.get("uid")
async def login(A,username,password):
D=username;E=await A.services.user.validate_login(D,password) @property
if not E:raise Exception('Invalid username or password') def request(self):
B=await A.services.user.get(username=D);A.view.session[_A]=B[_A];A.view.session[_I]=_D;A.view.session[_B]=B[_B];A.view.session['user_nick']=B[_F];C=B.record;del C[_J];del C[_L];await A.services.socket.add(A.ws,A.view.request.session.get(_A)) return self.view.request
async for F in A.services.channel_member.find(user_uid=A.view.request.session.get(_A),deleted_at=_E,is_banned=_C):await A.services.socket.subscribe(A.ws,F[_H],A.view.request.session.get(_A))
return C def _require_login(self):
async def search_user(A,query):A._require_login();return[A[_B]for A in await A.services.user.search(query)] if not self.is_logged_in:
async def get_user(C,user_uid): raise Exception("Not logged in")
A=user_uid;C._require_login()
if not A:A=C.user_uid @property
D=await C.services.user.get(uid=A);B=D.record;del B[_J];del B[_L] def is_logged_in(self):
if A!=D[_A]:del B['email'] return self.view.session.get("logged_in", False)
return B
async def get_messages(A,channel_uid,offset=0,timestamp=_E): async def mark_as_read(self, channel_uid):
A._require_login();B=[] self._require_login()
for C in await A.services.channel_message.offset(channel_uid,offset or 0,timestamp or _E):D=await A.services.channel_message.to_extended_dict(C);B.append(D) await self.services.channel_member.mark_as_read(channel_uid, self.user_uid)
return B return True
async def get_channels(B):
D='is_read_only';E='is_moderator';F='tag';G='color';C='new_count';B._require_login();H=[] async def login(self, username, password):
async for A in B.services.channel_member.find(user_uid=B.user_uid,is_banned=_C): success = await self.services.user.validate_login(username, password)
I=await B.services.channel.get(uid=A[_H]);J=await I.get_last_message();K=_E if not success:
if J:L=await J.get_user();K=L[G] raise Exception("Invalid username or password")
H.append({'name':A['label'],_A:A[_H],F:I[F],C:A[C],E:A[E],D:A[D],C:A[C],G:K}) user = await self.services.user.get(username=username)
return H self.view.session["uid"] = user["uid"]
async def send_message(A,channel_uid,message):A._require_login();await A.services.chat.send(A.user_uid,channel_uid,message);return _D self.view.session["logged_in"] = True
async def echo(A,*B):A._require_login();return B self.view.session["username"] = user["username"]
async def query(B,*C): self.view.session["user_nick"] = user["nick"]
B._require_login();E=C[0];D=E.lower() record = user.record
if any(A in D for A in['drop','alter','update','delete','replace','insert','truncate'])and'select'not in D:raise Exception(_K) del record["password"]
F=[dict(A)async for A in B.services.channel.query(C[0])] del record["deleted_at"]
for A in F: await self.services.socket.add(
try:del A['email'] self.ws, self.view.request.session.get("uid")
except KeyError:pass )
try:del A[_J] async for subscription in self.services.channel_member.find(
except KeyError:pass user_uid=self.view.request.session.get("uid"),
try:del A['message'] deleted_at=None,
except:pass is_banned=False,
try:del A['html'] ):
except:pass await self.services.socket.subscribe(
return[dict(A)async for A in B.services.channel.query(C[0])] self.ws,
async def __call__(A,data): subscription["channel_uid"],
I='success';E='data';F=data;B='callId' self.view.request.session.get("uid"),
try: )
G=F.get(B);C=F.get('method') return record
if C.startswith('_'):raise Exception(_K)
L=F.get('args')or[] async def search_user(self, query):
if hasattr(super(),C)or not hasattr(A,C):return await A._send_json({B:G,E:_K}) self._require_login()
J=getattr(A,C.replace('.','_'),_E) return [user["username"] for user in await self.services.user.search(query)]
if not J:raise Exception('Method not found')
K=_D async def get_user(self, user_uid):
try:H=await J(*L) self._require_login()
except Exception as D:H={'exception':str(D),'traceback':traceback.format_exc()};K=_C if not user_uid:
if H!=_M:await A._send_json({B:G,I:K,E:H}) user_uid = self.user_uid
except Exception as D:print(str(D),flush=_D);await A._send_json({B:G,I:_C,E:str(D)}) user = await self.services.user.get(uid=user_uid)
async def _send_json(A,obj):await A.ws.send_str(json.dumps(obj,default=str)) record = user.record
async def get_online_users(A,channel_uid):A._require_login();return[{_A:A[_A],_B:A[_B],_F:A[_F],_G:A[_G]}async for A in A.services.channel.get_online_users(channel_uid)] del record["password"]
async def echo(A,obj):await A.ws.send_json(obj);return _M del record["deleted_at"]
async def get_users(A,channel_uid):A._require_login();return[{_A:A[_A],_B:A[_B],_F:A[_F],_G:A[_G]}async for A in A.services.channel.get_users(channel_uid)] if user_uid != user["uid"]:
async def ping(A,callId,*C): del record["email"]
if A.user_uid:B=await A.services.user.get(uid=A.user_uid);B[_G]=now();await A.services.user.save(B) return record
return{'pong':C}
async def get(A): async def get_messages(self, channel_uid, offset=0, timestamp=None):
B=web.WebSocketResponse();await B.prepare(A.request) self._require_login()
if A.request.session.get(_I): messages = []
await A.services.socket.add(B,A.request.session.get(_A)) for message in await self.services.channel_message.offset(
async for D in A.services.channel_member.find(user_uid=A.request.session.get(_A),deleted_at=_E,is_banned=_C):await A.services.socket.subscribe(B,D[_H],A.request.session.get(_A)) channel_uid, offset or 0, timestamp or None
E=RPCView.RPCApi(A,B) ):
async for C in B: extended_dict = await self.services.channel_message.to_extended_dict(
if C.type==web.WSMsgType.TEXT: message
try: )
async with Profiler():await E(C.json()) messages.append(extended_dict)
except Exception as F:print('Deleting socket',F,flush=_D);await A.services.socket.delete(B);break return messages
elif C.type==web.WSMsgType.ERROR:0
elif C.type==web.WSMsgType.CLOSE:0 async def get_channels(self):
return B self._require_login()
channels = []
async for subscription in self.services.channel_member.find(
user_uid=self.user_uid, is_banned=False
):
channel = await self.services.channel.get(
uid=subscription["channel_uid"]
)
last_message = await channel.get_last_message()
color = None
if last_message:
last_message_user = await last_message.get_user()
color = last_message_user["color"]
channels.append(
{
"name": subscription["label"],
"uid": subscription["channel_uid"],
"tag": channel["tag"],
"new_count": subscription["new_count"],
"is_moderator": subscription["is_moderator"],
"is_read_only": subscription["is_read_only"],
"new_count": subscription["new_count"],
"color": color,
}
)
return channels
async def send_message(self, channel_uid, message):
self._require_login()
await self.services.chat.send(self.user_uid, channel_uid, message)
return True
async def echo(self, *args):
self._require_login()
return args
async def query(self, *args):
self._require_login()
query = args[0]
lowercase = query.lower()
if (
any(
keyword in lowercase
for keyword in [
"drop",
"alter",
"update",
"delete",
"replace",
"insert",
"truncate",
]
)
and "select" not in lowercase
):
raise Exception("Not allowed")
records = [
dict(record) async for record in self.services.channel.query(args[0])
]
for record in records:
try:
del record["email"]
except KeyError:
pass
try:
del record["password"]
except KeyError:
pass
try:
del record["message"]
except:
pass
try:
del record["html"]
except:
pass
return [
dict(record) async for record in self.services.channel.query(args[0])
]
async def __call__(self, data):
try:
call_id = data.get("callId")
method_name = data.get("method")
if method_name.startswith("_"):
raise Exception("Not allowed")
args = data.get("args") or []
if hasattr(super(), method_name) or not hasattr(self, method_name):
return await self._send_json(
{"callId": call_id, "data": "Not allowed"}
)
method = getattr(self, method_name.replace(".", "_"), None)
if not method:
raise Exception("Method not found")
success = True
try:
result = await method(*args)
except Exception as ex:
result = {"exception": str(ex), "traceback": traceback.format_exc()}
success = False
if result != "noresponse":
await self._send_json(
{"callId": call_id, "success": success, "data": result}
)
except Exception as ex:
print(str(ex), flush=True)
await self._send_json(
{"callId": call_id, "success": False, "data": str(ex)}
)
async def _send_json(self, obj):
await self.ws.send_str(json.dumps(obj, default=str))
async def get_online_users(self, channel_uid):
self._require_login()
return [
{
"uid": record["uid"],
"username": record["username"],
"nick": record["nick"],
"last_ping": record["last_ping"],
}
async for record in self.services.channel.get_online_users(channel_uid)
]
async def echo(self, obj):
await self.ws.send_json(obj)
return "noresponse"
async def get_users(self, channel_uid):
self._require_login()
return [
{
"uid": record["uid"],
"username": record["username"],
"nick": record["nick"],
"last_ping": record["last_ping"],
}
async for record in self.services.channel.get_users(channel_uid)
]
async def ping(self, callId, *args):
if self.user_uid:
user = await self.services.user.get(uid=self.user_uid)
user["last_ping"] = now()
await self.services.user.save(user)
return {"pong": args}
async def get(self):
ws = web.WebSocketResponse()
await ws.prepare(self.request)
if self.request.session.get("logged_in"):
await self.services.socket.add(ws, self.request.session.get("uid"))
async for subscription in self.services.channel_member.find(
user_uid=self.request.session.get("uid"),
deleted_at=None,
is_banned=False,
):
await self.services.socket.subscribe(
ws, subscription["channel_uid"], self.request.session.get("uid")
)
rpc = RPCView.RPCApi(self, ws)
async for msg in ws:
if msg.type == web.WSMsgType.TEXT:
try:
async with Profiler():
await rpc(msg.json())
except Exception as ex:
print("Deleting socket", ex, flush=True)
await self.services.socket.delete(ws)
break
elif msg.type == web.WSMsgType.ERROR:
pass
elif msg.type == web.WSMsgType.CLOSE:
pass
return ws

View File

@ -1,12 +1,56 @@
# Written by retoor@molodetz.nl
# This code implements a web view feature for searching users. It handles GET requests to retrieve user data based on a search query and also processes form submissions.
# Imports used that are not part of the Python language:
# - aiohttp: Used to handle asynchronous web server functionalities.
# - snek.form.search_user: Contains the definition for SearchUserForm, a form specific to searching users.
# - snek.system.view: Provides the BaseFormView class to facilitate form-related operations in a web context.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from snek.form.search_user import SearchUserForm from snek.form.search_user import SearchUserForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class SearchUserView(BaseFormView): class SearchUserView(BaseFormView):
form=SearchUserForm;login_required=True form = SearchUserForm
async def get(A): login_required = True
C='query';D=[];B=A.request.query.get(C)
if B:D=[A.record for A in await A.app.services.user.search(B)] async def get(self):
if A.request.path.endswith('.json'):return await super().get() users = []
E=await A.app.services.user.get(uid=A.session.get('uid'));return await A.render_template('search_user.html',{'users':D,C:B or'','current_user':E}) query = self.request.query.get("query")
async def submit(A,form): if query:
if await form.is_valid:return{'redirect_url':'/search-user.html?query='+form['username']} users = [user.record for user in await self.app.services.user.search(query)]
return{'is_valid':False}
if self.request.path.endswith(".json"):
return await super().get()
current_user = await self.app.services.user.get(uid=self.session.get("uid"))
return await self.render_template(
"search_user.html",
{"users": users, "query": query or "", "current_user": current_user},
)
async def submit(self, form):
if await form.is_valid:
return {"redirect_url": "/search-user.html?query=" + form["username"]}
return {"is_valid": False}

View File

@ -1,4 +1,9 @@
from snek.system.view import BaseView from snek.system.view import BaseView
class SettingsIndexView(BaseView): class SettingsIndexView(BaseView):
login_required=True
async def get(A):return await A.render_template('settings/index.html') login_required = True
async def get(self):
return await self.render_template("settings/index.html")

View File

@ -1,13 +1,38 @@
_C='profile'
_B='uid'
_A='nick'
from aiohttp import web from aiohttp import web
from snek.form.settings.profile import SettingsProfileForm from snek.form.settings.profile import SettingsProfileForm
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
class SettingsProfileView(BaseFormView): class SettingsProfileView(BaseFormView):
form=SettingsProfileForm;login_required=True form = SettingsProfileForm
async def get(A):
C='user';B=A.form(app=A.app) login_required = True
if A.request.path.endswith('.json'):B[_A]=A.request[C][_A];return web.json_response(await B.to_json())
D=await A.services.user_property.get(A.session.get(_B),_C);E=await A.services.user.get(uid=A.session.get(_B));return await A.render_template('settings/profile.html',{'form':await B.to_json(),C:E,_C:D or''}) async def get(self):
async def post(A):C=await A.request.post();B=await A.services.user.get(uid=A.session.get(_B));B[_A]=C[_A];await A.services.user.save(B);await A.services.user_property.set(B[_B],_C,C[_C]);return web.HTTPFound('/settings/profile.html') form = self.form(app=self.app)
if self.request.path.endswith(".json"):
form["nick"] = self.request["user"]["nick"]
return web.json_response(await form.to_json())
profile = await self.services.user_property.get(
self.session.get("uid"), "profile"
)
user = await self.services.user.get(uid=self.session.get("uid"))
return await self.render_template(
"settings/profile.html",
{"form": await form.to_json(), "user": user, "profile": profile or ""},
)
async def post(self):
data = await self.request.post()
user = await self.services.user.get(uid=self.session.get("uid"))
user["nick"] = data["nick"]
await self.services.user.save(user)
await self.services.user_property.set(user["uid"], "profile", data["profile"])
return web.HTTPFound("/settings/profile.html")

View File

@ -1,37 +1,86 @@
_F='repository'
_E='/settings/repositories/index.html'
_D='is_private'
_C=True
_B='name'
_A='uid'
import asyncio import asyncio
from aiohttp import web from aiohttp import web
from snek.system.view import BaseFormView from snek.system.view import BaseFormView
import pathlib import pathlib
class RepositoriesIndexView(BaseFormView): class RepositoriesIndexView(BaseFormView):
login_required=_C
async def get(A): login_required = True
C=A.session.get(_A);B=[]
async for D in A.services.repository.find(user_uid=C):B.append(D.record) async def get(self):
E=await A.services.user.get(uid=A.session.get(_A));return await A.render_template('settings/repositories/index.html',{'repositories':B,'user':E})
user_uid = self.session.get("uid")
repositories = []
async for repository in self.services.repository.find(user_uid=user_uid):
repositories.append(repository.record)
user = await self.services.user.get(uid=self.session.get("uid"))
return await self.render_template("settings/repositories/index.html", {"repositories": repositories, "user": user})
class RepositoriesCreateView(BaseFormView): class RepositoriesCreateView(BaseFormView):
login_required=_C
async def get(A):return await A.render_template('settings/repositories/create.html') login_required = True
async def post(A):B=await A.request.post();C=await A.services.repository.create(user_uid=A.session.get(_A),name=B[_B],is_private=int(B.get(_D,0)));return web.HTTPFound(_E)
async def get(self):
return await self.render_template("settings/repositories/create.html")
async def post(self):
data = await self.request.post()
repository = await self.services.repository.create(user_uid=self.session.get("uid"), name=data['name'], is_private=int(data.get('is_private',0)))
return web.HTTPFound("/settings/repositories/index.html")
class RepositoriesUpdateView(BaseFormView): class RepositoriesUpdateView(BaseFormView):
login_required=_C
async def get(A): login_required = True
B=await A.services.repository.get(user_uid=A.session.get(_A),name=A.request.match_info[_B])
if not B:return web.HTTPNotFound() async def get(self):
return await A.render_template('settings/repositories/update.html',{_F:B.record})
async def post(A):C=await A.request.post();B=await A.services.repository.get(user_uid=A.session.get(_A),name=A.request.match_info[_B]);B[_D]=int(C.get(_D,0));await A.services.repository.save(B);return web.HTTPFound(_E) repository = await self.services.repository.get(
user_uid=self.session.get("uid"), name=self.request.match_info["name"]
)
if not repository:
return web.HTTPNotFound()
return await self.render_template("settings/repositories/update.html", {"repository": repository.record})
async def post(self):
data = await self.request.post()
repository = await self.services.repository.get(
user_uid=self.session.get("uid"), name=self.request.match_info["name"]
)
repository['is_private'] = int(data.get('is_private',0))
await self.services.repository.save(repository)
return web.HTTPFound("/settings/repositories/index.html")
class RepositoriesDeleteView(BaseFormView): class RepositoriesDeleteView(BaseFormView):
login_required=_C
async def get(A): login_required = True
B=await A.services.repository.get(user_uid=A.session.get(_A),name=A.request.match_info[_B])
if not B:return web.HTTPNotFound() async def get(self):
return await A.render_template('settings/repositories/delete.html',{_F:B.record})
async def post(A): repository = await self.services.repository.get(
B=A.session.get(_A);C=A.request.match_info[_B];D=await A.services.repository.get(user_uid=B,name=C) user_uid=self.session.get("uid"), name=self.request.match_info["name"]
if not D:return web.HTTPNotFound() )
await A.services.repository.delete(user_uid=B,name=C);return web.HTTPFound(_E) if not repository:
return web.HTTPNotFound()
return await self.render_template("settings/repositories/delete.html", {"repository": repository.record})
async def post(self):
user_uid = self.session.get("uid")
name = self.request.match_info["name"]
repository = await self.services.repository.get(
user_uid=user_uid, name=name
)
if not repository:
return web.HTTPNotFound()
await self.services.repository.delete(user_uid=user_uid, name=name)
return web.HTTPFound("/settings/repositories/index.html")

View File

@ -1,5 +1,13 @@
import json import json
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
class StatsView(BaseView): class StatsView(BaseView):
async def get(B):A=await B.app.cache.get_stats();A=json.dumps({'total':len(A),'stats':A},default=str,indent=1);return web.Response(text=A,content_type='application/json')
async def get(self):
data = await self.app.cache.get_stats()
data = json.dumps({"total": len(data), "stats": data}, default=str, indent=1)
return web.Response(text=data, content_type="application/json")

View File

@ -1,10 +1,73 @@
# Written by retoor@molodetz.nl
# This code defines an async class-based view called StatusView for handling HTTP GET requests. It fetches user details and their associated channel memberships from a database and returns a JSON response with user information if the user is logged in.
# The code uses an imported module `BaseView`. There are dependencies on the `snek.system.view` module which provides the BaseView class.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF
# CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
from snek.system.view import BaseView from snek.system.view import BaseView
class StatusView(BaseView): class StatusView(BaseView):
async def get(C): async def get(self):
G='color';H='nick';I='email';J='username';K='is_banned';L='is_muted';M='is_read_only';N='is_moderator';O='user_uid';P='description';E='channel_uid';D='uid';Q=[];A={};F=C.session.get(D) memberships = []
if F: user = {}
A=await C.app.services.user.get(uid=F)
if not A:return await C.json_response({'error':'User not found'},status=404) user_id = self.session.get("uid")
async for B in C.app.services.channel_member.find(user_uid=F,deleted_at=None,is_banned=False):R=await C.app.services.channel.get(uid=B[E]);Q.append({'name':R['label'],P:B[P],O:B[O],N:B[N],M:B[M],L:B[L],K:B[K],E:B[E],D:B[D]}) if user_id:
A={J:A[J],I:A[I],H:A[H],D:A[D],G:A[G],'memberships':Q} user = await self.app.services.user.get(uid=user_id)
return await C.json_response({'user':A,'cache':await C.app.cache.create_cache_key(C.app.cache.cache,None)}) if not user:
return await self.json_response({"error": "User not found"}, status=404)
async for model in self.app.services.channel_member.find(
user_uid=user_id, deleted_at=None, is_banned=False
):
channel = await self.app.services.channel.get(uid=model["channel_uid"])
memberships.append(
{
"name": channel["label"],
"description": model["description"],
"user_uid": model["user_uid"],
"is_moderator": model["is_moderator"],
"is_read_only": model["is_read_only"],
"is_muted": model["is_muted"],
"is_banned": model["is_banned"],
"channel_uid": model["channel_uid"],
"uid": model["uid"],
}
)
user = {
"username": user["username"],
"email": user["email"],
"nick": user["nick"],
"uid": user["uid"],
"color": user["color"],
"memberships": memberships,
}
return await self.json_response(
{
"user": user,
"cache": await self.app.cache.create_cache_key(
self.app.cache.cache, None
),
}
)

View File

@ -1,23 +1,54 @@
_B=True import pathlib
_A='uid'
import pathlib,aiohttp import aiohttp
from snek.system.terminal import TerminalSession from snek.system.terminal import TerminalSession
from snek.system.view import BaseView from snek.system.view import BaseView
class TerminalSocketView(BaseView): class TerminalSocketView(BaseView):
login_required=_B;user_sessions={}
async def prepare_drive(C): login_required = True
D=await C.services.user.get(uid=C.session.get(_A));A=pathlib.Path('drive').joinpath(D[_A]);A.mkdir(parents=_B,exist_ok=_B);E=pathlib.Path('terminal')
for B in E.iterdir(): user_sessions = {}
F=A.joinpath(B.name)
if not B.is_dir():F.write_bytes(B.read_bytes()) async def prepare_drive(self):
return A user = await self.services.user.get(uid=self.session.get("uid"))
async def get(A): root = pathlib.Path("drive").joinpath(user["uid"])
B=aiohttp.web.WebSocketResponse();await B.prepare(A.request);D=await A.services.user.get(uid=A.session.get(_A));F=await A.prepare_drive();G=f"docker run -v ./{F}/:/root -it --memory 512M --cpus=0.5 -w /root snek_ubuntu /bin/bash";C=A.user_sessions.get(D[_A]) root.mkdir(parents=True, exist_ok=True)
if not C:A.user_sessions[D[_A]]=TerminalSession(command=G) terminal_folder = pathlib.Path("terminal")
C=A.user_sessions[D[_A]];await C.add_websocket(B) for path in terminal_folder.iterdir():
async for E in B: destination_path = root.joinpath(path.name)
if E.type==aiohttp.WSMsgType.BINARY:await C.write_input(E.data.decode()) if not path.is_dir():
return B destination_path.write_bytes(path.read_bytes())
return root
async def get(self):
ws = aiohttp.web.WebSocketResponse()
await ws.prepare(self.request)
user = await self.services.user.get(uid=self.session.get("uid"))
root = await self.prepare_drive()
command = f"docker run -v ./{root}/:/root -it --memory 512M --cpus=0.5 -w /root snek_ubuntu /bin/bash"
session = self.user_sessions.get(user["uid"])
if not session:
self.user_sessions[user["uid"]] = TerminalSession(command=command)
session = self.user_sessions[user["uid"]]
await session.add_websocket(ws)
# asyncio.create_task(session.read_output(ws))
async for msg in ws:
if msg.type == aiohttp.WSMsgType.BINARY:
await session.write_input(msg.data.decode())
return ws
class TerminalView(BaseView): class TerminalView(BaseView):
login_required=_B
async def get(A):return await A.request.app.render_template('terminal.html',A.request) login_required = True
async def get(self):
return await self.request.app.render_template("terminal.html", self.request)

View File

@ -1,11 +1,37 @@
from snek.system.view import BaseView from snek.system.view import BaseView
class ThreadsView(BaseView): class ThreadsView(BaseView):
async def get(B):
I='color';J='user_uid';K='name_color';L='new_count';F='uid';C='last_message_on';G=[];M=await B.services.user.get(uid=B.session.get(F)) async def get(self):
async for H in M.get_channel_members(): threads = []
A={};D=await B.services.channel.get(uid=H['channel_uid']);E=await D.get_last_message() user = await self.services.user.get(uid=self.session.get("uid"))
if not E:continue async for channel_member in user.get_channel_members():
A[F]=D[F];A['name']=await H.get_name();A[L]=H[L];A[C]=D[C];A['created_at']=A[C];A[K]='#f05a28';A['last_message_text']=E['message'];A['last_message_user_uid']=E[J];N=await B.app.services.user.get(uid=E[J]) thread = {}
if D['tag']=='dm':A[K]=N[I] channel = await self.services.channel.get(uid=channel_member["channel_uid"])
A['last_message_user_color']=N[I];G.append(A) last_message = await channel.get_last_message()
G.sort(key=lambda x:x[C]or'',reverse=True);return await B.render_template('threads.html',{'threads':G,'user':M}) if not last_message:
continue
thread["uid"] = channel["uid"]
thread["name"] = await channel_member.get_name()
thread["new_count"] = channel_member["new_count"]
thread["last_message_on"] = channel["last_message_on"]
thread["created_at"] = thread["last_message_on"]
thread["name_color"] = "#f05a28"
thread["last_message_text"] = last_message["message"]
thread["last_message_user_uid"] = last_message["user_uid"]
user_last_message = await self.app.services.user.get(
uid=last_message["user_uid"]
)
if channel["tag"] == "dm":
thread["name_color"] = user_last_message["color"]
thread["last_message_user_color"] = user_last_message["color"]
threads.append(thread)
threads.sort(key=lambda x: x["last_message_on"] or "", reverse=True)
return await self.render_template(
"threads.html", {"threads": threads, "user": user}
)

View File

@ -1,19 +1,111 @@
_A='uid' # Written by retoor@molodetz.nl
import pathlib,uuid,aiofiles
# This code defines a web application for uploading and retrieving files.
# It includes functionality to upload files through a POST request and retrieve them via a GET request.
# The code uses the following non-standard imports:
# - snek.system.view.BaseView: For extending view functionalities.
# - aiofiles: For asynchronous file operations.
# - aiohttp: For managing web server requests and responses.
# MIT License: This software is licensed under the MIT License, a permissive free software license.
import pathlib
import uuid
import aiofiles
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
class UploadView(BaseView): class UploadView(BaseView):
async def get(B):D=B.request.match_info.get(_A);C=await B.services.drive_item.get(D);A=web.FileResponse(C['path']);A.headers['Cache-Control']=f"public, max-age={561540}";A.headers['Content-Disposition']=f'attachment; filename="{C["name"]}"';return A
async def post(A): async def get(self):
K='](/drive.bin/';L='channel_uid';G='document';D='image';P=await A.request.multipart();M=[];Q=A.request.session.get(_A);E=await A.services.user.get_home_folder(Q);E=E.joinpath('upload');E.mkdir(parents=True,exist_ok=True);H=None;R=await A.services.drive.get_or_create(user_uid=A.request.session.get(_A));N={'.jpg':D,'.gif':D,'.png':D,'.jpeg':D,'.mp4':'video','.mp3':'audio','.pdf':G,'.doc':G,'.docx':G} uid = self.request.match_info.get("uid")
while(F:=await P.next()): drive_item = await self.services.drive_item.get(uid)
if F.name==L:H=await F.text();continue response = web.FileResponse(drive_item["path"])
B=F.filename response.headers["Cache-Control"] = f"public, max-age={1337*420}"
if not B:continue response.headers["Content-Disposition"] = (
S=str(uuid.uuid4())+pathlib.Path(B).suffix;C=E.joinpath(S);M.append(C) f'attachment; filename="{drive_item["name"]}"'
async with aiofiles.open(str(C),'wb')as T: )
while(U:=await F.read_chunk()):await T.write(U) return response
I=await A.services.drive_item.create(R[_A],B,str(C),C.stat().st_size,C.suffix);J='.'+B.split('.')[-1]
if J in N:N[J] async def post(self):
await A.services.drive_item.save(I);O='Uploaded ['+B+K+I[_A]+')';O='['+B+K+I[_A]+J+')';await A.services.chat.send(A.request.session.get(_A),H,O) reader = await self.request.multipart()
return web.json_response({'message':'Files uploaded successfully','files':[str(A)for A in M],L:H}) files = []
user_uid = self.request.session.get("uid")
upload_dir = await self.services.user.get_home_folder(user_uid)
upload_dir = upload_dir.joinpath("upload")
upload_dir.mkdir(parents=True, exist_ok=True)
channel_uid = None
drive = await self.services.drive.get_or_create(
user_uid=self.request.session.get("uid")
)
extension_types = {
".jpg": "image",
".gif": "image",
".png": "image",
".jpeg": "image",
".mp4": "video",
".mp3": "audio",
".pdf": "document",
".doc": "document",
".docx": "document",
}
while field := await reader.next():
if field.name == "channel_uid":
channel_uid = await field.text()
continue
filename = field.filename
if not filename:
continue
name = str(uuid.uuid4()) + pathlib.Path(filename).suffix
file_path = upload_dir.joinpath(name)
files.append(file_path)
async with aiofiles.open(str(file_path), "wb") as f:
while chunk := await field.read_chunk():
await f.write(chunk)
drive_item = await self.services.drive_item.create(
drive["uid"],
filename,
str(file_path),
file_path.stat().st_size,
file_path.suffix,
)
extension = "." + filename.split(".")[-1]
if extension in extension_types:
extension_types[extension]
await self.services.drive_item.save(drive_item)
response = (
"Uploaded [" + filename + "](/drive.bin/" + drive_item["uid"] + ")"
)
# response = "<iframe width=\"100%\" frameborder=\"0\" allowfullscreen title=\"Embedded\" src=\"" + self.base_url + "/drive.bin/" + drive_item["uid"] + "\"></iframe>\n"
response = (
"[" + filename + "](/drive.bin/" + drive_item["uid"] + extension + ")"
)
await self.services.chat.send(
self.request.session.get("uid"), channel_uid, response
)
return web.json_response(
{
"message": "Files uploaded successfully",
"files": [str(file) for file in files],
"channel_uid": channel_uid,
}
)

View File

@ -1,3 +1,15 @@
from snek.system.view import BaseView from snek.system.view import BaseView
class UserView(BaseView): class UserView(BaseView):
async def get(A):B='profile';C='user';D=A.request.match_info.get(C);E=await A.services.user.get(uid=D);F=await A.services.user_property.get(E['uid'],B)or'';return await A.render_template('user.html',{'user_uid':D,C:E.record,B:F})
async def get(self):
user_uid = self.request.match_info.get("user")
user = await self.services.user.get(uid=user_uid)
profile_content = (
await self.services.user_property.get(user["uid"], "profile") or ""
)
return await self.render_template(
"user.html",
{"user_uid": user_uid, "user": user.record, "profile": profile_content},
)

View File

@ -1,19 +1,79 @@
# Written by retoor@molodetz.nl
# This code defines a WebView class that inherits from BaseView and includes a method for rendering a web template, requiring login access for its usage.
# The code imports the BaseView class from the `snek.system.view` module.
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from aiohttp import web from aiohttp import web
from snek.system.view import BaseView from snek.system.view import BaseView
class WebView(BaseView): class WebView(BaseView):
login_required=True login_required = True
async def get(A):
F='channel';B='uid' async def get(self):
if A.login_required and not A.session.get('logged_in'):return web.HTTPFound('/') if self.login_required and not self.session.get("logged_in"):
C=await A.services.channel.get(uid=A.request.match_info.get(F)) return web.HTTPFound("/")
if not C: channel = await self.services.channel.get(
D=await A.services.user.get(uid=A.request.match_info.get(F)) uid=self.request.match_info.get("channel")
if D: )
C=await A.services.channel.get_dm(A.session.get(B),D[B]) if not channel:
if C:return web.HTTPFound('/channel/{}.html'.format(C[B])) user = await self.services.user.get(
if not C:return web.HTTPNotFound() uid=self.request.match_info.get("channel")
E=await A.app.services.channel_member.get(user_uid=A.session.get(B),channel_uid=C[B]) )
if not E:return web.HTTPNotFound() if user:
E['new_count']=0;await A.app.services.channel_member.save(E);D=await A.services.user.get(uid=A.session.get(B));G=[await A.app.services.channel_message.to_extended_dict(B)for B in await A.app.services.channel_message.offset(C[B])] channel = await self.services.channel.get_dm(
for H in G:await A.app.services.notification.mark_as_read(A.session.get(B),H[B]) self.session.get("uid"), user["uid"]
I=await E.get_name();return await A.render_template('web.html',{'name':I,F:C,'user':D,'messages':G}) )
if channel:
return web.HTTPFound("/channel/{}.html".format(channel["uid"]))
if not channel:
return web.HTTPNotFound()
channel_member = await self.app.services.channel_member.get(
user_uid=self.session.get("uid"), channel_uid=channel["uid"]
)
if not channel_member:
return web.HTTPNotFound()
channel_member["new_count"] = 0
await self.app.services.channel_member.save(channel_member)
user = await self.services.user.get(uid=self.session.get("uid"))
messages = [
await self.app.services.channel_message.to_extended_dict(message)
for message in await self.app.services.channel_message.offset(
channel["uid"]
)
]
for message in messages:
await self.app.services.notification.mark_as_read(
self.session.get("uid"), message["uid"]
)
name = await channel_member.get_name()
return await self.render_template(
"web.html",
{"name": name, "channel": channel, "user": user, "messages": messages},
)

View File

@ -1,145 +1,377 @@
_U='Lock-Token' import logging
_T='application/xml' import pathlib
_S='{DAV:}exclusive'
_R='{DAV:}lockdiscovery'
_Q='{DAV:}prop'
_P='%a, %d %b %Y %H:%M:%S GMT'
_O='Source not found'
_N='http://localhost:8080/'
_M='Destination'
_L='application/octet-stream'
_K='File not found'
_J='{DAV:}write'
_I='{DAV:}locktype'
_H='{DAV:}lockscope'
_G='{DAV:}href'
_F='Content-Type'
_E=True
_D='filename'
_C='Basic realm="WebDAV"'
_B='WWW-Authenticate'
_A='home'
import logging,pathlib
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)
import base64,datetime,mimetypes,os,shutil,uuid,aiofiles,aiohttp,aiohttp.web import base64
import datetime
import mimetypes
import os
import shutil
import uuid
import aiofiles
import aiohttp
import aiohttp.web
from app.cache import time_cache_async from app.cache import time_cache_async
from lxml import etree from lxml import etree
@aiohttp.web.middleware @aiohttp.web.middleware
async def debug_middleware(request,handler): async def debug_middleware(request, handler):
A=request;print(A.method,A.path,A.headers);B=await handler(A);print(B.status) print(request.method, request.path, request.headers)
try:print(await B.text()) result = await handler(request)
except:pass print(result.status)
return B try:
print(await result.text())
except:
pass
return result
class WebdavApplication(aiohttp.web.Application): class WebdavApplication(aiohttp.web.Application):
def __init__(A,parent,*C,**D):B='/{filename:.*}';E=[debug_middleware];super().__init__(*C,middlewares=E,**D);A.locks={};A.relative_url='/webdav';A.router.add_route('OPTIONS',B,A.handle_options);A.router.add_route('GET',B,A.handle_get);A.router.add_route('PUT',B,A.handle_put);A.router.add_route('DELETE',B,A.handle_delete);A.router.add_route('MKCOL',B,A.handle_mkcol);A.router.add_route('MOVE',B,A.handle_move);A.router.add_route('COPY',B,A.handle_copy);A.router.add_route('PROPFIND',B,A.handle_propfind);A.router.add_route('PROPPATCH',B,A.handle_proppatch);A.router.add_route('LOCK',B,A.handle_lock);A.router.add_route('UNLOCK',B,A.handle_unlock);A.parent=parent def __init__(self, parent, *args, **kwargs):
@property middlewares = [debug_middleware]
def db(self):return self.parent.db
@property super().__init__(middlewares=middlewares, *args, **kwargs)
def services(self):return self.parent.services self.locks = {}
async def authenticate(C,request):
D='Basic ';B='user';A=request;E=A.headers.get('Authorization','') self.relative_url = "/webdav"
if not E.startswith(D):return False
F=E.split(D)[1];G=base64.b64decode(F).decode();H,I=G.split(':',1);A[B]=await C.services.user.authenticate(username=H,password=I) self.router.add_route("OPTIONS", "/{filename:.*}", self.handle_options)
try:A[_A]=await C.services.user.get_home_folder(A[B]['uid']) self.router.add_route("GET", "/{filename:.*}", self.handle_get)
except Exception:pass self.router.add_route("PUT", "/{filename:.*}", self.handle_put)
return A[B] self.router.add_route("DELETE", "/{filename:.*}", self.handle_delete)
async def handle_get(D,request): self.router.add_route("MKCOL", "/{filename:.*}", self.handle_mkcol)
B=request self.router.add_route("MOVE", "/{filename:.*}", self.handle_move)
if not await D.authenticate(B):return aiohttp.web.Response(status=401,headers={_B:_C}) self.router.add_route("COPY", "/{filename:.*}", self.handle_copy)
E=B.match_info.get(_D,'');A=B[_A]/E self.router.add_route("PROPFIND", "/{filename:.*}", self.handle_propfind)
if not A.exists():return aiohttp.web.Response(status=404,text=_K) self.router.add_route("PROPPATCH", "/{filename:.*}", self.handle_proppatch)
if A.is_dir():return aiohttp.web.Response(status=403,text='Cannot download a directory') self.router.add_route("LOCK", "/{filename:.*}", self.handle_lock)
C,F=mimetypes.guess_type(str(A));C=C or _L;return aiohttp.web.FileResponse(path=str(A),headers={_F:C},chunk_size=8192) self.router.add_route("UNLOCK", "/{filename:.*}", self.handle_unlock)
async def handle_put(C,request): self.parent = parent
A=request
if not await C.authenticate(A):return aiohttp.web.Response(status=401,headers={_B:_C}) @property
B=A[_A]/A.match_info[_D];B.parent.mkdir(parents=_E,exist_ok=_E) def db(self):
async with aiofiles.open(B,'wb')as D: return self.parent.db
while(E:=await A.content.read(1024)):await D.write(E)
return aiohttp.web.Response(status=201,text='File uploaded') @property
async def handle_delete(C,request): def services(self):
B=request return self.parent.services
if not await C.authenticate(B):return aiohttp.web.Response(status=401,headers={_B:_C})
A=B[_A]/B.match_info[_D] async def authenticate(self, request):
if A.is_file():A.unlink();return aiohttp.web.Response(status=204) auth_header = request.headers.get("Authorization", "")
elif A.is_dir():shutil.rmtree(A);return aiohttp.web.Response(status=204) if not auth_header.startswith("Basic "):
return aiohttp.web.Response(status=404,text='Not found') return False
async def handle_mkcol(C,request): encoded_creds = auth_header.split("Basic ")[1]
A=request decoded_creds = base64.b64decode(encoded_creds).decode()
if not await C.authenticate(A):return aiohttp.web.Response(status=401,headers={_B:_C}) username, password = decoded_creds.split(":", 1)
B=A[_A]/A.match_info[_D] request["user"] = await self.services.user.authenticate(
if B.exists():return aiohttp.web.Response(status=405,text='Directory already exists') username=username, password=password
B.mkdir(parents=_E,exist_ok=_E);return aiohttp.web.Response(status=201,text='Directory created') )
async def handle_move(C,request): try:
A=request request["home"] = await self.services.user.get_home_folder(
if not await C.authenticate(A):return aiohttp.web.Response(status=401,headers={_B:_C}) request["user"]["uid"]
B=A[_A]/A.match_info[_D];D=A[_A]/A.headers.get(_M,'').replace(_N,'') )
if not B.exists():return aiohttp.web.Response(status=404,text=_O) except Exception:
shutil.move(str(B),str(D));return aiohttp.web.Response(status=201,text='Moved successfully') pass
async def handle_copy(D,request): return request["user"]
A=request
if not await D.authenticate(A):return aiohttp.web.Response(status=401,headers={_B:_C}) async def handle_get(self, request):
B=A[_A]/A.match_info[_D];C=A[_A]/A.headers.get(_M,'').replace(_N,'') if not await self.authenticate(request):
if not B.exists():return aiohttp.web.Response(status=404,text=_O) return aiohttp.web.Response(
if B.is_file():shutil.copy2(str(B),str(C)) status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
else:shutil.copytree(str(B),str(C)) )
return aiohttp.web.Response(status=201,text='Copied successfully')
async def handle_options(B,request):A={'DAV':'1, 2','Allow':'OPTIONS, GET, PUT, DELETE, MKCOL, MOVE, COPY, PROPFIND, PROPPATCH'};return aiohttp.web.Response(status=200,headers=A) requested_path = request.match_info.get("filename", "")
def get_current_utc_time(C,filepath): abs_path = request["home"] / requested_path
B=filepath
if B.exists():A=datetime.datetime.utcfromtimestamp(B.stat().st_mtime) if not abs_path.exists():
else:A=datetime.datetime.utcnow() return aiohttp.web.Response(status=404, text="File not found")
return A.strftime('%Y-%m-%dT%H:%M:%SZ'),A.strftime(_P)
@time_cache_async(10) if abs_path.is_dir():
async def get_file_size(self,path):A=self.parent.loop;B=await A.run_in_executor(None,os.stat,path);return B.st_size return aiohttp.web.Response(status=403, text="Cannot download a directory")
@time_cache_async(10)
async def get_directory_size(self,directory): content_type, _ = mimetypes.guess_type(str(abs_path))
A=0 content_type = content_type or "application/octet-stream"
for(C,F,D)in os.walk(directory):
for E in D: return aiohttp.web.FileResponse(
B=pathlib.Path(C)/E path=str(abs_path), headers={"Content-Type": content_type}, chunk_size=8192
if B.exists():A+=await self.get_file_size(str(B)) )
return A
@time_cache_async(30) async def handle_put(self, request):
async def get_disk_free_space(self,path='/'):B=self.parent.loop;A=await B.run_in_executor(None,os.statvfs,path);return A.f_bavail*A.f_frsize if not await self.authenticate(request):
async def create_node(C,request,response_xml,full_path,depth): return aiohttp.web.Response(
F='{DAV:}lockentry';G=depth;H=response_xml;E=request;A=full_path;I=pathlib.Path(A);O=str(A.relative_to(E[_A]));D=f"{C.relative_url}/{O}".strip('.');D=D.replace('./','/');D=D.replace('//','/');J=etree.SubElement(H,'{DAV:}response');P=etree.SubElement(J,_G);P.text=D;K=etree.SubElement(J,'{DAV:}propstat');B=etree.SubElement(K,_Q);Q=etree.SubElement(B,'{DAV:}resourcetype') status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
if A.is_dir():etree.SubElement(Q,'{DAV:}collection') )
R,S=C.get_current_utc_time(A);etree.SubElement(B,'{DAV:}creationdate').text=R;etree.SubElement(B,'{DAV:}quota-used-bytes').text=str(await C.get_file_size(A)if A.is_file()else await C.get_directory_size(A));etree.SubElement(B,'{DAV:}quota-available-bytes').text=str(await C.get_disk_free_space(E[_A]));etree.SubElement(B,'{DAV:}getlastmodified').text=S;etree.SubElement(B,'{DAV:}displayname').text=A.name;etree.SubElement(B,_R);T,Z=mimetypes.guess_type(A.name) file_path = request["home"] / request.match_info["filename"]
if A.is_file():etree.SubElement(B,'{DAV:}contenttype').text=T;etree.SubElement(B,'{DAV:}getcontentlength').text=str(await C.get_file_size(A)if A.is_file()else await C.get_directory_size(A)) file_path.parent.mkdir(parents=True, exist_ok=True)
L=etree.SubElement(B,'{DAV:}supportedlock');M=etree.SubElement(L,F);U=etree.SubElement(M,_H);etree.SubElement(U,_S);V=etree.SubElement(M,_I);etree.SubElement(V,_J);N=etree.SubElement(L,F);W=etree.SubElement(N,_H);etree.SubElement(W,'{DAV:}shared');X=etree.SubElement(N,_I);etree.SubElement(X,_J);etree.SubElement(K,'{DAV:}status').text='HTTP/1.1 200 OK' async with aiofiles.open(file_path, "wb") as f:
if I.is_dir()and G>0: while chunk := await request.content.read(1024):
for Y in I.iterdir():await C.create_node(E,H,Y,G-1) await f.write(chunk)
async def handle_propfind(B,request): return aiohttp.web.Response(status=201, text="File uploaded")
A=request
if not await B.authenticate(A):return aiohttp.web.Response(status=401,headers={_B:_C}) async def handle_delete(self, request):
C=0 if not await self.authenticate(request):
try:C=int(A.headers.get('Depth','0')) return aiohttp.web.Response(
except ValueError:pass status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
F=A.match_info.get(_D,'');D=A[_A]/F )
if not D.exists():return aiohttp.web.Response(status=404,text='Directory not found') file_path = request["home"] / request.match_info["filename"]
G={'D':'DAV:'};E=etree.Element('{DAV:}multistatus',nsmap=G);await B.create_node(A,E,D,C);H=etree.tostring(E,encoding='utf-8',xml_declaration=_E).decode();return aiohttp.web.Response(status=207,text=H,content_type=_T) if file_path.is_file():
async def handle_proppatch(A,request): file_path.unlink()
if not await A.authenticate(request):return aiohttp.web.Response(status=401,headers={_B:_C}) return aiohttp.web.Response(status=204)
return aiohttp.web.Response(status=207,text='PROPPATCH OK (Not Implemented)') elif file_path.is_dir():
async def handle_lock(A,request): shutil.rmtree(file_path)
C=request return aiohttp.web.Response(status=204)
if not await A.authenticate(C):return aiohttp.web.Response(status=401,headers={_B:_C}) return aiohttp.web.Response(status=404, text="Not found")
D=C.match_info.get(_D,'/');B=str(uuid.uuid4());A.locks[D]=B;E=await A.generate_lock_response(B);F={_U:f"opaquelocktoken:{B}",_F:_T};return aiohttp.web.Response(text=E,headers=F,status=200)
async def handle_unlock(A,request): async def handle_mkcol(self, request):
B=request if not await self.authenticate(request):
if not await A.authenticate(B):return aiohttp.web.Response(status=401,headers={_B:_C}) return aiohttp.web.Response(
C=B.match_info.get(_D,'/');D=B.headers.get(_U,'').replace('opaquelocktoken:','')[1:-1] status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
if A.locks.get(C)==D:del A.locks[C];return aiohttp.web.Response(status=204) )
return aiohttp.web.Response(status=400,text='Invalid Lock Token') dir_path = request["home"] / request.match_info["filename"]
async def generate_lock_response(J,lock_id):B=lock_id;D={'D':'DAV:'};C=etree.Element(_Q,nsmap=D);E=etree.SubElement(C,_R);A=etree.SubElement(E,'{DAV:}activelock');F=etree.SubElement(A,_I);etree.SubElement(F,_J);G=etree.SubElement(A,_H);etree.SubElement(G,_S);etree.SubElement(A,'{DAV:}depth').text='Infinity';H=etree.SubElement(A,'{DAV:}owner');etree.SubElement(H,_G).text=B;etree.SubElement(A,'{DAV:}timeout').text='Infinite';I=etree.SubElement(A,'{DAV:}locktoken');etree.SubElement(I,_G).text=f"opaquelocktoken:{B}";return etree.tostring(C,pretty_print=_E,encoding='utf-8').decode() if dir_path.exists():
def get_last_modified(C,path): return aiohttp.web.Response(status=405, text="Directory already exists")
if not path.exists():return dir_path.mkdir(parents=True, exist_ok=True)
A=path.stat().st_mtime;B=datetime.datetime.utcfromtimestamp(A);return B.strftime(_P) return aiohttp.web.Response(status=201, text="Directory created")
async def handle_head(D,request):
B=request async def handle_move(self, request):
if not await D.authenticate(B):return aiohttp.web.Response(status=401,headers={_B:_C}) if not await self.authenticate(request):
E=B.match_info.get(_D,'');A=B[_A]/E return aiohttp.web.Response(
if not A.exists():return aiohttp.web.Response(status=404,text=_K) status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
if A.is_dir():return aiohttp.web.Response(status=403,text='Cannot get metadata for a directory') )
C,H=mimetypes.guess_type(str(A));C=C or _L;F=A.stat().st_size;G={_F:C,'Content-Length':str(F),'Last-Modified':D.get_last_modified(A)};return aiohttp.web.Response(status=200,headers=G) src_path = request["home"] / request.match_info["filename"]
dest_path = request["home"] / request.headers.get("Destination", "").replace(
"http://localhost:8080/", ""
)
if not src_path.exists():
return aiohttp.web.Response(status=404, text="Source not found")
shutil.move(str(src_path), str(dest_path))
return aiohttp.web.Response(status=201, text="Moved successfully")
async def handle_copy(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
src_path = request["home"] / request.match_info["filename"]
dest_path = request["home"] / request.headers.get("Destination", "").replace(
"http://localhost:8080/", ""
)
if not src_path.exists():
return aiohttp.web.Response(status=404, text="Source not found")
if src_path.is_file():
shutil.copy2(str(src_path), str(dest_path))
else:
shutil.copytree(str(src_path), str(dest_path))
return aiohttp.web.Response(status=201, text="Copied successfully")
async def handle_options(self, request):
headers = {
"DAV": "1, 2",
"Allow": "OPTIONS, GET, PUT, DELETE, MKCOL, MOVE, COPY, PROPFIND, PROPPATCH",
}
return aiohttp.web.Response(status=200, headers=headers)
def get_current_utc_time(self, filepath):
if filepath.exists():
modified_time = datetime.datetime.utcfromtimestamp(filepath.stat().st_mtime)
else:
modified_time = datetime.datetime.utcnow()
return modified_time.strftime("%Y-%m-%dT%H:%M:%SZ"), modified_time.strftime(
"%a, %d %b %Y %H:%M:%S GMT"
)
@time_cache_async(10)
async def get_file_size(self, path):
loop = self.parent.loop
stat = await loop.run_in_executor(None, os.stat, path)
return stat.st_size
@time_cache_async(10)
async def get_directory_size(self, directory):
total_size = 0
for dirpath, _, filenames in os.walk(directory):
for f in filenames:
fp = pathlib.Path(dirpath) / f
if fp.exists():
total_size += await self.get_file_size(str(fp))
return total_size
@time_cache_async(30)
async def get_disk_free_space(self, path="/"):
loop = self.parent.loop
statvfs = await loop.run_in_executor(None, os.statvfs, path)
return statvfs.f_bavail * statvfs.f_frsize
async def create_node(self, request, response_xml, full_path, depth):
abs_path = pathlib.Path(full_path)
relative_path = str(full_path.relative_to(request["home"]))
href_path = f"{self.relative_url}/{relative_path}".strip(".")
href_path = href_path.replace("./", "/")
href_path = href_path.replace("//", "/")
response = etree.SubElement(response_xml, "{DAV:}response")
href = etree.SubElement(response, "{DAV:}href")
href.text = href_path
propstat = etree.SubElement(response, "{DAV:}propstat")
prop = etree.SubElement(propstat, "{DAV:}prop")
res_type = etree.SubElement(prop, "{DAV:}resourcetype")
if full_path.is_dir():
etree.SubElement(res_type, "{DAV:}collection")
creation_date, last_modified = self.get_current_utc_time(full_path)
etree.SubElement(prop, "{DAV:}creationdate").text = creation_date
etree.SubElement(prop, "{DAV:}quota-used-bytes").text = str(
await self.get_file_size(full_path)
if full_path.is_file()
else await self.get_directory_size(full_path)
)
etree.SubElement(prop, "{DAV:}quota-available-bytes").text = str(
await self.get_disk_free_space(request["home"])
)
etree.SubElement(prop, "{DAV:}getlastmodified").text = last_modified
etree.SubElement(prop, "{DAV:}displayname").text = full_path.name
etree.SubElement(prop, "{DAV:}lockdiscovery")
mimetype, _ = mimetypes.guess_type(full_path.name)
if full_path.is_file():
etree.SubElement(prop, "{DAV:}contenttype").text = mimetype
etree.SubElement(prop, "{DAV:}getcontentlength").text = str(
await self.get_file_size(full_path)
if full_path.is_file()
else await self.get_directory_size(full_path)
)
supported_lock = etree.SubElement(prop, "{DAV:}supportedlock")
lock_entry_1 = etree.SubElement(supported_lock, "{DAV:}lockentry")
lock_scope_1 = etree.SubElement(lock_entry_1, "{DAV:}lockscope")
etree.SubElement(lock_scope_1, "{DAV:}exclusive")
lock_type_1 = etree.SubElement(lock_entry_1, "{DAV:}locktype")
etree.SubElement(lock_type_1, "{DAV:}write")
lock_entry_2 = etree.SubElement(supported_lock, "{DAV:}lockentry")
lock_scope_2 = etree.SubElement(lock_entry_2, "{DAV:}lockscope")
etree.SubElement(lock_scope_2, "{DAV:}shared")
lock_type_2 = etree.SubElement(lock_entry_2, "{DAV:}locktype")
etree.SubElement(lock_type_2, "{DAV:}write")
etree.SubElement(propstat, "{DAV:}status").text = "HTTP/1.1 200 OK"
if abs_path.is_dir() and depth > 0:
for item in abs_path.iterdir():
await self.create_node(request, response_xml, item, depth - 1)
async def handle_propfind(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
depth = 0
try:
depth = int(request.headers.get("Depth", "0"))
except ValueError:
pass
requested_path = request.match_info.get("filename", "")
abs_path = request["home"] / requested_path
if not abs_path.exists():
return aiohttp.web.Response(status=404, text="Directory not found")
nsmap = {"D": "DAV:"}
response_xml = etree.Element("{DAV:}multistatus", nsmap=nsmap)
await self.create_node(request, response_xml, abs_path, depth)
xml_output = etree.tostring(
response_xml, encoding="utf-8", xml_declaration=True
).decode()
return aiohttp.web.Response(
status=207, text=xml_output, content_type="application/xml"
)
async def handle_proppatch(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
return aiohttp.web.Response(status=207, text="PROPPATCH OK (Not Implemented)")
async def handle_lock(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
resource = request.match_info.get("filename", "/")
lock_id = str(uuid.uuid4())
self.locks[resource] = lock_id
xml_response = await self.generate_lock_response(lock_id)
headers = {
"Lock-Token": f"opaquelocktoken:{lock_id}",
"Content-Type": "application/xml",
}
return aiohttp.web.Response(text=xml_response, headers=headers, status=200)
async def handle_unlock(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
resource = request.match_info.get("filename", "/")
lock_token = request.headers.get("Lock-Token", "").replace(
"opaquelocktoken:", ""
)[1:-1]
if self.locks.get(resource) == lock_token:
del self.locks[resource]
return aiohttp.web.Response(status=204)
return aiohttp.web.Response(status=400, text="Invalid Lock Token")
async def generate_lock_response(self, lock_id):
nsmap = {"D": "DAV:"}
root = etree.Element("{DAV:}prop", nsmap=nsmap)
lock_discovery = etree.SubElement(root, "{DAV:}lockdiscovery")
active_lock = etree.SubElement(lock_discovery, "{DAV:}activelock")
lock_type = etree.SubElement(active_lock, "{DAV:}locktype")
etree.SubElement(lock_type, "{DAV:}write")
lock_scope = etree.SubElement(active_lock, "{DAV:}lockscope")
etree.SubElement(lock_scope, "{DAV:}exclusive")
etree.SubElement(active_lock, "{DAV:}depth").text = "Infinity"
owner = etree.SubElement(active_lock, "{DAV:}owner")
etree.SubElement(owner, "{DAV:}href").text = lock_id
etree.SubElement(active_lock, "{DAV:}timeout").text = "Infinite"
lock_token = etree.SubElement(active_lock, "{DAV:}locktoken")
etree.SubElement(lock_token, "{DAV:}href").text = f"opaquelocktoken:{lock_id}"
return etree.tostring(root, pretty_print=True, encoding="utf-8").decode()
def get_last_modified(self, path):
if not path.exists():
return None
timestamp = path.stat().st_mtime
dt = datetime.datetime.utcfromtimestamp(timestamp)
return dt.strftime("%a, %d %b %Y %H:%M:%S GMT")
async def handle_head(self, request):
if not await self.authenticate(request):
return aiohttp.web.Response(
status=401, headers={"WWW-Authenticate": 'Basic realm="WebDAV"'}
)
requested_path = request.match_info.get("filename", "")
abs_path = request["home"] / requested_path
if not abs_path.exists():
return aiohttp.web.Response(status=404, text="File not found")
if abs_path.is_dir():
return aiohttp.web.Response(
status=403, text="Cannot get metadata for a directory"
)
content_type, _ = mimetypes.guess_type(str(abs_path))
content_type = content_type or "application/octet-stream"
file_size = abs_path.stat().st_size
headers = {
"Content-Type": content_type,
"Content-Length": str(file_size),
"Last-Modified": self.get_last_modified(abs_path),
}
return aiohttp.web.Response(status=200, headers=headers)

View File

@ -1,25 +1,78 @@
_A=True import asyncio
import asyncio,logging,os,asyncssh import logging
import os
import asyncssh
asyncssh.set_debug_level(2) asyncssh.set_debug_level(2)
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)
SFTP_ROOT='.' # Configuration for SFTP server
USERNAME='test' SFTP_ROOT = "." # Directory to serve
PASSWORD='woeii' USERNAME = "test"
HOST='localhost' PASSWORD = "woeii"
PORT=2225 HOST = "localhost"
PORT = 2225
class MySFTPServer(asyncssh.SFTPServer): class MySFTPServer(asyncssh.SFTPServer):
def __init__(A,chan):super().__init__(chan);A.root=os.path.abspath(SFTP_ROOT) def __init__(self, chan):
async def stat(A,path):"Handles 'stat' command from SFTP client";B=os.path.join(A.root,path.lstrip('/'));return await super().stat(B) super().__init__(chan)
async def open(A,path,flags,attrs):'Handles file open requests';B=os.path.join(A.root,path.lstrip('/'));return await super().open(B,flags,attrs) self.root = os.path.abspath(SFTP_ROOT)
async def listdir(A,path):'Handles directory listing';B=os.path.join(A.root,path.lstrip('/'));return await super().listdir(B)
async def stat(self, path):
"""Handles 'stat' command from SFTP client"""
full_path = os.path.join(self.root, path.lstrip("/"))
return await super().stat(full_path)
async def open(self, path, flags, attrs):
"""Handles file open requests"""
full_path = os.path.join(self.root, path.lstrip("/"))
return await super().open(full_path, flags, attrs)
async def listdir(self, path):
"""Handles directory listing"""
full_path = os.path.join(self.root, path.lstrip("/"))
return await super().listdir(full_path)
class MySSHServer(asyncssh.SSHServer): class MySSHServer(asyncssh.SSHServer):
'Custom SSH server to handle authentication' """Custom SSH server to handle authentication"""
def connection_made(A,conn):print(f"New connection from {conn.get_extra_info("peername")}")
def connection_lost(A,exc):print('Client disconnected') def connection_made(self, conn):
def begin_auth(A,username):return _A print(f"New connection from {conn.get_extra_info('peername')}")
def password_auth_supported(A):return _A
def validate_password(C,username,password):A=password;B=username;print(B,A);return _A;return B==USERNAME and A==PASSWORD def connection_lost(self, exc):
async def start_sftp_server():os.makedirs(SFTP_ROOT,exist_ok=_A);await asyncssh.create_server(lambda:MySSHServer(),host=HOST,port=PORT,server_host_keys=['ssh_host_key'],process_factory=MySFTPServer);print(f"SFTP server running on {HOST}:{PORT}");await asyncio.Future() print("Client disconnected")
if __name__=='__main__':
try:asyncio.run(start_sftp_server()) def begin_auth(self, username):
except(OSError,asyncssh.Error)as e:print(f"Error starting SFTP server: {e}") return True # No additional authentication steps
def password_auth_supported(self):
return True # Support password authentication
def validate_password(self, username, password):
print(username, password)
return True
return username == USERNAME and password == PASSWORD
async def start_sftp_server():
os.makedirs(SFTP_ROOT, exist_ok=True) # Ensure the root directory exists
await asyncssh.create_server(
lambda: MySSHServer(),
host=HOST,
port=PORT,
server_host_keys=["ssh_host_key"],
process_factory=MySFTPServer,
)
print(f"SFTP server running on {HOST}:{PORT}")
await asyncio.Future() # Keep running forever
if __name__ == "__main__":
try:
asyncio.run(start_sftp_server())
except (OSError, asyncssh.Error) as e:
print(f"Error starting SFTP server: {e}")

View File

@ -1,28 +1,77 @@
import asyncio,os,asyncssh import asyncio
HOST='0.0.0.0' import os
PORT=2225
USERNAME='user' import asyncssh
PASSWORD='password'
SHELL='/bin/sh' # SSH Server Configuration
HOST = "0.0.0.0"
PORT = 2225
USERNAME = "user"
PASSWORD = "password"
SHELL = "/bin/sh" # Change to another shell if needed
class CustomSSHServer(asyncssh.SSHServer): class CustomSSHServer(asyncssh.SSHServer):
def connection_made(A,conn):print(f"New connection from {conn.get_extra_info("peername")}") def connection_made(self, conn):
def connection_lost(A,exc):print('Client disconnected') print(f"New connection from {conn.get_extra_info('peername')}")
def password_auth_supported(A):return True
def validate_password(A,username,password):return username==USERNAME and password==PASSWORD def connection_lost(self, exc):
print("Client disconnected")
def password_auth_supported(self):
return True
def validate_password(self, username, password):
return username == USERNAME and password == PASSWORD
async def custom_bash_process(process): async def custom_bash_process(process):
'Spawns a custom bash shell process';A=process;B=os.environ.copy();B['TERM']='xterm-256color';C=await asyncio.create_subprocess_exec(SHELL,'-i',stdin=asyncio.subprocess.PIPE,stdout=asyncio.subprocess.PIPE,stderr=asyncio.subprocess.PIPE,env=B) """Spawns a custom bash shell process"""
async def D(): env = os.environ.copy()
while True: env["TERM"] = "xterm-256color"
B=await C.stdout.read(1)
if not B:break # Start the Bash shell
A.stdout.write(B) bash_proc = await asyncio.create_subprocess_exec(
async def E(): SHELL,
while True: "-i",
B=await A.stdin.read(1) stdin=asyncio.subprocess.PIPE,
if not B:break stdout=asyncio.subprocess.PIPE,
C.stdin.write(B) stderr=asyncio.subprocess.PIPE,
await asyncio.gather(D(),E()) env=env,
async def start_ssh_server():'Starts the AsyncSSH server with Bash';await asyncssh.create_server(lambda:CustomSSHServer(),host=HOST,port=PORT,server_host_keys=['ssh_host_key'],process_factory=custom_bash_process);print(f"SSH server running on {HOST}:{PORT}");await asyncio.Future() )
if __name__=='__main__':
try:asyncio.run(start_ssh_server()) async def read_output():
except(OSError,asyncssh.Error)as e:print(f"Error starting SSH server: {e}") while True:
data = await bash_proc.stdout.read(1)
if not data:
break
process.stdout.write(data)
async def read_input():
while True:
data = await process.stdin.read(1)
if not data:
break
bash_proc.stdin.write(data)
await asyncio.gather(read_output(), read_input())
async def start_ssh_server():
"""Starts the AsyncSSH server with Bash"""
await asyncssh.create_server(
lambda: CustomSSHServer(),
host=HOST,
port=PORT,
server_host_keys=["ssh_host_key"],
process_factory=custom_bash_process,
)
print(f"SSH server running on {HOST}:{PORT}")
await asyncio.Future() # Keep running
if __name__ == "__main__":
try:
asyncio.run(start_ssh_server())
except (OSError, asyncssh.Error) as e:
print(f"Error starting SSH server: {e}")

View File

@ -1,17 +1,74 @@
#!/usr/bin/env python3.7 #!/usr/bin/env python3.7
import asyncio,sys,asyncssh #
async def handle_client(process): # Copyright (c) 2013-2024 by Ron Frederick <ronf@timeheart.net> and others.
A=process;E,F,C,D=A.term_size;A.stdout.write(f"Terminal type: {A.term_type}, size: {E}x{F}") #
if C and D:A.stdout.write(f" ({C}x{D} pixels)") # This program and the accompanying materials are made available under
A.stdout.write('\nTry resizing your window!\n') # the terms of the Eclipse Public License v2.0 which accompanies this
while not A.stdin.at_eof(): # distribution and is available at:
try:await A.stdin.read() #
except asyncssh.TerminalSizeChanged as B: # http://www.eclipse.org/legal/epl-2.0/
A.stdout.write(f"New window size: {B.width}x{B.height}") #
if B.pixwidth and B.pixheight:A.stdout.write(f" ({B.pixwidth}x{B.pixheight} pixels)") # This program may also be made available under the following secondary
A.stdout.write('\n') # licenses when the conditions for such availability set forth in the
async def start_server():await asyncssh.listen('',2230,server_host_keys=['ssh_host_key'],process_factory=handle_client) # Eclipse Public License v2.0 are satisfied:
loop=asyncio.new_event_loop() #
try:loop.run_until_complete(start_server()) # GNU General Public License, Version 2.0, or any later versions of
except(OSError,asyncssh.Error)as exc:sys.exit('Error starting server: '+str(exc)) # that license
loop.run_forever() #
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
# To run this program, the file ``ssh_host_key`` must exist with an SSH
# private key in it to use as a server host key. An SSH host certificate
# can optionally be provided in the file ``ssh_host_key-cert.pub``.
#
# The file ``ssh_user_ca`` must exist with a cert-authority entry of
# the certificate authority which can sign valid client certificates.
import asyncio
import sys
import asyncssh
async def handle_client(process: asyncssh.SSHServerProcess) -> None:
width, height, pixwidth, pixheight = process.term_size
process.stdout.write(
f"Terminal type: {process.term_type}, " f"size: {width}x{height}"
)
if pixwidth and pixheight:
process.stdout.write(f" ({pixwidth}x{pixheight} pixels)")
process.stdout.write("\nTry resizing your window!\n")
while not process.stdin.at_eof():
try:
await process.stdin.read()
except asyncssh.TerminalSizeChanged as exc:
process.stdout.write(f"New window size: {exc.width}x{exc.height}")
if exc.pixwidth and exc.pixheight:
process.stdout.write(f" ({exc.pixwidth}" f"x{exc.pixheight} pixels)")
process.stdout.write("\n")
async def start_server() -> None:
await asyncssh.listen(
"",
2230,
server_host_keys=["ssh_host_key"],
# authorized_client_keys='ssh_user_ca',
process_factory=handle_client,
)
loop = asyncio.new_event_loop()
try:
loop.run_until_complete(start_server())
except (OSError, asyncssh.Error) as exc:
sys.exit("Error starting server: " + str(exc))
loop.run_forever()

View File

@ -1,24 +1,90 @@
#!/usr/bin/env python3.7 #!/usr/bin/env python3.7
import asyncio,sys #
# Copyright (c) 2013-2024 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
# To run this program, the file ``ssh_host_key`` must exist with an SSH
# private key in it to use as a server host key. An SSH host certificate
# can optionally be provided in the file ``ssh_host_key-cert.pub``.
import asyncio
import sys
from typing import Optional from typing import Optional
import asyncssh,bcrypt
passwords={'guest':b'','user':bcrypt.hashpw(b'user',bcrypt.gensalt())} import asyncssh
def handle_client(process):A=process;B=A.get_extra_info('username');A.stdout.write(f"Welcome to my SSH server, {B}!\n") import bcrypt
passwords = {
"guest": b"", # guest account with no password
"user": bcrypt.hashpw(b"user", bcrypt.gensalt()),
}
def handle_client(process: asyncssh.SSHServerProcess) -> None:
username = process.get_extra_info("username")
process.stdout.write(f"Welcome to my SSH server, {username}!\n")
# process.exit(0)
class MySSHServer(asyncssh.SSHServer): class MySSHServer(asyncssh.SSHServer):
def connection_made(B,conn):A=conn.get_extra_info('peername')[0];print(f"SSH connection received from {A}.") def connection_made(self, conn: asyncssh.SSHServerConnection) -> None:
def connection_lost(A,exc): peername = conn.get_extra_info("peername")[0]
if exc:print('SSH connection error: '+str(exc),file=sys.stderr) print(f"SSH connection received from {peername}.")
else:print('SSH connection closed.')
def begin_auth(A,username):return passwords.get(username)!=b'' def connection_lost(self, exc: Optional[Exception]) -> None:
def password_auth_supported(A):return True if exc:
def validate_password(D,username,password): print("SSH connection error: " + str(exc), file=sys.stderr)
A=password;B=username else:
if B not in passwords:return False print("SSH connection closed.")
C=passwords[B]
if not A and not C:return True def begin_auth(self, username: str) -> bool:
return bcrypt.checkpw(A.encode('utf-8'),C) # If the user's password is the empty string, no auth is required
async def start_server():await asyncssh.create_server(MySSHServer,'',2231,server_host_keys=['ssh_host_key'],process_factory=handle_client) return passwords.get(username) != b""
loop=asyncio.new_event_loop()
try:loop.run_until_complete(start_server()) def password_auth_supported(self) -> bool:
except(OSError,asyncssh.Error)as exc:sys.exit('Error starting server: '+str(exc)) return True
loop.run_forever()
def validate_password(self, username: str, password: str) -> bool:
if username not in passwords:
return False
pw = passwords[username]
if not password and not pw:
return True
return bcrypt.checkpw(password.encode("utf-8"), pw)
async def start_server() -> None:
await asyncssh.create_server(
MySSHServer,
"",
2231,
server_host_keys=["ssh_host_key"],
process_factory=handle_client,
)
loop = asyncio.new_event_loop()
try:
loop.run_until_complete(start_server())
except (OSError, asyncssh.Error) as exc:
sys.exit("Error starting server: " + str(exc))
loop.run_forever()

View File

@ -1,28 +1,112 @@
#!/usr/bin/env python3.7 #!/usr/bin/env python3.7
import asyncio,sys #
from typing import List,cast # Copyright (c) 2016-2024 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
# To run this program, the file ``ssh_host_key`` must exist with an SSH
# private key in it to use as a server host key. An SSH host certificate
# can optionally be provided in the file ``ssh_host_key-cert.pub``.
#
# The file ``ssh_user_ca`` must exist with a cert-authority entry of
# the certificate authority which can sign valid client certificates.
import asyncio
import sys
from typing import List, cast
import asyncssh import asyncssh
class ChatClient: class ChatClient:
_clients:List['ChatClient']=[] _clients: List["ChatClient"] = []
def __init__(A,process):A._process=process
@classmethod def __init__(self, process: asyncssh.SSHServerProcess):
async def handle_client(A,process):await A(process).run() self._process = process
async def readline(A):return cast(str,A._process.stdin.readline())
def write(A,msg):A._process.stdout.write(msg) @classmethod
def broadcast(A,msg): async def handle_client(cls, process: asyncssh.SSHServerProcess):
for B in A._clients: await cls(process).run()
if B!=A:B.write(msg)
def begin_auth(A,username):return True async def readline(self) -> str:
def password_auth_supported(A):return True return cast(str, self._process.stdin.readline())
def validate_password(A,username,password):return True
async def run(A): def write(self, msg: str) -> None:
A.write('Welcome to chat!\n\n');A.write('Enter your name: ');B=(await A.readline()).rstrip('\n');A.write(f"\n{len(A._clients)} other users are connected.\n\n");A._clients.append(A);A.broadcast(f"*** {B} has entered chat ***\n") self._process.stdout.write(msg)
try:
async for C in A._process.stdin:A.broadcast(f"{B}: {C}") def broadcast(self, msg: str) -> None:
except asyncssh.BreakReceived:pass for client in self._clients:
A.broadcast(f"*** {B} has left chat ***\n");A._clients.remove(A) if client != self:
async def start_server():await asyncssh.listen('',2235,server_host_keys=['ssh_host_key'],process_factory=ChatClient.handle_client) client.write(msg)
loop=asyncio.new_event_loop()
try:loop.run_until_complete(start_server()) def begin_auth(self, username: str) -> bool:
except(OSError,asyncssh.Error)as exc:sys.exit('Error starting server: '+str(exc)) # If the user's password is the empty string, no auth is required
loop.run_forever() # return False
return True # passwords.get(username) != b''
def password_auth_supported(self) -> bool:
return True
def validate_password(self, username: str, password: str) -> bool:
# if username not in passwords:
# return False
# pw = passwords[username]
# if not password and not pw:
# return True
return True
# return bcrypt.checkpw(password.encode('utf-8'), pw)
async def run(self) -> None:
self.write("Welcome to chat!\n\n")
self.write("Enter your name: ")
name = (await self.readline()).rstrip("\n")
self.write(f"\n{len(self._clients)} other users are connected.\n\n")
self._clients.append(self)
self.broadcast(f"*** {name} has entered chat ***\n")
try:
async for line in self._process.stdin:
self.broadcast(f"{name}: {line}")
except asyncssh.BreakReceived:
pass
self.broadcast(f"*** {name} has left chat ***\n")
self._clients.remove(self)
async def start_server() -> None:
await asyncssh.listen(
"",
2235,
server_host_keys=["ssh_host_key"],
process_factory=ChatClient.handle_client,
)
loop = asyncio.new_event_loop()
try:
loop.run_until_complete(start_server())
except (OSError, asyncssh.Error) as exc:
sys.exit("Error starting server: " + str(exc))
loop.run_forever()