2nd attempt ...
[sfa.git] / sfa / senslab / slab-import.py
1 ###########################################################################
2 #    Copyright (C) 2011 by root                                      
3 #    <root@FlabFedora2>                                                             
4 #
5 # Copyright: See COPYING file that comes with this distribution
6 #
7 ###########################################################################
8 import sys
9 from sfa.senslab.OARrestapi import OARapi
10 from sfa.senslab.LDAPapi import LDAPapi
11 from sfa.senslab.slabdriver import SlabDriver
12 from sfa.util.config import Config
13 from sfa.util.xrn import hrn_to_urn, get_authority,Xrn,get_leaf
14 from sfa.util.table import SfaTable
15 from sfa.util.record import SfaRecord
16 from sfa.trust.hierarchy import Hierarchy
17 from sfa.trust.certificate import Keypair
18 from sfa.trust.gid import create_uuid
19
20
21 AuthHierarchy = Hierarchy()
22 table = SfaTable()
23 if not table.exists():
24     table.create()
25     
26 def create_top_level_auth_records(hrn):
27     """
28     Create top level records (includes root and sub authorities (local/remote)
29     """
30     print>>sys.stderr, "\r\n =========SenslabImport create_top_level_auth_records\r\n"
31     urn = hrn_to_urn(hrn, 'authority')
32     # make sure parent exists
33     parent_hrn = get_authority(hrn)
34     if not parent_hrn:
35         parent_hrn = hrn
36     if not parent_hrn == hrn:
37         create_top_level_auth_records(parent_hrn)
38         
39     
40     # create the authority if it doesnt already exist 
41     if not AuthHierarchy.auth_exists(urn):
42         AuthHierarchy.create_auth(urn)
43     
44     # create the db record if it doesnt already exist    
45     auth_info = AuthHierarchy.get_auth_info(hrn)
46    
47     auth_record = table.find({'type': 'authority', 'hrn': hrn})
48
49     if not auth_record:
50         auth_record = SfaRecord(hrn=hrn, gid=auth_info.get_gid_object(), type="authority", pointer=-1)
51         auth_record['authority'] = get_authority(auth_record['hrn'])
52         print sys.stderr, " \r\n \t slab-import : auth record %s inserted" %(auth_record['hrn'])
53         table.insert(auth_record)
54         print>>sys.stderr, "\r\n ========= \t\t SenslabImport NO AUTH RECORD \r\n" ,auth_record['authority']
55         
56     
57 def import_node(hrn, node):
58
59     # ASN.1 will have problems with hrn's longer than 64 characters
60     if len(hrn) > 64:
61         hrn = hrn[:64]
62
63     node_record = table.find({'type': 'node', 'hrn': hrn})
64     pkey = Keypair(create=True)
65     urn = hrn_to_urn(hrn, 'node')
66     node_gid = AuthHierarchy.create_gid(urn, create_uuid(), pkey)
67     node_record = SfaRecord(hrn=hrn, gid=node_gid, type="node", pointer=node['node_id'])
68     node_record['authority'] = get_authority(node_record['hrn'])
69     existing_records = table.find({'hrn': hrn, 'type': 'node', 'pointer': node['node_id']})
70     if not existing_records:
71         print>>sys.stderr, " \r\n \t slab-import : node record %s inserted" %(node_record['hrn'])
72         table.insert(node_record)
73     else:
74         existing_record = existing_records[0]
75         node_record['record_id'] = existing_record['record_id']
76         table.update(node_record)
77
78 # person is already a sfa record 
79 def import_person(person):       
80     existing_records = table.find({'hrn': person['hrn'], 'type': 'user'})
81     if not existing_records:
82         print>>sys.stderr, " \r\n \t slab-import : person record %s inserted" %(person['hrn'])
83         table.insert(person)
84     else:
85         existing_record = existing_records[0]
86         person['record_id'] = existing_record['record_id']
87         table.update(person)      
88         
89         
90         
91 def delete_record( hrn, type):
92     # delete the record
93     record_list = table.find({'type': type, 'hrn': hrn})
94     for record in record_list:
95         print>>sys.stderr, " \r\n \t slab-import : record %s deleted" %(record['hrn'])
96         table.remove(record)
97                 
98 def hostname_to_hrn(root_auth,hostname):
99     # keep only the first part of the DNS name
100     #hrn='.'.join( [auth,hostname.split(".")[0] ] )
101     # escape the '.' in the hostname
102     hrn='.'.join( [root_auth,Xrn.escape(hostname)] )
103     return hrn_to_urn(hrn,'node')
104     
105 def main():
106
107     config = Config()
108     if not config.SFA_REGISTRY_ENABLED:
109         sys.exit(0)
110     root_auth = config.SFA_REGISTRY_ROOT_AUTH
111     interface_hrn = config.SFA_INTERFACE_HRN
112     print interface_hrn, root_auth
113     
114      # initialize registry db table
115     #table = SfaTable()
116     #if not table.exists():
117         #table.create()
118
119     # create root authority 
120     create_top_level_auth_records(root_auth)
121     
122     # create s user record for the slice manager
123     #Do we need this?
124     #SenslabImporter.create_sm_client_record()
125     
126     # create interface records 
127     #Do we need this?
128     #SenslabImporter.logger.info("Import: creating interface records")
129     #SenslabImporter.create_interface_records()
130      # create dict of all existing sfa records
131      
132     existing_records = {}
133     existing_hrns = []
134     key_ids = []
135     person_keys = {} 
136     results = table.find()
137     for result in results:
138         existing_records[(result['hrn'], result['type'])] = result
139         existing_hrns.append(result['hrn'])   
140         
141     #Get Senslab nodes 
142    
143     Driver = SlabDriver(config)
144     nodes_dict  = Driver.GetNodes()
145     #print "\r\n NODES8DICT ",nodes_dict
146     
147     ldap_person_list = Driver.GetPersons()
148     
149
150     #slices_list = SenslabUsers.GetSlices()
151     #print "\r\n SLICES_LIST ",slices_list
152     
153         # Get all Senslab sites
154     #sites_dict  = OARImporter.GetSites()
155     #print "\r\n sSITES_DICT" , sites_dict
156     
157      # start importing 
158     #for site in sites_dict:
159         #site_hrn = interface_hrn + "." + site['login_base']
160         ##sfa_logger().info("Importing site: %s" % site_hrn)
161         #print "HRN %s %s site existing in hrn ? %s" %( site['login_base'],site_hrn, site_hrn in existing_hrns)
162         ## import if hrn is not in list of existing hrns or if the hrn exists
163         ## but its not a site record
164         #if site_hrn not in existing_hrns or \
165             #(site_hrn, 'authority') not in existing_records:
166              #print "SITE HRN UNKNOWN" , site, site_hrn
167              #site_hrn = SenslabImporter.import_site(interface_hrn, site)
168    
169         # import node records
170     for node in nodes_dict:
171         hrn =  hostname_to_hrn( root_auth, node['hostname'])
172         if hrn not in existing_hrns or \
173         (hrn, 'node') not in existing_records:
174             print "\t\t NODE HRN NOT in existing record, importing it" ,hrn
175             import_node(hrn, node)
176
177    # import persons
178     for person in ldap_person_list:
179         if person['hrn'] not in existing_hrns or \
180             (person['hrn'], 'user') not in existing_records :
181             import_person( person)      
182 # import slices
183         #for slice_id in site['slice_ids']:
184                 #print >>sys.stderr, "\r\n\r\n \t ^^^^^^^\\\\\\\\\\\\\\\^^^^^^ slice_id  %s  " %(slice_id)              
185                 #for sl in slices_list:
186                         #if slice_id is sl['slice_id']:
187                                 ##hrn = slicename_to_hrn(interface_hrn, sl['name'])
188                                 #hrn = email_to_hrn(site_hrn, sl['name'])
189                                 #print >>sys.stderr, "\r\n\r\n^^^^^^^^^^^^^SLICE ID hrn %s  site_hrn %s" %(hrn,site_hrn)                                
190                                 #if hrn not in existing_hrns or \
191                                 #(hrn, 'slice') not in existing_records:
192                                         #SenslabImporter.import_slice(site_hrn, sl)     
193
194                                         
195     # remove stale records    
196     system_records = [interface_hrn, root_auth, interface_hrn + '.slicemanager']
197
198     for (record_hrn, type) in existing_records.keys():
199         if record_hrn in system_records:
200             continue
201         
202         record = existing_records[(record_hrn, type)]
203         if record['peer_authority']:
204             continue                                    
205
206
207
208         found = False
209         
210         if type == 'authority':    
211             #for site in sites_dict:
212                 #print "\t type : authority : ", site
213                 #site_hrn = interface_hrn + "." + site['login_base']
214                 #if site_hrn == record_hrn and site['site_id'] == record['pointer']:
215             found = True
216             print "\t \t Found :", found
217             break
218                 
219         elif type == 'user':
220             for person in ldap_person_list:
221                 if person['hrn'] == record_hrn:
222                     found = True
223                     break
224             
225         elif type == 'node':
226             login_base = get_leaf(get_authority(record_hrn))
227             nodename = Xrn.unescape(get_leaf(record_hrn))
228             print "type: node :  nodename %s" %(nodename)
229             for node in nodes_dict:
230                 if node['hostname'] == nodename :
231                     found = True
232                     break 
233                     
234         else:
235             continue 
236         
237         if not found:
238             record_object = existing_records[(record_hrn, type)]
239             print "\t\t  NOT FOUND ! ", record_hrn
240             delete_record(record_hrn, type) 
241     
242 if __name__ == "__main__":
243     main()