示例#1
0
    def handle(self, **options):

        #update act_ids due to a problem on eurlex or oeil (click on actualisation button on act_ids form for a range of acts)
        path=settings.MEDIA_ROOT+"/import/"
        #~ path="/home/rom/Documents/jobs/SciencesPo/europolix/import/csv/"
        years=[str(n) for n in range(2014, 2015)]
        for year in years:
            path_file=path+"RMC_"+year+".csv"
            with open(path_file, 'r') as csv_file_temp:
                #detect delimiter and skip header
                header=csv_file_temp.readline()
                #skip empty lines at the beginning of the file
                while header.strip()=="":
                    header=csv_file_temp.readline()
                delimiter=detect_delim(header)
                reader=csv.reader(csv_file_temp, delimiter=delimiter)

                for row in reader:
                    if row[0].strip()!="":
                        ids_row={}
                        ids_row["releve_annee"]=int(row[0])
                        ids_row["releve_mois"]=int(row[1])
                        ids_row["no_ordre"]=int(row[2])
                        print ids_row["releve_annee"], ids_row["releve_mois"], ids_row["no_ordre"]
                        #actualisation button -> use acts ids retrieval from the import module
                        get_save_act_ids([ids_row])
示例#2
0
文件: views.py 项目: EPX/epx2013
def act_ids(request):
    """
    VIEW
    displays and processes the Act ids validation page
    TEMPLATES
    act_ids/index.html: display the act ids page which itself calls the template of the act_ids form
    act_ids/form.html: display the act_ids form
    """
    response={}
    #display "real" name of variables (not the ones stored in db)
    response['display_name']=var_name_ids.var_name
    response['display_name'].update(var_name_data.var_name)
    #state=display (display the ids of an act), saved (the act is being saved) or ongoing (validation errors while saving)
    state="display"
    #html page of the form
    form_template='act_ids/form.html'

    if request.method=='POST':
        #mode: "add" if selection of an act to add from the drop down list, "modif" if click on the modif_act button and None otherwise
        #add_modif: same than mode but return None if the add or modif form is not valid
        #act=act to validate / modify or None if no act is found (modifcation)
        #response: add add or modif to the forms being displayed / to be displayed
        mode, add_modif, act, response=check_add_modif_forms(request, response, Add, Modif, "act_ids")

        #if any of this key is present in the response dictionary -> no act display and return the errors with a json object
        #otherwise display act and return the html form of the act to validate or update in a string format
        keys=["msg", "add_act_errors", "modif_act_errors", "update_act_errors"]

        #if selection of an act in the drop down list or click on the modif_act button
        if mode!=None:
            #~ #if we are about to add or modif an act (the add or modif form is valid)
            if add_modif!=None:

                act_ids=ActIds.objects.get(act=act, src="index")
                form_ids=ActIdsForm(request.POST, instance=act_ids)
                #just for the notes field
                form_data=ActForm(request.POST, instance=act)

                #saves the act
                if 'save_act' in request.POST:
                    print "save"
                    if form_ids.is_valid():
                        print "form_ids valid"
                        #save the ids of the act in ActIds
                        form_ids.save()
                        #save notes and validate the act
                        act.notes=request.POST['notes']
                        if act.validated==0:
                            act.validated=1
                        act.save()
                        state="saved"
                        #success message (calls unicode method)
                        response["msg"]="The act " + str(act) + " has been validated!"
                        response["msg_class"]="success_msg"

                        #save in history
                        History.objects.create(action=add_modif, form="ids", act=act, user=request.user)
                    else:
                        print "form_ids not valid", form_ids.errors
                        if request.is_ajax():
                            response['save_act_errors']= get_ajax_errors(form_ids)
                        else:
                            response['form_ids']=form_ids
                        response["msg"]="The form contains errors! Please correct them before submitting again."
                        response["msg_class"]="error_msg"
                        state="ongoing"

                #if click on the actualisation button
                elif 'update_act' in request.POST:
                    print "update"
                    state="update"
                    #news ids must be saved in the database
                    if form_ids.is_valid():
                        print "update: form_ids valid"
                        form_ids.save()
                        #we retrieve and save the new ids (from the new urls)
                        ids_row={}
                        ids_row["releve_annee"]=act.releve_annee
                        ids_row["releve_mois"]=act.releve_mois
                        ids_row["no_ordre"]=act.no_ordre
                        #actualisation button -> use acts ids retrieval from the import module
                        get_save_act_ids([ids_row])
                        #get the updated instance of the act
                        act=Act.objects.get(id=act.id)
                    else:
                        print "form_ids not valid", form_ids.errors
                        if request.is_ajax():
                            response['update_act_errors']= get_ajax_errors(form_ids)
                        else:
                            response['form_ids']=form_ids

                #displays the ids of an act to validate
                #selection of an act in the add / modif form or update of an act with no form error
                #if javasxript deactivated, also display act ids if click on save button and errors in form_ids
                if not any(key in response for key in keys) or not request.is_ajax() and state!="saved":
                    print 'act_to_validate display'
                    
                    #an act has been selected in the drop down list -> the related data are displayed
                    if state=="display":
                        #the default value of the dos_id drop down list is the validated dos_id if any
                        init=None
                        if act_ids.dos_id!=None:
                            init=act_ids.dos_id
                        form_ids=ActIdsForm(instance=act_ids, initial ={'dos_id_choices': init})
                        form_data=ActForm(instance=act)
                    #otherwise use POST too (done before)

                    data={}
                    #retrieve the act ids instance for each source
                    act_ids=get_act_ids(act)

                    fields=["no_celex", "propos_annee", "propos_chrono", "propos_origine", "no_unique_annee", "no_unique_type", "no_unique_chrono"]

                    #check if the corresponding data are equal -> they will appear in red if not
                    for field in fields:
                        param=[]
                        for src in ["index", "eurlex", "oeil"]:
                            param.append(getattr(act_ids[src], field))
                        data[field]=check_equality_fields(param)

                    #check dos_id
                    data["dos_id"]=False
                    if act_ids["eurlex"].dos_id!=None:
                        #if there is a validated dos_id, do the comparison with that one
                        if act_ids["index"].dos_id!=None:
                            data["dos_id"]=check_equality_fields([act_ids["index"].dos_id, act_ids["eurlex"].dos_id])
                        else:
                            #otherwise search for the dos_id from the ImportDosId model matching the no_celex
                            try:
                                ImportDosId.objects.get(dos_id=act_ids["eurlex"].dos_id, no_celex=act_ids["index"].no_celex)
                                data["dos_id"]=True
                            except Exception, e:
                                print "no matching dos_id", e

                    #get urls
                    data["url_eurlex"]=eurlex.get_url_eurlex(act_ids["index"].no_celex, "HIS")
                    data["url_oeil"]=oeil.get_url_oeil(str(act_ids["index"].no_unique_type), str(act_ids["index"].no_unique_annee), str(act_ids["index"].no_unique_chrono))

                    response['form_ids']=form_ids
                    response['form_data']=form_data
                    response['act']=act
                    response['act_ids']=act_ids
                    response['data']=data
                    response['add_modif']=add_modif

                response['mode']=mode

            if request.is_ajax():
                #save act (with or without errors) or act display, modif and update (with errors)
                if any(key in response for key in keys):
                    return HttpResponse(simplejson.dumps(response), mimetype="application/json")
                else:
                    #act display, modif or update (without errors)
                    return HttpResponse(render_to_string(form_template, response, RequestContext(request)))

        if request.is_ajax():
            #no act has been selected-> do nothing
            return HttpResponse(simplejson.dumps(""), mimetype="application/json")
示例#3
0
    def handle(self, **options):

        # import act_ids already imported with mistakes AND new acts, and devalidate acts with mistakes
        path = settings.MEDIA_ROOT + "/import/"
        # ~ path="/home/rom/Documents/jobs/SciencesPo/europolix/import/csv/"
        years = [str(n) for n in range(2014, 2015)]
        for year in years:
            path_file = path + "RMC_" + year + ".csv"
            with open(path_file, "r") as csv_file_temp:
                # detect delimiter and skip header
                header = csv_file_temp.readline()
                # skip empty lines at the beginning of the file
                while header.strip() == "":
                    header = csv_file_temp.readline()
                delimiter = detect_delim(header)
                reader = csv.reader(csv_file_temp, delimiter=delimiter)

                for row in reader:
                    # used to identify the row
                    ids_row = {}
                    ids_row["releve_annee"] = int(row[0])
                    ids_row["releve_mois"] = int(row[1])
                    ids_row["no_ordre"] = int(row[2])

                    # if created is True, we just have to save the act data
                    # if created is False, the act was already validated, we have to update its fields and then devalidate it if there is at least one difference IN THE ACT IDS
                    act, created_act = Act.objects.get_or_create(**ids_row)

                    print "act", act
                    if created_act:
                        print "created act"
                    else:
                        print "already exist"

                    # save ActIds model fields and check for differences
                    ids_row = {}
                    ids_row["src"] = "index"
                    ids_row["act"] = act
                    act_ids, created_actids = ActIds.objects.get_or_create(**ids_row)

                    compare = {}
                    compare["no_celex"] = row[7].strip()
                    compare["propos_annee"] = none_or_var(row[8], "int")
                    compare["propos_chrono"] = none_or_var(row[9].replace(" ", ""), "str")
                    compare["propos_origine"] = none_or_var(row[10], "str")
                    compare["no_unique_annee"] = none_or_var(row[11], "int")
                    compare["no_unique_type"] = none_or_var(row[12], "str")
                    compare["no_unique_chrono"] = none_or_var(row[13], "str")

                    # the act ids instance already exist, let's check if the data have changed
                    same = True
                    if not created_act:
                        for field_name, field_value in compare.iteritems():
                            # not the same data -> the act must be validated again
                            if str(getattr(act_ids, field_name)) != str(field_value):
                                print str(getattr(act_ids, field_name)), str(field_value), "DIFFERENT!!!"
                                print "TYPE:", type(getattr(act_ids, field_name)), type(field_value)
                                same = False
                                break

                    act_ids.no_celex = compare["no_celex"]
                    act_ids.propos_annee = compare["propos_annee"]
                    act_ids.propos_chrono = compare["propos_chrono"]
                    act_ids.propos_origine = compare["propos_origine"]
                    act_ids.no_unique_annee = compare["no_unique_annee"]
                    act_ids.no_unique_type = compare["no_unique_type"]
                    act_ids.no_unique_chrono = compare["no_unique_chrono"]

                    # save Act model fields
                    act.titre_rmc = row[3].strip()
                    act.adopt_cs_regle_vote = row[4].strip()
                    if row[14].strip() == "Y":
                        act.split_propos = True
                    if row[15].strip() == "Y":
                        act.suite_2e_lecture_pe = True
                    council_path = row[16].strip().strip(".")
                    if council_path != "":
                        act.council_path = council_path
                    act.notes = row[17].strip()

                    # if the act existed already, delete m2m relations
                    if not created_act:
                        act.adopt_cs_abs.clear()
                        act.adopt_cs_contre.clear()
                    # save adopt_cs variables
                    save_adopt_cs_pc(act, "adopt_cs_abs", row[5])
                    save_adopt_cs_pc(act, "adopt_cs_contre", row[6])

                    # if the act already existed but at least one field was different, devalidate it
                    if not created_act and not same:
                        print "the act need to be validated again!!!"
                        act.validated = 0
                        act.save()
                    # ~
                    # ~ #save act_ids
                    act_ids.save()

                    # save act ids on eurlex and oeil
                    ids_row = {}
                    ids_row["releve_annee"] = int(row[0])
                    ids_row["releve_mois"] = int(row[1])
                    ids_row["no_ordre"] = int(row[2])
                    get_save_act_ids([ids_row])