misc/scripts/drop_external_entities.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 04 Jan 2011 16:15:13 +0100
branchstable
changeset 6769 d784d64f28d0
parent 6636 dbc9cce53c11
child 7398 26695dd703d8
permissions -rw-r--r--
Backed out changeset 84b67ae41a0d: with this fix, some extra ]> appears in the browser. We need to fix the validator instead.

from cubicweb import UnknownEid
source, = __args__

sql("DELETE FROM entities WHERE type='Int'")

ecnx = session.pool.connection(source)
for e in rql('Any X WHERE X cw_source S, S name %(name)s', {'name': source}).entities():
    meta = e.cw_metainformation()
    assert meta['source']['uri'] == source
    try:
        suri = ecnx.describe(meta['extid'])[1]
    except UnknownEid:
        print 'cant describe', e.__regid__, e.eid, meta
        continue
    if suri != 'system':
        try:
            print 'deleting', e.__regid__, e.eid, suri, e.dc_title().encode('utf8')
            repo.delete_info(session, e, suri, meta['extid'], scleanup=True)
        except UnknownEid:
            print '  cant delete', e.__regid__, e.eid, meta


commit()