FIX: conflict in settings.py
[myslice.git] / manifold / metadata.py
1 import json 
2
3 from manifold.manifoldresult import ManifoldResult
4 from manifold.manifoldapi import ManifoldAPI
5
6 debug=False
7 debug=True
8
9 # turn this on if you want to work offline
10 work_offline=False
11 #work_offline=True
12
13 class MetaData:
14
15     def __init__ (self, auth):
16         self.auth=auth
17         self.hash_by_object={}
18
19     def fetch (self):
20         offline_filename="offline-metadata.json"
21         if work_offline:
22             try:
23                 with file(offline_metadata) as f:
24                     self.hash_by_object=json.loads(f.read())
25                 return
26             except:
27                 print "metadata.work_offline: failed to decode %s"%offline_filename
28         manifold_api = ManifoldAPI(self.auth)
29         fields = ['table', 'column.name', 'column.qualifier', 'column.type', 'column.is_array', 'column.description', 'column.default', 'key', 'capability']
30         #fields = ['table', 'column.column',
31         #          'column.description','column.header', 'column.title',
32         #          'column.unit', 'column.info_type',
33         #          'column.resource_type', 'column.value_type',
34         #          'column.allowed_values', 'column.platforms.platform',
35         #          'column.platforms.platform_url']
36         result = manifold_api.Get({
37             'object': 'local:object', # proposed to replace metadata:table
38             'fields':     fields 
39         })
40
41         if result['code'] == 1: # warning
42             messages.warning(request, result['description'])
43         elif result['code'] == 2:
44             messages.error(request, result['description'])
45             # XXX FAIL HERE XXX
46
47         rows = result.ok_value()
48 # API errors will be handled by the outer logic
49 #        if not rows:
50 #            print "Failed to retrieve metadata",rows_result.error()
51 #            rows=[]
52         self.hash_by_object = dict ( [ (row['table'], row) for row in rows ] )
53         # save for next time we use offline mode
54         if debug and rows:
55             with file(offline_filename,'w') as f:
56                 f.write(json.dumps(self.hash_by_object))
57
58     def to_json(self):
59         return json.dumps(self.hash_by_object)
60
61     def details_by_object (self, object):
62         return self.hash_by_object[object]
63
64     def sorted_fields_by_object (self, object):
65         return self.hash_by_object[object]['column'].sort()
66
67     def get_field_type(self, object, field):
68         print "Temp fix for metadata::get_field_type() -> consider moving to manifold.core.metadata soon"
69         return field