本文整理汇总了Python中hackathon.hmongo.models.Hackathon.objects方法的典型用法代码示例。如果您正苦于以下问题:Python Hackathon.objects方法的具体用法?Python Hackathon.objects怎么用?Python Hackathon.objects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hackathon.hmongo.models.Hackathon
的用法示例。
在下文中一共展示了Hackathon.objects方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_recyclable_hackathon_list
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_recyclable_hackathon_list(self):
# todo filter hackathons by hackathon.config in a db-level if possible
hackathons = Hackathon.objects(status=HACK_STATUS.ONLINE,
event_start_time__lt=self.util.get_now(),
event_end_time__gt=self.util.get_now()
).all()
return filter(lambda h: self.is_recycle_enabled(h), hackathons)
示例2: get_entitled_hackathons_list
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_entitled_hackathons_list(self, user):
"""Get hackathon id list that specific user is entitled to manage
:type user_id: int
:param user_id: id of user
:rtype: list
:return list of hackathon simple
"""
user_filter = Q()
if not user.is_super:
user_filter = Q(user=user, role=HACK_USER_TYPE.ADMIN)
hids = [uh.hackathon.id for uh in UserHackathon.objects(user_filter).no_dereference().only("hackathon")]
hack_list = Hackathon.objects(id__in=hids).only(
'name',
'display_name',
'ribbon',
'short_description',
'location',
'banners',
'status',
'creator',
'type',
'config',
'event_start_time',
'event_end_time').order_by("-event_end_time")
all_hackathon = [h.dic() for h in hack_list]
return all_hackathon
示例3: check_hackathon_for_pre_allocate_expr
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def check_hackathon_for_pre_allocate_expr(self):
"""Check all hackathon for pre-allocate
Add an interval job for hackathon if it's pre-allocate is enabled.
Otherwise try to remove the schedule job
"""
hackathon_list = Hackathon.objects()
for hack in hackathon_list:
job_id = "pre_allocate_expr_" + str(hack.id)
is_job_exists = self.scheduler.has_job(job_id)
if self.__is_pre_allocate_enabled(hack):
if is_job_exists:
self.log.debug("pre_allocate job already exists for hackathon %s" % str(hack.name))
continue
self.log.debug("add pre_allocate job for hackathon %s" % str(hack.name))
next_run_time = self.util.get_now() + timedelta(seconds=(20 * random.random()))
pre_allocate_interval = self.__get_pre_allocate_interval(hack)
self.scheduler.add_interval(feature="expr_manager",
method="pre_allocate_expr",
id=job_id,
context=Context(hackathon_id=hack.id),
next_run_time=next_run_time,
seconds=pre_allocate_interval
)
elif is_job_exists:
self.log.debug("remove job for hackathon %s since pre_allocate is disabled" % str(hack.id))
self.scheduler.remove_job(job_id)
return True
示例4: pre_allocate_expr
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def pre_allocate_expr(self, context):
# TODO: too complex, not check
hackathon_id = context.hackathon_id
self.log.debug("executing pre_allocate_expr for hackathon %s " % hackathon_id)
hackathon = Hackathon.objects(id=hackathon_id).first()
hackathon_templates = hackathon.templates
for template in hackathon_templates:
try:
template = template
pre_num = int(hackathon.config.get(HACKATHON_CONFIG.PRE_ALLOCATE_NUMBER, 1))
query = Q(status=EStatus.STARTING) | Q(status=EStatus.RUNNING)
curr_num = Experiment.objects(user=None, hackathon=hackathon, template=template).filter(query).count()
self.log.debug("pre_alloc_exprs: pre_num is %d, curr_num is %d, remain_num is %d " %
(pre_num, curr_num, pre_num - curr_num))
# TODO Should support VE_PROVIDER.K8S only in future after k8s Template is supported
# if template.provider == VE_PROVIDER.K8S:
if curr_num < pre_num:
start_num = Experiment.objects(user=None, template=template, status=EStatus.STARTING).count()
allowed_currency = int(hackathon.config.get(HACKATHON_CONFIG.PRE_ALLOCATE_CONCURRENT, 1))
if start_num >= allowed_currency:
self.log.debug(
"there are already %d Experiments starting, will check later ... " % allowed_currency)
return
else:
remain_num = min(allowed_currency, pre_num) - start_num
self.log.debug(
"no starting template: %s , remain num is %d ... " % (template.name, remain_num))
self.start_pre_alloc_exprs(None, template.name, hackathon.name, remain_num)
break
except Exception as e:
self.log.error(e)
self.log.error("check default experiment failed")
示例5: get_hackathon_by_id
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_hackathon_by_id(self, hackathon_id):
"""Query hackathon by id
:type hackathon_id: str or ObjectId are both ok
:param hackathon_id: _id of hackathon
:return hackathon instance or None
"""
return Hackathon.objects(id=hackathon_id).first()
示例6: get_all_granted_awards
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_all_granted_awards(self, limit):
teams = Team.objects.all()
teams_with_awards = [team for team in teams if not team.awards == []]
teams_with_awards.sort(key=lambda t: (
t.hackathon.id,
Hackathon.objects(id=t.hackathon.id, awards__id=t.awards[0]).first().awards.get(id=t.awards[0]).level
), reverse=True) # sort by hackathon and then sort by award level.
teams_with_awards = teams_with_awards[0: int(limit)]
return [self.__get_hackathon_and_show_detail(team) for team in teams_with_awards]
示例7: get_certificates_by_expr
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_certificates_by_expr(self, expr_id):
"""Get certificates by experiment id
"""
# expr = self.db.get_object(Experiment, expr_id)
expr = Experiment.objects(id=expr_id)
# hak = self.db.find_all_objects_by(HackathonAzureKey, hackathon_id=expr.hackathon_id)
hak = Hackathon.objects(id=expr.hackathon_id).first().azure_keys[0]
if not hak:
raise Exception("no azure key configured")
return map(lambda key: self.db.get_object(AzureKey, key.azure_key_id), hak)
示例8: schedule_pre_allocate_host_server_job
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def schedule_pre_allocate_host_server_job(self):
"""
Schedule pre-allocate host server for every hackathon found in DB table:hackathon
"""
self.log.debug('Begin to check host server and prepare resource.')
min_avavilabe_container = 5
for hackathon in Hackathon.objects():
if self.__exist_request_host_server_by_hackathon_id(min_avavilabe_container, hackathon.id):
continue
if not self.start_new_docker_host_vm(hackathon):
self.log.error('Schedule pre-allocate host server for hackathon:%s failed.' % hackathon.name)
示例9: get_hackathon_list
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_hackathon_list(self, args):
# get values from request's QueryString
page = int(args.get("page", 1))
per_page = int(args.get("per_page", 20))
order_by = args.get("order_by", "create_time")
status = args.get("status")
name = args.get("name")
# build query by search conditions and order_by
status_filter = Q()
name_filter = Q()
condition_filter = Q()
order_by_condition = '-id'
if status:
status_filter = Q(status=status)
if name:
name_filter = Q(name__contains=name)
if order_by == 'create_time': # 最新发布
order_by_condition = '-create_time'
elif order_by == 'event_start_time': # 即将开始
order_by_condition = '-event_start_time'
elif order_by == 'registered_users_num': # 人气热点
# hackathons with zero registered users would not be shown.
hot_hackathon_stat = HackathonStat.objects(type=HACKATHON_STAT.REGISTER, count__gt=0).order_by('-count')
hot_hackathon_list = [stat.hackathon.id for stat in hot_hackathon_stat]
condition_filter = Q(id__in=hot_hackathon_list)
else:
order_by_condition = '-id'
# perform db query with pagination
pagination = Hackathon.objects(status_filter & name_filter & condition_filter).order_by(
order_by_condition).paginate(page,
per_page)
hackathon_list = pagination.items
hackathon_stat = HackathonStat.objects(hackathon__in=hackathon_list)
user = None
user_hackathon = []
team = []
if self.user_manager.validate_login():
user = g.user
user_hackathon = UserHackathon.objects(user=user, hackathon__in=hackathon_list)
team = Team.objects(members__user=user, hackathon__in=hackathon_list)
def func(hackathon):
return self.__fill_hackathon_detail(hackathon, user, hackathon_stat, user_hackathon, team)
# return serializable items as well as total count
return self.util.paginate(pagination, func)
示例10: get_hackathon_by_name
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_hackathon_by_name(self, name):
"""Get hackathon accoring the unique name
:type name: str|unicode
:param name: name of hackathon
:rtype: Hackathon
:return hackathon instance if found else None
"""
if not name:
return None
return Hackathon.objects(name=name).first()
示例11: get_entitled_hackathons_list
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_entitled_hackathons_list(self, user):
"""Get hackathon id list that specific user is entitled to manage
:rtype: list
:return list of hackathon simple
"""
if not user.is_super:
hack_list = UserHackathon.objects(user=user, role=HACK_USER_TYPE.ADMIN).distinct("hackathon")
hack_list.sort(key=lambda s: s.create_time, reverse=True)
else:
hack_list = Hackathon.objects().all().order_by("-create_time")
all_hackathon = [h.dic() for h in hack_list]
return all_hackathon
示例12: __load_azure_key_id
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def __load_azure_key_id(self, context):
# todo which key to use? how to support multi subscription?
azure_key = None
if "azure_key_id" in context:
azure_key = AzureKey.objects(id=context.azure_key_id).first()
if not azure_key:
expr = Experiment.objects(id=context.experiment_id).only("azure_key").first()
azure_key = expr.azure_key
if not azure_key:
hackathon = Hackathon.objects(id=context.hackathon_id).first()
if not hackathon or (len(hackathon.azure_keys) == 0):
raise Exception("no azure key configured")
azure_key = hackathon.azure_keys[0]
context.azure_key_id = azure_key.id
return azure_key
示例13: validate_hackathon_name
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def validate_hackathon_name(self):
if HTTP_HEADER.HACKATHON_NAME in request.headers:
try:
hackathon_name = request.headers[HTTP_HEADER.HACKATHON_NAME]
hackathon = Hackathon.objects(name=hackathon_name).first()
if hackathon:
g.hackathon = hackathon
return True
else:
self.log.debug("cannot find hackathon by name %s" % hackathon_name)
return False
except Exception as ex:
self.log.error(ex)
self.log.debug("hackathon_name invalid")
return False
else:
self.log.debug("hackathon_name not found in headers")
return False
示例14: get_docker_host_server
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def get_docker_host_server(self, context):
hackathon = Hackathon.objects(id=context.hackathon_id).no_dereference().first()
try:
host_resp = self.docker_host_manager.get_available_docker_host(hackathon)
except Exception as e:
self.log.error(e)
host_resp = Context(state=DHS_QUERY_STATE.ONGOING)
context.trial = context.get("trial", 0) + 1
if host_resp.state == DHS_QUERY_STATE.SUCCESS:
# assign ports
self.__assign_ports(context, host_resp.docker_host_server)
elif host_resp.state == DHS_QUERY_STATE.ONGOING and context.trial < 20:
# tried up to 20 times
self.log.debug("host servers are all busy, %d times tried, will retry in 3 seconds" % context.trial)
self.scheduler.add_once(FEATURE, "get_docker_host_server", context, seconds=3)
else:
self.log.debug("no available host server")
self._on_virtual_environment_failed(context)
示例15: pre_allocate_expr
# 需要导入模块: from hackathon.hmongo.models import Hackathon [as 别名]
# 或者: from hackathon.hmongo.models.Hackathon import objects [as 别名]
def pre_allocate_expr(self, context):
# TODO: too complex, not check
hackathon_id = context.hackathon_id
self.log.debug("executing pre_allocate_expr for hackathon %s " % hackathon_id)
hackathon = Hackathon.objects(id=hackathon_id).first()
hackathon_templates = hackathon.templates
for template in hackathon_templates:
try:
template = template
pre_num = int(hackathon.config.get("pre_allocate_number", 1))
query = Q(status=EStatus.STARTING) | Q(status=EStatus.RUNNING)
curr_num = Experiment.objects(user=None, hackathon=hackathon, template=template).filter(query).count()
if template.provider == VE_PROVIDER.AZURE:
if curr_num < pre_num:
remain_num = pre_num - curr_num
start_num = Experiment.objects(user=None, template=template, status=EStatus.STARTING).count()
if start_num > 0:
self.log.debug("there is an azure env starting, will check later ... ")
return
else:
self.log.debug(
"no starting template: %s , remain num is %d ... " % (template.name, remain_num))
self.start_expr(None, template.name, hackathon.name)
break
elif template.provider == VE_PROVIDER.DOCKER:
if hackathon.config.get('cloud_provider') == CLOUD_PROVIDER.ALAUDA:
# don't create pre-env if alauda used
continue
self.log.debug(
"template name is %s, hackathon name is %s" % (template.name, hackathon.name))
if curr_num < pre_num:
remain_num = pre_num - curr_num
start_num = Experiment.objects(user=None, template=template, status=EStatus.STARTING).count()
if start_num > 0:
self.log.debug("there is an docker container starting, will check later ... ")
return
self.log.debug("no idle template: %s, remain num is %d ... " % (template.name, remain_num))
self.start_expr(None, template.name, hackathon.name)
break
except Exception as e:
self.log.error(e)
self.log.error("check default experiment failed")