mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-08 16:59:35 +08:00
112 lines
2.5 KiB
Python
112 lines
2.5 KiB
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Search
|
|
~~~~~
|
|
|
|
copyright: (c) 2014 by Halfmoon Labs, Inc.
|
|
copyright: (c) 2015 by Blockstack.org
|
|
|
|
This file is part of Search.
|
|
|
|
Search is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Search is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Search. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
from pymongo import MongoClient
|
|
|
|
import json
|
|
import re
|
|
|
|
from json import JSONEncoder
|
|
import logging
|
|
from api.config import DEBUG
|
|
|
|
|
|
def config_log(name):
|
|
|
|
from commontools import setup_logging
|
|
setup_logging()
|
|
|
|
log = logging.getLogger(name)
|
|
|
|
if DEBUG:
|
|
log.setLevel(level=logging.DEBUG)
|
|
else:
|
|
log.setLevel(level=logging.INFO)
|
|
|
|
blockcypher_log = logging.getLogger("blockcypher.api")
|
|
blockcypher_log.setLevel(logging.WARNING)
|
|
|
|
return log
|
|
|
|
log = config_log(__name__)
|
|
|
|
|
|
"""
|
|
from bson.objectid import ObjectId
|
|
class MongoEncoder(JSONEncoder):
|
|
def default(self, obj, **kwargs):
|
|
if isinstance(obj, ObjectId):
|
|
return str(obj)
|
|
else:
|
|
return JSONEncoder.default(obj, **kwargs)
|
|
"""
|
|
|
|
|
|
def pretty_dump(input):
|
|
|
|
return json.dumps(input, sort_keys=True, indent=4,
|
|
separators=(',', ': '))
|
|
|
|
|
|
def pretty_print(input):
|
|
print pretty_dump(input)
|
|
|
|
|
|
def error_reply(msg):
|
|
reply = {}
|
|
reply['status'] = -1
|
|
reply['message'] = "ERROR: " + msg
|
|
return pretty_dump(reply)
|
|
|
|
def get_mongo_client():
|
|
from api.config import MONGODB_URI
|
|
return MongoClient(MONGODB_URI)
|
|
|
|
def get_json(data):
|
|
|
|
if isinstance(data, dict):
|
|
pass
|
|
else:
|
|
try:
|
|
data = json.loads(data)
|
|
except:
|
|
return error_reply("input data is not JSON")
|
|
|
|
return data
|
|
|
|
|
|
def validUsername(username):
|
|
|
|
a = re.compile("^[a-z0-9_]{1,60}$")
|
|
|
|
if a.match(username):
|
|
return True
|
|
else:
|
|
parts = username.split(".")
|
|
if len(parts) == 2:
|
|
if a.match(parts[0]) and a.match(parts[1]):
|
|
return True
|
|
return False
|