浏览代码

added documentation for API

joel
Simon Bowie 2 年前
父节点
当前提交
3cc2e65b26
共有 3 个文件被更改,包括 29 次插入22 次删除
  1. +13
    -7
      README.md
  2. +1
    -1
      web/app/__init__.py
  3. +15
    -14
      web/app/api.py

+ 13
- 7
README.md 查看文件



The ExPub Compendium will build on this review of tools to present a resource for a researcher, artist, or publisher looking to try experimental publishing. From our preliminary design discussions, we have plans to include not only software tools that can be used to do experimental publishing but examples of experimental publications, practices of experimental publishing, publishers who have done some form of experimental publishing, and sensitivities involved in experimental publishing. The ExPub Compendium will build on this review of tools to present a resource for a researcher, artist, or publisher looking to try experimental publishing. From our preliminary design discussions, we have plans to include not only software tools that can be used to do experimental publishing but examples of experimental publications, practices of experimental publishing, publishers who have done some form of experimental publishing, and sensitivities involved in experimental publishing.


## Application structure
## application structure


The ExPub Compendium is a Python application using the [Flask](https://flask.palletsprojects.com/en/2.2.x/) framework to render as a website and to provide functions around user authentication and login as well as retrieving data from the underlying database. The Flask framework uses a few HTML template pages to render different pages efficiently based on routes defined in Python files. These template pages use a fairly basic [Bootstrap 5](https://getbootstrap.com/) grid design which allows for responsive design using in-built CSS and HTML elements. The ExPub Compendium is a Python application using the [Flask](https://flask.palletsprojects.com/en/2.2.x/) framework to render as a website and to provide functions around user authentication and login as well as retrieving data from the underlying database. The Flask framework uses a few HTML template pages to render different pages efficiently based on routes defined in Python files. These template pages use a fairly basic [Bootstrap 5](https://getbootstrap.com/) grid design which allows for responsive design using in-built CSS and HTML elements.


The database is a MariaDB SQL database with a basic structure of Resources, Relationships, and Users. Resources are divided into tools, practices, and books and the table contains fields for these various types of resources. Relationships defines the links between resources using the resource ID in the Resource table: these are rendered on the site as connections between, say, a tool and a practice. Users contains the site's users with basic details like email address and hashed password. This simple structure provides flexibility for displaying resources with filters and to illustrate the connections between various resources. The database is a MariaDB SQL database with a basic structure of Resources, Relationships, and Users. Resources are divided into tools, practices, and books and the table contains fields for these various types of resources. Relationships defines the links between resources using the resource ID in the Resource table: these are rendered on the site as connections between, say, a tool and a practice. Users contains the site's users with basic details like email address and hashed password. This simple structure provides flexibility for displaying resources with filters and to illustrate the connections between various resources.


### to deploy environment
### RESTful API


#### environment files
The application has a simple RESTful API deployed using Marshmallow to define schemas based on the SQLAlchemy database models. It allows a simple JSON export of users (login required), tools, practices, and books.

The API is relatively open and is available at ./api

## deployment instructions

### environment files


To deploy this environment, first copy env.template to a new file, env.dev. Fill in the appropriate environment variables. To deploy this environment, first copy env.template to a new file, env.dev. Fill in the appropriate environment variables.


#### Docker Compose
### Docker Compose


In the command line, navigate to the directory where this repository is stored on your local machine and run: In the command line, navigate to the directory where this repository is stored on your local machine and run:




`docker-compose down` `docker-compose down`


#### populating the database
### populating the database


To intially create the database and a database user: To intially create the database and a database user:




`./database_functions -i ./db_imports/toolkit_db_20230112.sql` `./database_functions -i ./db_imports/toolkit_db_20230112.sql`


## Database functions
## database functions


This repository contains a shell script to perform various database functions including importing a whole database from SQL file, exporting the database in SQL, exporting individual tables as tab-delimited txt file, and importing individual tables from tab-delimited txt file. This repository contains a shell script to perform various database functions including importing a whole database from SQL file, exporting the database in SQL, exporting individual tables as tab-delimited txt file, and importing individual tables from tab-delimited txt file.


Run `./database_functions -h` to see the instructions for this script. Run `./database_functions -h` to see the instructions for this script.


## Legacy instructions:
### legacy database instructions:


The following is no longer required in Flask-SQLAlchemy 3. See https://stackoverflow.com/questions/73968584/flask-sqlalchemy-db-create-all-got-an-unexpected-keyword-argument-app The following is no longer required in Flask-SQLAlchemy 3. See https://stackoverflow.com/questions/73968584/flask-sqlalchemy-db-create-all-got-an-unexpected-keyword-argument-app



+ 1
- 1
web/app/__init__.py 查看文件

# initiate SQLAlchemy so we can use it later in our models # initiate SQLAlchemy so we can use it later in our models
db = SQLAlchemy() db = SQLAlchemy()


# initiate Marshmallow
# initiate Marshmallow for defining schemas for JSON export
ma = Marshmallow() ma = Marshmallow()


# initiate Moment for datetime functions # initiate Moment for datetime functions

+ 15
- 14
web/app/api.py 查看文件



api = Blueprint('api', __name__) api = Blueprint('api', __name__)


# function to get different types from the Resource database table
def get_resource_json(type):
resources = Resource.query.filter_by(type=type)
if (type=='tool'):
resources_schema = ToolSchema(many=True)
elif (type=='practice'):
resources_schema = PracticeSchema(many=True)
elif (type=='book'):
resources_schema = BookSchema(many=True)
result = resources_schema.dump(resources)
# return all rows as a JSON array of objects
result = jsonify(result)

return result

# route for api page # route for api page
@api.route('/api') @api.route('/api')
def api_page(): def api_page():
# return all rows as a JSON array of objects # return all rows as a JSON array of objects
return jsonify(result) return jsonify(result)


def get_resource_json(type):
resources = Resource.query.filter_by(type=type)
if (type=='tool'):
resources_schema = ToolSchema(many=True)
elif (type=='practice'):
resources_schema = PracticeSchema(many=True)
elif (type=='book'):
resources_schema = BookSchema(many=True)
result = resources_schema.dump(resources)
# return all rows as a JSON array of objects
result = jsonify(result)

return result

# route for exporting all tools in database # route for exporting all tools in database
@api.route('/api/tools') @api.route('/api/tools')
def get_tools(): def get_tools():

正在加载...
取消
保存