pycms/main.py

135 lines
3.0 KiB
Python
Raw Normal View History

#!/usr/bin/python3
2021-09-17 14:29:32 +03:00
from bottle import abort, route, run, request
2021-09-07 04:54:24 +03:00
import pymongo
class Config:
"""
posts - public, posts table from MongoClient
config: private, config for DB
config.db.host
config.db.port
config.db.dbname
"""
def __init__(self):
"""
Init init
"""
self.readConfig()
mongoclient = pymongo.MongoClient(self.host, self.port)
database = mongoclient[self.dbname]
# TODO: Create table if not exists
posts = database['posts']
self.posts = posts
def readConfig(self):
2021-09-17 14:29:32 +03:00
"""
Read config file, if not exists - call Init.createConfig()
"""
import configparser
config = configparser.ConfigParser()
if not config.read('config.ini'):
self.createConfig(config)
db = config['DB']
self.host = db['host']
self.port = int(db['port'])
self.dbname = db['name']
2021-09-17 14:29:32 +03:00
def createConfig(self, config):
2021-09-17 14:29:32 +03:00
"""
Create config file
"""
config['DB'] = {}
db = config['DB']
db['host'] = 'localhost'
db['port'] = '27017'
db['name'] = 'pycms'
with open('config.ini', 'w') as cfgfile:
config.write(cfgfile)
2021-09-17 14:29:32 +03:00
class Back():
2021-09-17 14:29:32 +03:00
"""
All actions that will be triggered by http
"""
def getRootPost(self):
2021-09-17 14:29:32 +03:00
try:
return posts.find_one({'name': '_root_'})['text']
except TypeError:
return abort(404, 'No such page')
def getPost(self, name):
2021-09-17 14:29:32 +03:00
try:
return posts.find_one({'name': name})['text']
except TypeError:
return abort(404, 'No such page')
def getAllPosts(self):
dict_posts = list()
for i in posts.find():
dict_posts.append(i)
return str(dict_posts)
def updatePost(self, name, body):
2021-09-17 14:29:32 +03:00
# If post exists, update it
if posts.find_one({'name': name}):
newPost = {'$set': {'text': body}}
return str(posts.update_one({'name': name}, newPost))
# Else - create new
else:
newPost = {'name': name, 'text': body}
return str(posts.insert_one(newPost).inserted_id)
def deletePost(self, name):
2021-09-18 04:48:04 +03:00
return bool(posts.delete_one({'name': name}).deleted_count)
2021-09-17 14:29:32 +03:00
@route('/post/<name>')
def post(name):
'''
Get post
'''
return str(back.getPost(name))
2021-09-18 04:48:04 +03:00
@route('/admin/post/<name>', method='POST')
2021-09-17 14:29:32 +03:00
def postUpd(name):
'''
Insert/Update post
'''
body = request.forms.get('body')
return back.updatePost(name=name, body=body)
2021-09-18 04:48:04 +03:00
@route('/admin/post/<name>', method='DELETE')
2021-09-17 14:29:32 +03:00
def postDel(name):
'''
Delete post by name
'''
return str(back.deletePost(name))
2021-09-17 14:29:32 +03:00
2021-09-17 14:29:32 +03:00
@route('/post')
def all_posts():
'''
Returns all posts
'''
return back.getAllPosts()
@route('/')
def index():
return back.getRootPost()
2021-09-07 06:35:22 +03:00
if __name__ == '__main__':
cfg = Config()
back = Back()
posts = cfg.posts
2021-09-07 06:35:22 +03:00
run(host='0.0.0.0', port=8081, reloader=True, debug=True)