from .parser import parse


def common(request, poster, text, allow_mentions=True, force_shva=False):
    """
    Common flavour

    Used in places where full Misago flavour is desired

    Breaks text into paragraphs, supports code, spoiler and quote blocks,
    headers, lists, images, spoilers, text styles

    Returns dict object
    """
    return parse(
        text,
        request,
        poster,
        allow_mentions=allow_mentions,
        force_shva=force_shva,
    )


def limited(request, text):
    """
    Limited flavour

    Breaks text in paragraphs, supports strong, em, i, u, b,
    automatically linkifies links.

    Returns parsed text
    """
    result = parse(
        text,
        request,
        request.user,
        allow_mentions=False,
        allow_links=True,
        allow_images=False,
        allow_blocks=False,
    )

    return result['parsed_text']


def signature(request, owner, text):
    result = parse(
        text,
        request,
        owner,
        allow_mentions=False,
        allow_blocks=owner.acl_cache['allow_signature_blocks'],
        allow_links=owner.acl_cache['allow_signature_links'],
        allow_images=owner.acl_cache['allow_signature_images'],
    )

    return result['parsed_text']