From acf043f4272081e8b9495f589e5b66963f999a47 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Wed, 10 May 2017 14:05:24 +0200 Subject: [PATCH] [update] Renamed `init` to `sync` and `sync` to `update` --- build/api/module/machineDefault.php | 14 +++++++------- config/modules.json | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build/api/module/machineDefault.php b/build/api/module/machineDefault.php index 594ed91..f91e47f 100755 --- a/build/api/module/machineDefault.php +++ b/build/api/module/machineDefault.php @@ -422,7 +422,7 @@ /* (5) SIGNALED (start|stop ..... signal) ---------------------------------------------------------*/ for( $c = 0 ; $c < count($history) ; $c++ ){ - + /* (1) If (start|stop), continue to search */ if( in_array($history[$c]['id_action'] , [$action['start'], $action['stop']]) ) continue; @@ -578,17 +578,17 @@ - /* ENVOI DES DONNEES D'INITIALISATION DU SYSTEME DES MACHINES + /* ENVOI DES DONNEES D'INITIALISATION DU SATS * * @return id_machine UID de la machine * @return token Nouveau token d'identification (hashage cyclique) * @return unlock Code de déblocage de la machine * */ - public function init($params){ + public function sync($params){ extract($params); - + /* [1] On essaie de débloquer la machine =========================================================*/ /* (1) On rédige la requête */ @@ -624,7 +624,7 @@ - /* SYNCHRONISE UNE MACHINE + /* MET A JOUR UNE MACHINE * * @token Token de synchronisation de la machine * @data Données de la synchronisation @@ -633,7 +633,7 @@ * @return data Données de retour de synchronisation * */ - public function sync($params){ + public function update($params){ extract($params); /* [1] Initialisation des variables @@ -667,7 +667,7 @@ // {3} Exit on failure // if( $log_res->error->get() != Err::Success ) break; - + // {4} Register count if success // $fetched['history']++; } diff --git a/config/modules.json b/config/modules.json index 03961d2..07b3654 100755 --- a/config/modules.json +++ b/config/modules.json @@ -221,8 +221,8 @@ "machineDefault": { - "POST::sync": { - "description": "Synchronisation d'une machine.", + "POST::update": { + "description": "Mise à jour d'un SAYS++TS.", "permissions": [["sats"]], "parameters": { "data": { "description": "Données (dépendent des modules).", "type": "array" } @@ -232,8 +232,8 @@ } }, - "POST::init": { - "description": "Données d'initialisation d'une machine.", + "POST::sync": { + "description": "Synchronisation d'un SATS.", "permissions": [["warehouse"]], "parameters": { "id_machine": { "description": "UID de la machine.", "type": "id" },