zcash-grant-system/backend/grant/proposal/models.py

544 lines
18 KiB
Python
Raw Normal View History

2018-09-10 09:55:26 -07:00
import datetime
from functools import reduce
from sqlalchemy import func, or_
from sqlalchemy.ext.hybrid import hybrid_property
2018-09-10 09:55:26 -07:00
from grant.comment.models import Comment
2019-01-22 21:35:22 -08:00
from grant.email.send import send_email
2018-09-10 09:55:26 -07:00
from grant.extensions import ma, db
2018-11-13 08:07:09 -08:00
from grant.utils.exceptions import ValidationException
2019-01-22 21:35:22 -08:00
from grant.utils.misc import dt_to_unix, make_url
from grant.utils.requests import blockchain_get
from grant.utils.enums import ProposalStatus, ProposalStage, Category, ContributionStatus
from grant.settings import PROPOSAL_STAKING_AMOUNT
2018-11-13 08:07:09 -08:00
# Proposal states
2018-11-13 08:07:09 -08:00
DRAFT = 'DRAFT'
PENDING = 'PENDING'
STAKING = 'STAKING'
APPROVED = 'APPROVED'
REJECTED = 'REJECTED'
2018-11-13 08:07:09 -08:00
LIVE = 'LIVE'
DELETED = 'DELETED'
STATUSES = [DRAFT, PENDING, STAKING, APPROVED, REJECTED, LIVE, DELETED]
2018-09-10 09:55:26 -07:00
# Funding stages
2018-09-10 09:55:26 -07:00
FUNDING_REQUIRED = 'FUNDING_REQUIRED'
COMPLETED = 'COMPLETED'
PROPOSAL_STAGES = [FUNDING_REQUIRED, COMPLETED]
# Proposal categories
2018-09-10 09:55:26 -07:00
DAPP = "DAPP"
DEV_TOOL = "DEV_TOOL"
CORE_DEV = "CORE_DEV"
COMMUNITY = "COMMUNITY"
DOCUMENTATION = "DOCUMENTATION"
ACCESSIBILITY = "ACCESSIBILITY"
CATEGORIES = [DAPP, DEV_TOOL, CORE_DEV, COMMUNITY, DOCUMENTATION, ACCESSIBILITY]
# Contribution states
# PENDING = 'PENDING'
CONFIRMED = 'CONFIRMED'
2018-09-10 09:55:26 -07:00
proposal_team = db.Table(
'proposal_team', db.Model.metadata,
db.Column('user_id', db.Integer, db.ForeignKey('user.id')),
db.Column('proposal_id', db.Integer, db.ForeignKey('proposal.id'))
)
2018-11-15 13:51:32 -08:00
class ProposalTeamInvite(db.Model):
__tablename__ = "proposal_team_invite"
id = db.Column(db.Integer(), primary_key=True)
date_created = db.Column(db.DateTime)
proposal_id = db.Column(db.Integer, db.ForeignKey("proposal.id"), nullable=False)
address = db.Column(db.String(255), nullable=False)
accepted = db.Column(db.Boolean)
def __init__(self, proposal_id: int, address: str, accepted: bool = None):
self.proposal_id = proposal_id
self.address = address
self.accepted = accepted
self.date_created = datetime.datetime.now()
@staticmethod
def get_pending_for_user(user):
return ProposalTeamInvite.query.filter(
ProposalTeamInvite.accepted == None,
2018-11-16 11:17:09 -08:00
(func.lower(user.email_address) == func.lower(ProposalTeamInvite.address))
).all()
class ProposalUpdate(db.Model):
__tablename__ = "proposal_update"
id = db.Column(db.Integer(), primary_key=True)
date_created = db.Column(db.DateTime)
proposal_id = db.Column(db.Integer, db.ForeignKey("proposal.id"), nullable=False)
title = db.Column(db.String(255), nullable=False)
content = db.Column(db.Text, nullable=False)
def __init__(self, proposal_id: int, title: str, content: str):
self.proposal_id = proposal_id
self.title = title
self.content = content
self.date_created = datetime.datetime.now()
class ProposalContribution(db.Model):
__tablename__ = "proposal_contribution"
2019-01-08 09:44:54 -08:00
id = db.Column(db.Integer(), primary_key=True)
date_created = db.Column(db.DateTime, nullable=False)
proposal_id = db.Column(db.Integer, db.ForeignKey("proposal.id"), nullable=False)
user_id = db.Column(db.Integer, db.ForeignKey("user.id"), nullable=True)
status = db.Column(db.String(255), nullable=False)
amount = db.Column(db.String(255), nullable=False)
tx_id = db.Column(db.String(255))
2019-01-09 12:48:41 -08:00
user = db.relationship("User")
def __init__(
2019-01-22 21:35:22 -08:00
self,
proposal_id: int,
user_id: int,
amount: str
):
self.proposal_id = proposal_id
self.user_id = user_id
self.amount = amount
self.date_created = datetime.datetime.now()
self.status = ContributionStatus.PENDING
@staticmethod
def get_existing_contribution(user_id: int, proposal_id: int, amount: str):
return ProposalContribution.query.filter_by(
user_id=user_id,
proposal_id=proposal_id,
amount=amount,
status=ContributionStatus.PENDING,
).first()
@staticmethod
def get_by_userid(user_id):
return ProposalContribution.query \
2019-01-09 13:32:51 -08:00
.filter(ProposalContribution.user_id == user_id) \
.filter(ProposalContribution.status != ContributionStatus.DELETED) \
.order_by(ProposalContribution.date_created.desc()) \
.all()
def confirm(self, tx_id: str, amount: str):
self.status = ContributionStatus.CONFIRMED
self.tx_id = tx_id
self.amount = amount
2018-09-10 09:55:26 -07:00
class Proposal(db.Model):
__tablename__ = "proposal"
id = db.Column(db.Integer(), primary_key=True)
date_created = db.Column(db.DateTime)
# Content info
2018-11-13 08:07:09 -08:00
status = db.Column(db.String(255), nullable=False)
2018-09-10 09:55:26 -07:00
title = db.Column(db.String(255), nullable=False)
2018-11-13 08:07:09 -08:00
brief = db.Column(db.String(255), nullable=False)
2018-09-10 09:55:26 -07:00
stage = db.Column(db.String(255), nullable=False)
content = db.Column(db.Text, nullable=False)
category = db.Column(db.String(255), nullable=False)
date_approved = db.Column(db.DateTime)
date_published = db.Column(db.DateTime)
reject_reason = db.Column(db.String(255))
2018-09-10 09:55:26 -07:00
# Payment info
2018-11-14 09:27:40 -08:00
target = db.Column(db.String(255), nullable=False)
2018-11-13 08:07:09 -08:00
payout_address = db.Column(db.String(255), nullable=False)
deadline_duration = db.Column(db.Integer(), nullable=False)
contribution_matching = db.Column(db.Float(), nullable=False, default=0, server_default=db.text("0"))
contributed = db.column_property()
2018-11-13 08:07:09 -08:00
# Relations
team = db.relationship("User", secondary=proposal_team)
2018-11-15 08:02:16 -08:00
comments = db.relationship(Comment, backref="proposal", lazy=True, cascade="all, delete-orphan")
updates = db.relationship(ProposalUpdate, backref="proposal", lazy=True, cascade="all, delete-orphan")
2018-11-26 15:47:24 -08:00
contributions = db.relationship(ProposalContribution, backref="proposal", lazy=True, cascade="all, delete-orphan")
2018-11-15 08:02:16 -08:00
milestones = db.relationship("Milestone", backref="proposal", lazy=True, cascade="all, delete-orphan")
2018-11-15 13:51:32 -08:00
invites = db.relationship(ProposalTeamInvite, backref="proposal", lazy=True, cascade="all, delete-orphan")
2018-09-10 09:55:26 -07:00
def __init__(
self,
status: str = ProposalStatus.DRAFT,
2018-11-13 08:07:09 -08:00
title: str = '',
brief: str = '',
content: str = '',
stage: str = '',
target: str = '0',
payout_address: str = '',
deadline_duration: int = 5184000, # 60 days
2018-11-13 08:07:09 -08:00
category: str = ''
2018-09-10 09:55:26 -07:00
):
2018-11-13 08:07:09 -08:00
self.date_created = datetime.datetime.now()
self.status = status
2018-09-10 09:55:26 -07:00
self.title = title
2018-11-13 08:07:09 -08:00
self.brief = brief
2018-09-10 09:55:26 -07:00
self.content = content
self.category = category
2018-11-13 08:07:09 -08:00
self.target = target
self.payout_address = payout_address
self.deadline_duration = deadline_duration
self.stage = stage
2018-09-10 09:55:26 -07:00
@staticmethod
2018-11-13 08:07:09 -08:00
def validate(proposal):
title = proposal.get('title')
stage = proposal.get('stage')
category = proposal.get('category')
if title and len(title) > 60:
raise ValidationException("Proposal title cannot be longer than 60 characters")
if stage and not ProposalStage.includes(stage):
raise ValidationException("Proposal stage {} is not a valid stage".format(stage))
if category and not Category.includes(category):
raise ValidationException("Category {} not a valid category".format(category))
2018-09-10 09:55:26 -07:00
def validate_publishable(self):
# Require certain fields
required_fields = ['title', 'content', 'brief', 'category', 'target', 'payout_address']
2019-01-27 18:51:05 -08:00
for field in required_fields:
if not hasattr(self, field):
raise ValidationException("Proposal must have a {}".format(field))
# Then run through regular validation
Proposal.validate(vars(self))
2018-09-10 09:55:26 -07:00
@staticmethod
def create(**kwargs):
2018-11-13 08:07:09 -08:00
Proposal.validate(kwargs)
2018-09-10 09:55:26 -07:00
return Proposal(
**kwargs
)
@staticmethod
def get_by_user(user, statuses=[ProposalStatus.LIVE]):
status_filter = or_(Proposal.status == v for v in statuses)
return Proposal.query \
.join(proposal_team) \
.filter(proposal_team.c.user_id == user.id) \
.filter(status_filter) \
.all()
@staticmethod
def get_by_user_contribution(user):
return Proposal.query \
.join(ProposalContribution) \
.filter(ProposalContribution.user_id == user.id) \
.order_by(ProposalContribution.date_created.desc()) \
.all()
def update(
2019-01-22 21:35:22 -08:00
self,
title: str = '',
brief: str = '',
category: str = '',
content: str = '',
target: str = '0',
payout_address: str = '',
deadline_duration: int = 5184000 # 60 days
):
self.title = title
self.brief = brief
self.category = category
2018-11-14 09:27:40 -08:00
self.content = content
self.target = target
self.payout_address = payout_address
self.deadline_duration = deadline_duration
Proposal.validate(vars(self))
def create_contribution(self, user_id: int, amount: float):
contribution = ProposalContribution(
proposal_id=self.id,
user_id=user_id,
amount=amount
)
db.session.add(contribution)
db.session.commit()
return contribution
def get_staking_contribution(self, user_id: int):
contribution = None
remaining = PROPOSAL_STAKING_AMOUNT - float(self.contributed)
# check funding
if remaining > 0:
# find pending contribution for any user
# (always use full staking amout so we can find it)
contribution = ProposalContribution.query.filter_by(
proposal_id=self.id,
amount=str(PROPOSAL_STAKING_AMOUNT),
status=PENDING,
).first()
if not contribution:
contribution = self.create_contribution(user_id, PROPOSAL_STAKING_AMOUNT)
return contribution
def submit_for_approval(self):
self.validate_publishable()
allowed_statuses = [ProposalStatus.DRAFT, ProposalStatus.REJECTED]
# specific validation
if self.status not in allowed_statuses:
raise ValidationException(f"Proposal status must be draft or rejected to submit for approval")
# set to PENDING if staked, else STAKING
if self.is_staked:
self.status = ProposalStatus.PENDING
else:
self.status = ProposalStatus.STAKING
def approve_pending(self, is_approve, reject_reason=None):
self.validate_publishable()
# specific validation
if not self.status == ProposalStatus.PENDING:
raise ValidationException(f"Proposal must be pending to approve or reject")
if is_approve:
self.status = ProposalStatus.APPROVED
self.date_approved = datetime.datetime.now()
for t in self.team:
send_email(t.email_address, 'proposal_approved', {
'user': t,
'proposal': self,
'proposal_url': make_url(f'/proposals/{self.id}'),
'admin_note': 'Congratulations! Your proposal has been approved.'
})
else:
if not reject_reason:
raise ValidationException("Please provide a reason for rejecting the proposal")
self.status = ProposalStatus.REJECTED
self.reject_reason = reject_reason
for t in self.team:
send_email(t.email_address, 'proposal_rejected', {
'user': t,
'proposal': self,
'proposal_url': make_url(f'/proposals/{self.id}'),
'admin_note': reject_reason
})
2018-11-13 08:07:09 -08:00
def publish(self):
self.validate_publishable()
# specific validation
if not self.status == ProposalStatus.APPROVED:
raise ValidationException(f"Proposal status must be approved")
2018-11-13 08:07:09 -08:00
self.date_published = datetime.datetime.now()
self.status = ProposalStatus.LIVE
2018-11-13 08:07:09 -08:00
@hybrid_property
def contributed(self):
contributions = ProposalContribution.query \
.filter_by(proposal_id=self.id, status=ContributionStatus.CONFIRMED) \
.all()
funded = reduce(lambda prev, c: prev + float(c.amount), contributions, 0)
return str(funded)
@hybrid_property
def funded(self):
target = float(self.target)
# apply matching multiplier
funded = float(self.contributed) * (1 + self.contribution_matching)
# if funded > target, just set as target
if funded > target:
return str(target)
return str(funded)
@hybrid_property
def is_staked(self):
return float(self.contributed) >= PROPOSAL_STAKING_AMOUNT
2018-09-10 09:55:26 -07:00
class ProposalSchema(ma.Schema):
class Meta:
model = Proposal
# Fields to expose
fields = (
"stage",
"status",
2018-09-10 09:55:26 -07:00
"date_created",
"date_approved",
"date_published",
"reject_reason",
2018-09-10 09:55:26 -07:00
"title",
"brief",
2018-09-10 09:55:26 -07:00
"proposal_id",
"target",
"contributed",
"is_staked",
"funded",
"content",
2018-09-10 09:55:26 -07:00
"comments",
"updates",
2018-09-10 09:55:26 -07:00
"milestones",
"category",
"team",
"payout_address",
"deadline_duration",
"contribution_matching",
2018-11-16 08:16:52 -08:00
"invites"
2018-09-10 09:55:26 -07:00
)
date_created = ma.Method("get_date_created")
date_approved = ma.Method("get_date_approved")
date_published = ma.Method("get_date_published")
2018-09-10 09:55:26 -07:00
proposal_id = ma.Method("get_proposal_id")
comments = ma.Nested("CommentSchema", many=True)
updates = ma.Nested("ProposalUpdateSchema", many=True)
team = ma.Nested("UserSchema", many=True)
2018-09-10 09:55:26 -07:00
milestones = ma.Nested("MilestoneSchema", many=True)
2018-11-15 13:51:32 -08:00
invites = ma.Nested("ProposalTeamInviteSchema", many=True)
2018-09-10 09:55:26 -07:00
def get_proposal_id(self, obj):
return obj.id
2018-09-10 09:55:26 -07:00
def get_date_created(self, obj):
return dt_to_unix(obj.date_created)
def get_date_approved(self, obj):
return dt_to_unix(obj.date_approved) if obj.date_approved else None
def get_date_published(self, obj):
return dt_to_unix(obj.date_published) if obj.date_published else None
2018-09-10 09:55:26 -07:00
proposal_schema = ProposalSchema()
proposals_schema = ProposalSchema(many=True)
2019-01-09 13:57:15 -08:00
user_fields = [
"proposal_id",
"status",
"title",
"brief",
"target",
"is_staked",
2019-01-09 13:57:15 -08:00
"funded",
"contribution_matching",
2019-01-09 13:57:15 -08:00
"date_created",
"date_approved",
"date_published",
"reject_reason",
"team",
]
user_proposal_schema = ProposalSchema(only=user_fields)
user_proposals_schema = ProposalSchema(many=True, only=user_fields)
class ProposalUpdateSchema(ma.Schema):
class Meta:
model = ProposalUpdate
# Fields to expose
fields = (
"update_id",
"date_created",
"proposal_id",
"title",
"content"
)
date_created = ma.Method("get_date_created")
proposal_id = ma.Method("get_proposal_id")
update_id = ma.Method("get_update_id")
def get_update_id(self, obj):
return obj.id
def get_proposal_id(self, obj):
return obj.proposal_id
def get_date_created(self, obj):
return dt_to_unix(obj.date_created)
proposal_update_schema = ProposalUpdateSchema()
proposals_update_schema = ProposalUpdateSchema(many=True)
2018-11-15 13:51:32 -08:00
class ProposalTeamInviteSchema(ma.Schema):
class Meta:
model = ProposalTeamInvite
fields = (
"id",
"date_created",
"address",
"accepted"
)
date_created = ma.Method("get_date_created")
def get_date_created(self, obj):
return dt_to_unix(obj.date_created)
2018-11-15 13:51:32 -08:00
proposal_team_invite_schema = ProposalTeamInviteSchema()
proposal_team_invites_schema = ProposalTeamInviteSchema(many=True)
2019-01-22 21:35:22 -08:00
# TODO: Find a way to extend ProposalTeamInviteSchema instead of redefining
class InviteWithProposalSchema(ma.Schema):
class Meta:
model = ProposalTeamInvite
fields = (
"id",
"date_created",
"address",
"accepted",
"proposal"
)
date_created = ma.Method("get_date_created")
proposal = ma.Nested("ProposalSchema")
def get_date_created(self, obj):
return dt_to_unix(obj.date_created)
invite_with_proposal_schema = InviteWithProposalSchema()
2018-11-26 17:14:00 -08:00
invites_with_proposal_schema = InviteWithProposalSchema(many=True)
class ProposalContributionSchema(ma.Schema):
class Meta:
model = ProposalContribution
# Fields to expose
fields = (
"id",
"proposal",
"user",
2019-01-08 09:44:54 -08:00
"status",
"tx_id",
"amount",
"date_created",
"addresses",
)
proposal = ma.Nested("ProposalSchema")
user = ma.Nested("UserSchema")
date_created = ma.Method("get_date_created")
addresses = ma.Method("get_addresses")
def get_date_created(self, obj):
return dt_to_unix(obj.date_created)
def get_addresses(self, obj):
return blockchain_get('/contribution/addresses', {'contributionId': obj.id})
proposal_contribution_schema = ProposalContributionSchema()
proposal_contributions_schema = ProposalContributionSchema(many=True)
2019-01-09 12:48:41 -08:00
user_proposal_contribution_schema = ProposalContributionSchema(exclude=['user', 'addresses'])
user_proposal_contributions_schema = ProposalContributionSchema(many=True, exclude=['user', 'addresses'])
proposal_proposal_contribution_schema = ProposalContributionSchema(exclude=['proposal', 'addresses'])
proposal_proposal_contributions_schema = ProposalContributionSchema(many=True, exclude=['proposal', 'addresses'])