added get_synapse_weight function
[mirrors/Kyberia-bloodline.git] / wwwroot / backend / mysql / backend.inc
index 87e1d2d744bd09297fafed0b8050e5eb81d66d78..3c6da90495ac84ad5161203abd618af515b62319 100644 (file)
@@ -387,6 +387,31 @@ function setSynapse($params){
        return true;
 }
 
+// getSynapseWeight
 
+// If synapse does not exists, weight is 1
+// Secure.
+// Returns synapse weight (from user to node)
+
+function getSynapseWeight($user_id,$node_id){
+       global $db;
+
+       if (!is_numeric($user_id)) 
+               { return -1; }
+       if (!is_numeric($node_id)) 
+               { return -1; }
+
+       $set=$db->query("select synapse_weight from neurons where src =".
+               $user_id." and dst = ".$node_id." and link='synapse'");
+
+       $set->next();
+       $synapes_weight=$set->getString('synapse_weight');
+
+       if (! ($synapse_weight) ) { $synapse_weight = 1;}       
+
+       return $synapse_weight;
 
 }
+}
+
+?>
This page took 0.126536 seconds and 4 git commands to generate.