mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-09 16:51:34 +08:00
88 lines
2.4 KiB
Python
88 lines
2.4 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Blockstack Core
|
|
~~~~~
|
|
|
|
copyright: (c) 2014-2017 by Blockstack Inc.
|
|
copyright: (c) 2017 by Blockstack.org
|
|
|
|
This file is part of Blockstack Core.
|
|
|
|
Blockstack Core 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.
|
|
|
|
Blockstack Core 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 Blockstack Core. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
import re
|
|
import json
|
|
from .config import MAX_PROFILE_LIMIT
|
|
|
|
|
|
def build_api_call_object(text):
|
|
api_call = {}
|
|
|
|
first_line, text = text.split('\n', 1)
|
|
api_call['title'] = first_line
|
|
|
|
for section in text.split('\n\n#### '):
|
|
section = section.replace('#### ', '')
|
|
if ':\n' in section:
|
|
key, value = section.split(':\n', 1)
|
|
value = value.strip()
|
|
if '[]' in key:
|
|
key = key.replace('[]', '')
|
|
parts = value.split('\n')
|
|
value = []
|
|
for part in parts:
|
|
json_part = json.loads(part)
|
|
value.append(json_part)
|
|
api_call[key.strip()] = value
|
|
|
|
return api_call
|
|
|
|
|
|
def get_api_calls(filename):
|
|
api_calls = []
|
|
|
|
pattern = re.compile(
|
|
r"""\n## .*?_end_""", re.DOTALL)
|
|
|
|
with open(filename) as f:
|
|
text = f.read()
|
|
for match in re.findall(pattern, text):
|
|
match = re.sub(r'\n## ', '', match)
|
|
match = re.sub(r'\n_end_', '', match)
|
|
api_call = build_api_call_object(match)
|
|
api_calls.append(api_call)
|
|
|
|
return api_calls
|
|
|
|
|
|
def camelcase_to_snakecase(name):
|
|
s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)
|
|
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower()
|
|
|
|
|
|
def utf8len(s):
|
|
if type(s) == unicode:
|
|
return len(s)
|
|
else:
|
|
return len(s.encode('utf-8'))
|
|
|
|
|
|
def zone_file_is_too_big(profile):
|
|
if utf8len(json.dumps(profile)) > MAX_PROFILE_LIMIT:
|
|
return True
|
|
else:
|
|
return False
|