Пример #1
0
  def post(self):
    isLocal = os.environ['SERVER_SOFTWARE'].startswith('Dev')
    if not isLocal:
      return
    api_key = self.request.get('apikey')
    account_id = self.request.get('accountid')
    badge_id = self.request.get('badgeid')
    badge_theme = self.request.get('theme')
    user_id = self.request.get('user')
    if not badge_theme or not badge_id or not account_id or not api_key:
      ret = bad_args()
      self.response.out.write(ret)
      return

    user_key = users_dao.get_user_key(account_id, user_id)
    user_ref = users_dao.get_user(account_id, user_id)
    if user_ref:
      badge_instances = badges_dao.get_user_badges(user_ref)
      for b in badge_instances:
        badges_dao.delete_badge_instance(b.key().name())
      users_dao.delete_user(user_key)

    trophy_case_widget = TrophyCase(key_name=account_id)
    points_widget = Points(key_name=account_id)
    rank_widget = Rank(key_name=account_id)
    notifier_widget = Notifier(key_name=account_id)
    leader_widget = Leaderboard(key_name=account_id)
    milestones_widget = Milestones(key_name=account_id)
    acc = Accounts(key_name=account_id,
                   email=account_id,
                   password="******",
                   isEnabled=constants.ACCOUNT_STATUS.ENABLED, 
                   accountType="admin",
                   paymentType="free",
                   cookieKey="xxxxxxxxx", 
                   apiKey=api_key, 
                   trophyWidget=trophy_case_widget,
                   pointsWidget=points_widget,
                   rankWidget=rank_widget,
                   leaderWidget=leader_widget,
                   milestoneWidget=milestones_widget)

     # delete ten badges
    for ii in range(0,10):
      badgeKey = badges_dao.create_badge_key(account_id, badge_theme, str(ii), "private")
      badges_dao.delete_badge_image(badgeKey)
      badges_dao.delete_badge(badgeKey)

    widgets_dao.delete_widget(account_id, "TrophyCase")
    widgets_dao.delete_widget(account_id, "Points")
    widgets_dao.delete_widget(account_id, "Rank")
    widgets_dao.delete_widget(account_id, "Leaderboard")
    widgets_dao.delete_widget(account_id, "Notifier")
    widgets_dao.delete_widget(account_id, "Milestones")
    accounts_dao.delete_account(account_id)
    self.response.out.write(success_ret())
    return
Пример #2
0
def create_account(email,
                   password,
                   enable=False,
                   account_type="bronze",
                   payment_type="free"):
    """
  Creates an account with all the other needed dependencies properly initialized.
  """
    """
  Required:
  email = db.EmailProperty(required=True)
  password = db.StringProperty(required=True);
  isEnabled = db.StringProperty(required=True, choices=ACCOUNT_STATUS.RANGE_OF_VALUES)
  accountType = db.StringProperty(required=True, choices=set(ACCOUNT_TYPES)) 
  paymentType = db.StringProperty(required=True,choices=set(PAYMENT_TYPES))
  cookieKey = db.StringProperty(required=True)
  apiKey = db.StringProperty(required=True)
  trophyWidget = db.ReferenceProperty(required=True, reference_class=TrophyCase)
  pointsWidget = db.ReferenceProperty(required=True, reference_class=Points)
  rankWidget = db.ReferenceProperty(required=True, reference_class=Rank)
  """

    new_trophy_case = TrophyCase(key_name=email)
    memcache_db.save_entity(new_trophy_case, email)

    new_rank = Rank(key_name=email)
    memcache_db.save_entity(new_rank, email)

    new_points = Points(key_name=email)
    memcache_db.save_entity(new_points, email)

    new_notifier = Notifier(key_name=email)
    memcache_db.save_entity(new_notifier, email)

    new_leader = Leaderboard(key_name=email)
    memcache_db.save_entity(new_leader, email)

    new_milestones = Milestones(key_name=email)
    memcache_db.save_entity(new_milestones, email)
    """ Generate an API key """
    api_key = str(uuid.uuid4())
    """ Hash the password """
    hashed_password = hashlib.sha1(password).hexdigest()

    enable_account = ACCOUNT_STATUS.PENDING_CREATE
    if enable:
        enable_account = ACCOUNT_STATUS.ENABLED

    newacc = Accounts(key_name=email,
                      email=email,
                      password=hashed_password,
                      isEnabled=enable_account,
                      accountType=account_type,
                      paymentType=payment_type,
                      apiKey=api_key,
                      cookieKey="xxxxxxxxxxxxxx",
                      trophyWidget=new_trophy_case,
                      pointsWidget=new_points,
                      rankWidget=new_rank,
                      notifierWidget=new_notifier,
                      leaderWidget=new_leader,
                      milestoneWidget=new_milestones)

    try:
        memcache_db.save_entity(newacc, email)
    except:
        logging.error("Failed to create account")

    users_dao.create_new_user(email, constants.ANONYMOUS_USER)

    return newacc