コード例 #1
0
    def test_perform_submission_process(self):
        """Test_perform_submission_process - test document submission"""

        metadata = {}
        metadata["primary_label"] = "Test - Test Disruptive Networks"
        metadata["primary_url"] = "http://arxiv.org/terms/arXiv/test.dis-nn"

        user_info = {}
        user_info["nickname"] = "test_user"
        user_info["email"] = "*****@*****.**"
        user_info["id"] = 1

        result = perform_submission_process(4, "https://arxiv.org/sword-app/test-collection", 97, user_info, metadata)

        self.assertEqual(open("/tmp/media.xml", "r").read() != "", True)
        self.assertEqual(open("/tmp/metadata.xml", "r").read() != "", True)
        self.assertEqual(open("/tmp/submit.xml", "r").read() != "", True)

        if result["row_id"] != "":
            delete_from_swr_clientdata(result["row_id"])
コード例 #2
0
    def test_perform_submission_process(self):
        '''Test_perform_submission_process - test document submission'''

        metadata = {}
        metadata['primary_label'] = 'Test - Test Disruptive Networks'
        metadata['primary_url'] = 'http://arxiv.org/terms/arXiv/test.dis-nn'

        user_info = {}
        user_info['nickname'] = 'test_user'
        user_info['email'] = '*****@*****.**'
        user_info['id'] = 1

        result = perform_submission_process(
            4, 'https://arxiv.org/sword-app/test-collection', 97, user_info,
            metadata)

        self.assertEqual(open('/tmp/media.xml', 'r').read() != '', True)
        self.assertEqual(open('/tmp/metadata.xml', 'r').read() != '', True)
        self.assertEqual(open('/tmp/submit.xml', 'r').read() != '', True)

        if result['row_id'] != '':
            delete_from_swr_clientdata(result['row_id'])
コード例 #3
0
    def test_perform_submission_process(self):
        '''Test_perform_submission_process - test document submission'''

        metadata = {}
        metadata['primary_label'] = 'Test - Test Disruptive Networks'
        metadata['primary_url'] = 'http://arxiv.org/terms/arXiv/test.dis-nn'

        user_info = {}
        user_info['nickname'] = 'test_user'
        user_info['email'] = '*****@*****.**'
        user_info['id'] = 1

        result = perform_submission_process(4, 'https://arxiv.org/sword-app/test-collection',
                                            97, user_info, metadata)

        self.assertEqual(open('/tmp/media.xml', 'r').read() != '', True)
        self.assertEqual(open('/tmp/metadata.xml', 'r').read() != '', True)
        self.assertEqual(open('/tmp/submit.xml', 'r').read() != '', True)



        if result['row_id'] != '':
            delete_from_swr_clientdata(result['row_id'])
コード例 #4
0
def Export_Via_SWORD(parameters, curdir, form, user_info=None):
    '''
        This function get informations about the SWORD remote server where to
        export the given record.
        If a marcxml file is given in parameters, it use it as metadata source.
        If no marcxml file is given, it get the marcxml file using the given
        recid.
        If a list of file is given in parameters, it export those file. If not,
        it get fulltext files from the URL found in the marcxml file
    '''

    global sysno, rn

    metadata = {'id_record': rn}

    #---------------------------------------------------------------------------
    #  get remote server id
    #---------------------------------------------------------------------------

    #Path of file containing remote server id
    if os.path.exists("%s/%s" % (curdir, parameters['serverid'])):
        tmp_file = open("%s/%s" % (curdir, parameters['serverid']), "r")
        serverid = tmp_file.read()
        serverid = re.sub("[\n\r ]+", "", serverid)
    else:
        return 'Collection not found !'

    #---------------------------------------------------------------------------
    #  get collection's url and id
    #---------------------------------------------------------------------------

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['collection'])):
        tmp_file = open("%s/%s" % (curdir, parameters['collection']), "r")
        col = tmp_file.read()
        col = re.sub("[\n\r ]+", "", col)
    else:
        return 'Collection not found !'

    selected_collection = {}

    collections = list_collections_from_server(serverid)

    for collection in collections:
        if col == collection['url']:
            selected_collection = collection

    #---------------------------------------------------------------------------
    #  get selected primary category url and label
    #---------------------------------------------------------------------------

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['primary'])):
        tmp_file = open("%s/%s" % (curdir, parameters['primary']), "r")
        pc_from_param = tmp_file.read()
        pc_from_param = re.sub("[\n\r ]+", "", pc_from_param)
    else:
        return 'Primary category not found !'

    primary_categories = \
        list_mandated_categories(str(serverid), selected_collection['id'])

    for primary_category in primary_categories:
        if pc_from_param == primary_category['url']:
            metadata['primary_url'] = primary_category['url']
            metadata['primary_label'] = primary_category['label']

    #---------------------------------------------------------------------------
    #  get selected secondary categories url and label (if any)
    #---------------------------------------------------------------------------

    metadata['categories'] = []

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['secondary'])):
        tmp_file = open("%s/%s" % (curdir, parameters['secondary']), "r")
        sc_from_param = tmp_file.read()
        sc_from_param = re.sub("\+", "\n", sc_from_param)
        list_sc_from_param = sc_from_param.split('\n')

        secondary_categories = \
            list_optional_categories(str(serverid), selected_collection['id'])

        for secondary_category in secondary_categories:
            for sc_element in list_sc_from_param:
                if sc_element == secondary_category['url']:
                    secondary = {}
                    secondary['url'] = secondary_category['url']
                    secondary['label'] = secondary_category['label']
                    metadata['categories'].append(secondary)

    #---------------------------------------------------------------------------
    #  get the marcxml file
    #---------------------------------------------------------------------------

    #if os.path.exists("%s/%s" % (curdir, parameters['marcxml'])):
    #    tmp_file = open("%s/%s" % (curdir, parameters['marcxml']),"r")
    #    marcxml = tmp_file.read()

    #else :
    marcxml = get_marcxml_from_record(sysno)

    #---------------------------------------------------------------------------
    #  get the media file
    #---------------------------------------------------------------------------

    media_paths = []

    if os.path.exists("%s/%s" % (curdir, 'media')):
        tmp_file = open("%s/%s" % (curdir, 'media'), "r")
        path_medias_from_file = tmp_file.read()
        path_medias_list = re.sub("\+", "\n", path_medias_from_file)
        media_paths = path_medias_from_file.split("\n")

    if os.path.exists("%s/%s" % (curdir, 'DEMOSWR_UPLOAD')):
        tmp_file = open("%s/%s" % (curdir, 'DEMOSWR_UPLOAD'), "r")
        uploaded_file = tmp_file.read()
        path_uploaded_media = re.sub("\+", "\n", uploaded_file)
        media_paths.append("%s/files/DEMOSWR_UPLOAD/%s" %
                           (curdir, path_uploaded_media.split('\n')[0]))

    temp_file = open('/tmp/result.txt', 'w')
    for media_path in media_paths:
        temp_file.write(media_path)

    #---------------------------------------------------------------------------
    #  format user infos
    #---------------------------------------------------------------------------

    user = {}
    user['id'] = user_info['uid']
    user['nickname'] = user_info['nickname']
    user['email'] = user_info['email']

    result = perform_submission_process(serverid, selected_collection['url'],
                                        sysno, user, metadata, media_paths,
                                        marcxml)

    if result['error'] == '':
        bibsword_templates = BibSwordTemplate()
        return bibsword_templates.tmpl_display_submit_ack(
            result['remote_id'], result['links'])
    else:
        raise InvenioWebSubmitFunctionStop("""
<SCRIPT>
    document.forms[0].action="/submit";
    document.forms[0].curpage.value = 1;
    document.forms[0].step.value = 2;
    user_must_confirm_before_leaving_page = false;
    document.forms[0].submit();
    alert('%s');
</SCRIPT>""" % result['error'])

    return ""
コード例 #5
0
def Export_Via_SWORD(parameters, curdir, form, user_info=None):
    '''
        This function get informations about the SWORD remote server where to
        export the given record.
        If a marcxml file is given in parameters, it use it as metadata source.
        If no marcxml file is given, it get the marcxml file using the given
        recid.
        If a list of file is given in parameters, it export those file. If not,
        it get fulltext files from the URL found in the marcxml file
    '''

    global sysno, rn

    metadata = {'id_record': rn}

    #---------------------------------------------------------------------------
    #  get remote server id
    #---------------------------------------------------------------------------

    #Path of file containing remote server id
    if os.path.exists("%s/%s" % (curdir, parameters['serverid'])):
        tmp_file = open("%s/%s" % (curdir, parameters['serverid']),"r")
        serverid = tmp_file.read()
        serverid = re.sub("[\n\r ]+", "", serverid)
    else:
        return 'Collection not found !'


    #---------------------------------------------------------------------------
    #  get collection's url and id
    #---------------------------------------------------------------------------

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['collection'])):
        tmp_file = open("%s/%s" % (curdir, parameters['collection']),"r")
        col = tmp_file.read()
        col = re.sub("[\n\r ]+", "", col)
    else:
        return 'Collection not found !'

    selected_collection = {}

    collections = list_collections_from_server(serverid)

    for collection in collections :
        if col == collection['url'] :
            selected_collection = collection

    #---------------------------------------------------------------------------
    #  get selected primary category url and label
    #---------------------------------------------------------------------------

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['primary'])):
        tmp_file = open("%s/%s" % (curdir, parameters['primary']),"r")
        pc_from_param = tmp_file.read()
        pc_from_param = re.sub("[\n\r ]+", "", pc_from_param)
    else:
        return 'Primary category not found !'

    primary_categories = \
        list_mandated_categories(str(serverid), selected_collection['id'])

    for primary_category in primary_categories :
        if pc_from_param == primary_category['url'] :
            metadata['primary_url'] = primary_category['url']
            metadata['primary_label'] = primary_category['label']


    #---------------------------------------------------------------------------
    #  get selected secondary categories url and label (if any)
    #---------------------------------------------------------------------------

    metadata['categories'] = []

    #Path of file containing primary category url
    if os.path.exists("%s/%s" % (curdir, parameters['secondary'])):
        tmp_file = open("%s/%s" % (curdir, parameters['secondary']), "r")
        sc_from_param = tmp_file.read()
        sc_from_param = re.sub("\+", "\n", sc_from_param)
        list_sc_from_param = sc_from_param.split('\n')

        secondary_categories = \
            list_optional_categories(str(serverid), selected_collection['id'])


        for secondary_category in secondary_categories :
            for sc_element in list_sc_from_param :
                if sc_element == secondary_category['url'] :
                    secondary = {}
                    secondary['url'] = secondary_category['url']
                    secondary['label'] = secondary_category['label']
                    metadata['categories'].append(secondary)


    #---------------------------------------------------------------------------
    #  get the marcxml file
    #---------------------------------------------------------------------------

    #if os.path.exists("%s/%s" % (curdir, parameters['marcxml'])):
    #    tmp_file = open("%s/%s" % (curdir, parameters['marcxml']),"r")
    #    marcxml = tmp_file.read()

    #else :
    marcxml = get_marcxml_from_record(sysno)

    #---------------------------------------------------------------------------
    #  get the media file
    #---------------------------------------------------------------------------

    media_paths = []

    if os.path.exists("%s/%s" % (curdir, 'media')):
        tmp_file = open("%s/%s" % (curdir, 'media'), "r")
        path_medias_from_file = tmp_file.read()
        path_medias_list = re.sub("\+", "\n", path_medias_from_file)
        media_paths = path_medias_from_file.split("\n")

    if os.path.exists("%s/%s" % (curdir, 'DEMOSWR_UPLOAD')):
        tmp_file = open("%s/%s" % (curdir, 'DEMOSWR_UPLOAD'), "r")
        uploaded_file = tmp_file.read()
        path_uploaded_media = re.sub("\+", "\n", uploaded_file)
        media_paths.append("%s/files/DEMOSWR_UPLOAD/%s" % (curdir, path_uploaded_media.split('\n')[0]))

    temp_file = open('/tmp/result.txt', 'w')
    for media_path in media_paths :
        temp_file.write(media_path)

    #---------------------------------------------------------------------------
    #  format user infos
    #---------------------------------------------------------------------------

    user = {}
    user['id'] = user_info['uid']
    user['nickname'] = user_info['nickname']
    user['email'] = user_info['email']

    result = perform_submission_process(serverid, selected_collection['url'],
                                        sysno, user, metadata, media_paths,
                                        marcxml)

    if result['error'] == '' :
        bibsword_templates = BibSwordTemplate()
        return bibsword_templates.tmpl_display_submit_ack(result['remote_id'],
                                                          result['links'])
    else :
        raise InvenioWebSubmitFunctionStop("""
<SCRIPT>
    document.forms[0].action="/submit";
    document.forms[0].curpage.value = 1;
    document.forms[0].step.value = 2;
    user_must_confirm_before_leaving_page = false;
    document.forms[0].submit();
    alert('%s');
</SCRIPT>""" % result['error'])

    return ""