Working on membership, fundraising, and products and other things

This commit is contained in:
Scott Idem
2021-07-01 17:55:25 -04:00
parent 3631f2f122
commit a56804cee6
10 changed files with 425 additions and 534 deletions

View File

@@ -10,6 +10,7 @@ from app.config import settings
from app.db_sql import *
from .api_crud import delete_obj_template, get_obj_template, get_obj_li_template, patch_obj_template, post_obj_template
from app.methods.post_methods import get_post_rec_list, load_post_obj
from app.models.post_models import Post_Base
from app.models.response_models import *
@@ -18,7 +19,7 @@ from app.models.response_models import *
router = APIRouter()
@router.post('', response_model=Resp_Body_Base)
@router.post('/post', response_model=Resp_Body_Base)
async def post_post_obj(
obj: Post_Base,
x_account_id: str = Header(...),
@@ -41,7 +42,7 @@ async def post_post_obj(
return result
@router.patch('/{obj_id}', response_model=Resp_Body_Base)
@router.patch('/post/{obj_id}', response_model=Resp_Body_Base)
async def patch_post_obj(
obj_id: str = Query(..., min_length=1, max_length=22),
obj: Post_Base = None,
@@ -68,7 +69,7 @@ async def patch_post_obj(
return result
@router.get('/list', response_model=Resp_Body_Base)
@router.get('/post/list', response_model=Resp_Body_Base)
async def get_post_obj_li(
for_obj_type: Optional[str] = Query(None, min_length=2, max_length=50),
for_obj_id: Optional[str] = Query(None, min_length=1, max_length=22),
@@ -90,7 +91,68 @@ async def get_post_obj_li(
return result
@router.get('/{obj_id}', response_model=Resp_Body_Base)
# ### BEGIN ### API Post ### get_account_obj_post_list() ###
# Working well as of 2021-06-28. Using as a template for other routes.
@router.get('/post/{account_id}/post/list', response_model=Resp_Body_Base)
async def get_account_obj_post_list(
account_id: str = Query(..., min_length=1, max_length=22),
limit: int = 500, # For now this covers any included objects or object lists
enabled: str = 'enabled', # For now this covers any included objects or object lists
archive_on: datetime.datetime = None,
inc_account_cfg: bool = False,
inc_address: bool = False, # Under contact
inc_contact: bool = False,
inc_person: bool = False,
inc_post_comment_list: bool = False,
inc_user: bool = False,
x_account_id: str = Header(...),
by_alias: Optional[bool] = True,
exclude_unset: Optional[bool] = True,
):
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if account_id := redis_lookup_id_random(record_id_random=account_id, table_name='account'): pass
else:
return mk_resp(data=None, status_code=404)
response_data = None
# Updated 2021-06-28
if post_rec_list_result := get_post_rec_list(
for_obj_type = 'account',
for_obj_id = account_id,
limit = limit,
enabled = enabled,
archive_on = archive_on,
):
post_result_list = []
for post_rec in post_rec_list_result:
if load_post_result := load_post_obj(
post_id = post_rec.get('post_id', None),
limit = limit,
by_alias = by_alias,
exclude_unset = exclude_unset,
# model_as_dict = model_as_dict,
enabled = enabled,
# inc_address = inc_address,
# inc_contact = inc_contact,
inc_person = inc_person,
inc_post_comment_list = inc_post_comment_list,
inc_user = inc_user,
):
post_result_list.append(load_post_result)
else:
post_result_list.append(None)
response_data = post_result_list
else:
return mk_resp(data=False, status_code=400) # Bad Request
return mk_resp(data=response_data)
# ### END ### API Post ### get_account_obj_post_list() ###
@router.get('/post/{obj_id}', response_model=Resp_Body_Base)
async def get_post_obj(
obj_id: str = Query(..., min_length=1, max_length=22),
x_account_id: str = Header(...),
@@ -110,7 +172,7 @@ async def get_post_obj(
return result
@router.delete('/{obj_id}', response_model=Resp_Body_Base)
@router.delete('/post/{obj_id}', response_model=Resp_Body_Base)
async def delete_post_obj(
obj_id: str = Query(..., min_length=1, max_length=22),
x_account_id: str = Header(...),