Преглед на файлове

ims_usrloc_scscf: In case the contact_id after insert_update is 0, do the old query again (last_inserted_id is only set, if there was really an UPDATE or INSERT, not if nothing was changed)

Carsten Bock преди 11 години
родител
ревизия
7b7754a417
променени са 1 файла, в които са добавени 23 реда и са изтрити 0 реда
  1. 23 0
      modules/ims_usrloc_scscf/usrloc_db.c

+ 23 - 0
modules/ims_usrloc_scscf/usrloc_db.c

@@ -252,6 +252,29 @@ int db_insert_ucontact(impurecord_t* _r, ucontact_t* _c) {
 		return -1;
 	}
 	contact_id = ul_dbf.last_inserted_id(ul_dbh);
+	if (contact_id <= 0) {
+		/* search for the ID if the contact just entered */
+		if (ul_dbf.query(ul_dbh, key, 0, val, key_return, 1, 1, NULL, &_rs) != 0) {
+			LM_ERR("Unable to find contact [%.*s] in DB to complete IMPU-contact mapping\n", _c->c.len, _c->c.s);
+			ul_dbf.free_result(ul_dbh, _rs);
+			return -1;
+		}
+
+		if (RES_ROW_N(_rs) == 0) {
+			LM_DBG("Contact %.*s not found in DB\n",_c->c.len, _c->c.s);
+			ul_dbf.free_result(ul_dbh, _rs);
+			return -1;
+		}
+
+		if (RES_ROW_N(_rs) > 1) {
+			LM_WARN("more than one contact found in DB for contact [%.*s] - this should not happen... proceeding with first entry\n",
+				_c->c.len, _c->c.s);
+		}
+
+		ret_val = ROW_VALUES(RES_ROWS(_rs));
+		contact_id = ret_val[0].val.int_val;
+		ul_dbf.free_result(ul_dbh, _rs);
+	}
 	LM_DBG("contact ID is %d\n", contact_id);
 
 	/* search for ID of the associated IMPU */