mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 05:54:19 +01:00
Alpha release of CTFd v3.
# 3.0.0a1 / 2020-07-01
**General**
- CTFd is now Python 3 only
- Render markdown with the CommonMark spec provided by `cmarkgfm`
- Render markdown stripped of any malicious JavaScript or HTML.
- This is a significant change from previous versions of CTFd where any HTML content from an admin was considered safe.
- Inject `Config`, `User`, `Team`, `Session`, and `Plugin` globals into Jinja
- User sessions no longer store any user-specific attributes.
- Sessions only store the user's ID, CSRF nonce, and an hmac of the user's password
- This allows for session invalidation on password changes
- The user facing side of CTFd now has user and team searching
- GeoIP support now available for converting IP addresses to guessed countries
**Admin Panel**
- Use EasyMDE as an improved description/text editor for Markdown enabled fields.
- Media Library button now integrated into EasyMDE enabled fields
- VueJS now used as the underlying implementation for the Media Library
- Fix setting theme color in Admin Panel
- Green outline border has been removed from the Admin Panel
**API**
- Significant overhauls in API documentation provided by Swagger UI and Swagger json
- Make almost all API endpoints provide filtering and searching capabilities
- Change `GET /api/v1/config/<config_key>` to return structured data according to ConfigSchema
**Themes**
- Themes now have access to the `Configs` global which provides wrapped access to `get_config`.
- For example, `{{ Configs.ctf_name }}` instead of `get_ctf_name()` or `get_config('ctf_name')`
- Themes must now specify a `challenge.html` which control how a challenge should look.
- The main library for charts has been changed from Plotly to Apache ECharts.
- Forms have been moved into wtforms for easier form rendering inside of Jinja.
- From Jinja you can access forms via the Forms global i.e. `{{ Forms }}`
- This allows theme developers to more easily re-use a form without having to copy-paste HTML.
- Themes can now provide a theme settings JSON blob which can be injected into the theme with `{{ Configs.theme_settings }}`
- Core theme now includes the challenge ID in location hash identifiers to always refer the right challenge despite duplicate names
**Plugins**
- Challenge plugins have changed in structure to better allow integration with themes and prevent obtrusive Javascript/XSS.
- Challenge rendering now uses `challenge.html` from the provided theme.
- Accessing the challenge view content is now provided by `/api/v1/challenges/<challenge_id>` in the `view` section. This allows for HTML to be properly sanitized and rendered by the server allowing CTFd to remove client side Jinja rendering.
- `challenge.html` now specifies what's required and what's rendered by the theme. This allows the challenge plugin to avoid having to deal with aspects of the challenge besides the description and input.
- A more complete migration guide will be provided when CTFd v3 leaves beta
- Display current attempt count in challenge view when max attempts is enabled
- `get_standings()`, `get_team_stanadings()`, `get_user_standings()` now has a fields keyword argument that allows for specificying additional fields that SQLAlchemy should return when building the response set.
- Useful for gathering additional data when building scoreboard pages
- Flags can now control the message that is shown to the user by raising `FlagException`
- Fix `override_template()` functionality
**Deployment**
- Enable SQLAlchemy's `pool_pre_ping` by default to reduce the likelihood of database connection issues
- Mailgun email settings are now deprecated. Admins should move to SMTP email settings instead.
- Postgres is now considered a second class citizen in CTFd. It is tested against but not a main database backend. If you use Postgres, you are entirely on your own with regards to supporting CTFd.
- Docker image now uses Debian instead of Alpine. See https://github.com/CTFd/CTFd/issues/1215 for rationale.
- `docker-compose.yml` now uses a non-root user to connect to MySQL/MariaDB
- `config.py` should no longer be editting for configuration, instead edit `config.ini` or the environment variables in `docker-compose.yml`
178 lines
5.2 KiB
Python
178 lines
5.2 KiB
Python
from typing import List
|
|
|
|
from flask import request
|
|
from flask_restx import Namespace, Resource
|
|
|
|
from CTFd.api.v1.helpers.models import build_model_filters
|
|
from CTFd.api.v1.helpers.request import validate_args
|
|
from CTFd.api.v1.helpers.schemas import sqlalchemy_to_pydantic
|
|
from CTFd.api.v1.schemas import APIDetailedSuccessResponse, APIListSuccessResponse
|
|
from CTFd.cache import clear_pages
|
|
from CTFd.constants import RawEnum
|
|
from CTFd.models import Pages, db
|
|
from CTFd.schemas.pages import PageSchema
|
|
from CTFd.utils.decorators import admins_only
|
|
|
|
pages_namespace = Namespace("pages", description="Endpoint to retrieve Pages")
|
|
|
|
|
|
PageModel = sqlalchemy_to_pydantic(Pages)
|
|
TransientPageModel = sqlalchemy_to_pydantic(Pages, exclude=["id"])
|
|
|
|
|
|
class PageDetailedSuccessResponse(APIDetailedSuccessResponse):
|
|
data: PageModel
|
|
|
|
|
|
class PageListSuccessResponse(APIListSuccessResponse):
|
|
data: List[PageModel]
|
|
|
|
|
|
pages_namespace.schema_model(
|
|
"PageDetailedSuccessResponse", PageDetailedSuccessResponse.apidoc()
|
|
)
|
|
|
|
pages_namespace.schema_model(
|
|
"PageListSuccessResponse", PageListSuccessResponse.apidoc()
|
|
)
|
|
|
|
|
|
@pages_namespace.route("")
|
|
@pages_namespace.doc(
|
|
responses={200: "Success", 400: "An error occured processing your data"}
|
|
)
|
|
class PageList(Resource):
|
|
@admins_only
|
|
@pages_namespace.doc(
|
|
description="Endpoint to get page objects in bulk",
|
|
responses={
|
|
200: ("Success", "PageListSuccessResponse"),
|
|
400: (
|
|
"An error occured processing the provided or stored data",
|
|
"APISimpleErrorResponse",
|
|
),
|
|
},
|
|
)
|
|
@validate_args(
|
|
{
|
|
"id": (int, None),
|
|
"title": (str, None),
|
|
"route": (str, None),
|
|
"draft": (bool, None),
|
|
"hidden": (bool, None),
|
|
"auth_required": (bool, None),
|
|
"q": (str, None),
|
|
"field": (
|
|
RawEnum(
|
|
"PageFields",
|
|
{"title": "title", "route": "route", "content": "content"},
|
|
),
|
|
None,
|
|
),
|
|
},
|
|
location="query",
|
|
)
|
|
def get(self, query_args):
|
|
q = query_args.pop("q", None)
|
|
field = str(query_args.pop("field", None))
|
|
filters = build_model_filters(model=Pages, query=q, field=field)
|
|
|
|
pages = Pages.query.filter_by(**query_args).filter(*filters).all()
|
|
schema = PageSchema(exclude=["content"], many=True)
|
|
response = schema.dump(pages)
|
|
if response.errors:
|
|
return {"success": False, "errors": response.errors}, 400
|
|
|
|
return {"success": True, "data": response.data}
|
|
|
|
@admins_only
|
|
@pages_namespace.doc(
|
|
description="Endpoint to create a page object",
|
|
responses={
|
|
200: ("Success", "PageDetailedSuccessResponse"),
|
|
400: (
|
|
"An error occured processing the provided or stored data",
|
|
"APISimpleErrorResponse",
|
|
),
|
|
},
|
|
)
|
|
@validate_args(TransientPageModel, location="json")
|
|
def post(self, json_args):
|
|
req = json_args
|
|
schema = PageSchema()
|
|
response = schema.load(req)
|
|
|
|
if response.errors:
|
|
return {"success": False, "errors": response.errors}, 400
|
|
|
|
db.session.add(response.data)
|
|
db.session.commit()
|
|
|
|
response = schema.dump(response.data)
|
|
db.session.close()
|
|
|
|
clear_pages()
|
|
|
|
return {"success": True, "data": response.data}
|
|
|
|
|
|
@pages_namespace.route("/<page_id>")
|
|
@pages_namespace.doc(
|
|
params={"page_id": "ID of a page object"},
|
|
responses={
|
|
200: ("Success", "PageDetailedSuccessResponse"),
|
|
400: (
|
|
"An error occured processing the provided or stored data",
|
|
"APISimpleErrorResponse",
|
|
),
|
|
},
|
|
)
|
|
class PageDetail(Resource):
|
|
@admins_only
|
|
@pages_namespace.doc(description="Endpoint to read a page object")
|
|
def get(self, page_id):
|
|
page = Pages.query.filter_by(id=page_id).first_or_404()
|
|
schema = PageSchema()
|
|
response = schema.dump(page)
|
|
|
|
if response.errors:
|
|
return {"success": False, "errors": response.errors}, 400
|
|
|
|
return {"success": True, "data": response.data}
|
|
|
|
@admins_only
|
|
@pages_namespace.doc(description="Endpoint to edit a page object")
|
|
def patch(self, page_id):
|
|
page = Pages.query.filter_by(id=page_id).first_or_404()
|
|
req = request.get_json()
|
|
|
|
schema = PageSchema(partial=True)
|
|
response = schema.load(req, instance=page, partial=True)
|
|
|
|
if response.errors:
|
|
return {"success": False, "errors": response.errors}, 400
|
|
|
|
db.session.commit()
|
|
|
|
response = schema.dump(response.data)
|
|
db.session.close()
|
|
|
|
clear_pages()
|
|
|
|
return {"success": True, "data": response.data}
|
|
|
|
@admins_only
|
|
@pages_namespace.doc(
|
|
description="Endpoint to delete a page object",
|
|
responses={200: ("Success", "APISimpleSuccessResponse")},
|
|
)
|
|
def delete(self, page_id):
|
|
page = Pages.query.filter_by(id=page_id).first_or_404()
|
|
db.session.delete(page)
|
|
db.session.commit()
|
|
db.session.close()
|
|
|
|
clear_pages()
|
|
|
|
return {"success": True}
|