|
@@ -20,19 +20,20 @@ using System.Web.Http;
|
|
using System.Web.Http.Description;
|
|
using System.Web.Http.Description;
|
|
using StartTransactionRequest = EVCB_OCPP.WEBAPI.Models.WebAPI.StartTransactionRequest;
|
|
using StartTransactionRequest = EVCB_OCPP.WEBAPI.Models.WebAPI.StartTransactionRequest;
|
|
|
|
|
|
-namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
+namespace EVCB_OCPP.WEBAPI.Controllers.Version1
|
|
{
|
|
{
|
|
[RoutePrefix("api/v1/ocpp16")]
|
|
[RoutePrefix("api/v1/ocpp16")]
|
|
[InernalAuthentication]
|
|
[InernalAuthentication]
|
|
public class InternalV1Controller : ApiController
|
|
public class InternalV1Controller : ApiController
|
|
{
|
|
{
|
|
|
|
|
|
- [Route("command/{OrderNo}/SerialNo/{SerialNo}/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("command")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpGet]
|
|
[HttpGet]
|
|
public HttpResponseMessage CommandofExecution(int OrderNo, string SerialNo, string ChargeBoxId)
|
|
public HttpResponseMessage CommandofExecution(int OrderNo, string SerialNo, string ChargeBoxId)
|
|
{
|
|
{
|
|
|
|
+
|
|
var result = new InternalGenericResponse();
|
|
var result = new InternalGenericResponse();
|
|
HttpStatusCode statusCode = HttpStatusCode.InternalServerError;
|
|
HttpStatusCode statusCode = HttpStatusCode.InternalServerError;
|
|
try
|
|
try
|
|
@@ -42,12 +43,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
if (!IsValidEnum<Internal_Actions>(OrderNo) || string.IsNullOrEmpty(ChargeBoxId))
|
|
if (!IsValidEnum<Internal_Actions>(OrderNo) || string.IsNullOrEmpty(ChargeBoxId))
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
if (!chargePointService.Exists(ChargeBoxId))
|
|
if (!chargePointService.Exists(ChargeBoxId))
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
ServerTriggerService triggerService = new ServerTriggerService();
|
|
ServerTriggerService triggerService = new ServerTriggerService();
|
|
@@ -55,7 +56,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
if (excution == null)
|
|
if (excution == null)
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_DATA_NOTFOUND });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2102, Message = EVCBConfiguration.ERROR_MSG_DATA_NOTFOUND });
|
|
}
|
|
}
|
|
|
|
|
|
result.Message = JsonConvert.SerializeObject(excution, EVCBConfiguration.JSONSERIALIZER_FORMAT);
|
|
result.Message = JsonConvert.SerializeObject(excution, EVCBConfiguration.JSONSERIALIZER_FORMAT);
|
|
@@ -67,6 +68,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "CommandofExecution", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "CommandofExecution", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -74,7 +76,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("availability/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("availability")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPut]
|
|
[HttpPut]
|
|
@@ -91,7 +93,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
@@ -100,7 +102,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
!(Availiability.AvailabilityType > 0 && Availiability.AvailabilityType < 3))
|
|
!(Availiability.AvailabilityType > 0 && Availiability.AvailabilityType < 3))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -117,7 +119,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -126,6 +128,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "Availability", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "Availability", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -134,7 +137,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- [Route("configuration/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("configuration")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPut]
|
|
[HttpPut]
|
|
@@ -152,7 +155,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
@@ -160,7 +163,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
(string.IsNullOrEmpty(SingleConfiguration.Key) || string.IsNullOrEmpty(SingleConfiguration.Value)))
|
|
(string.IsNullOrEmpty(SingleConfiguration.Key) || string.IsNullOrEmpty(SingleConfiguration.Value)))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -176,7 +179,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
@@ -184,6 +187,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ChangeConfiguration", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ChangeConfiguration", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -191,7 +195,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("configuration/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("configuration")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpGet]
|
|
[HttpGet]
|
|
@@ -208,14 +212,14 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
if (string.IsNullOrEmpty(Keys) || Keys.Split('/').Count() > 20)
|
|
if (string.IsNullOrEmpty(Keys) || Keys.Split('/').Count() > 20)
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -238,6 +242,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetConfiguration", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetConfiguration", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -245,7 +250,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("diagonostics/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("diagonostics")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpGet]
|
|
[HttpGet]
|
|
@@ -263,7 +268,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
@@ -273,7 +278,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|| (!string.IsNullOrEmpty(StopTime) && !DateTime.TryParse(StopTime, out vaildtime)))
|
|
|| (!string.IsNullOrEmpty(StopTime) && !DateTime.TryParse(StopTime, out vaildtime)))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -292,7 +297,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -301,6 +306,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetDiagonostics", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetDiagonostics", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -309,7 +315,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- [Route("locallistversion/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("locallistversion")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpGet]
|
|
[HttpGet]
|
|
@@ -326,7 +332,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
if (!AddCommandtoServer(ChargeBoxId, uuid, new GetLocalListVersionRequest()))
|
|
if (!AddCommandtoServer(ChargeBoxId, uuid, new GetLocalListVersionRequest()))
|
|
@@ -334,20 +340,20 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetLocallistversion", ex.ToString()) });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2999, Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetLocallistversion", ex.ToString()) });
|
|
}
|
|
}
|
|
|
|
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("transaction/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("transaction")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -363,25 +369,52 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
- if (StartTransaction == null || string.IsNullOrEmpty(StartTransaction.IdTag) ||
|
|
|
|
- !(StartTransaction.ConnectorId.HasValue && StartTransaction.ConnectorId > 0) ||
|
|
|
|
- !(StartTransaction.ChargingProfile != null && IsValidEnum<ChargingProfileKindType>((int)StartTransaction.ChargingProfile.chargingProfileKind)) ||
|
|
|
|
- !(StartTransaction.ChargingProfile != null && StartTransaction.ChargingProfile.recurrencyKind.HasValue && IsValidEnum<RecurrencyKindType>((int)StartTransaction.ChargingProfile.recurrencyKind)) ||
|
|
|
|
- !(StartTransaction.ChargingProfile != null && StartTransaction.ChargingProfile.recurrencyKind.HasValue && IsValidEnum<RecurrencyKindType>((int)StartTransaction.ChargingProfile.recurrencyKind)) ||
|
|
|
|
- !(StartTransaction.ChargingProfile != null && StartTransaction.ChargingProfile.chargingSchedule != null && IsValidEnum<ChargingRateUnitType>((int)StartTransaction.ChargingProfile.chargingSchedule.chargingRateUnit)))
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
+ if (StartTransaction == null || !StartTransaction.ConnectorId.HasValue
|
|
|
|
+ || (StartTransaction.ConnectorId.HasValue && (chargePointService.GetNumberofConnectors(ChargeBoxId) < StartTransaction.ConnectorId || StartTransaction.ConnectorId < 0)) || string.IsNullOrEmpty(StartTransaction.IdTag) || StartTransaction.IdTag.Length > 20)
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (StartTransaction.ChargingProfile != null)
|
|
|
|
+ {
|
|
|
|
+ bool isvaild = true;
|
|
|
|
+ if (!IsValidEnum<ChargingProfileKindType>((int)StartTransaction.ChargingProfile.chargingProfileKind))
|
|
|
|
+ {
|
|
|
|
+ isvaild = false;
|
|
|
|
+ }
|
|
|
|
+ else if (StartTransaction.ChargingProfile.recurrencyKind.HasValue && !IsValidEnum<RecurrencyKindType>((int)StartTransaction.ChargingProfile.recurrencyKind))
|
|
|
|
+ {
|
|
|
|
+ isvaild = false;
|
|
|
|
+ }
|
|
|
|
+ else if (StartTransaction.ChargingProfile.chargingSchedule != null && !IsValidEnum<ChargingRateUnitType>((int)StartTransaction.ChargingProfile.chargingSchedule.chargingRateUnit))
|
|
|
|
+ {
|
|
|
|
+ isvaild = false;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ //do nothing
|
|
|
|
+ }
|
|
|
|
+ if (!isvaild)
|
|
|
|
+ {
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
if (StartTransaction.ConnectorId.HasValue && chargePointService.GetChargePointCurrentSatus(ChargeBoxId, StartTransaction.ConnectorId.Value).HasValue &&
|
|
if (StartTransaction.ConnectorId.HasValue && chargePointService.GetChargePointCurrentSatus(ChargeBoxId, StartTransaction.ConnectorId.Value).HasValue &&
|
|
chargePointService.GetChargePointCurrentSatus(ChargeBoxId, StartTransaction.ConnectorId.Value).Value != ChargePointStatus.Available)
|
|
chargePointService.GetChargePointCurrentSatus(ChargeBoxId, StartTransaction.ConnectorId.Value).Value != ChargePointStatus.Available)
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
@@ -418,7 +451,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -427,6 +460,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -434,7 +468,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("transaction/{TransactionId}/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("transaction")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPut]
|
|
[HttpPut]
|
|
@@ -450,13 +484,15 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
- if (!chargePointService.GetChargePointCurrentSatus(ChargeBoxId, TransactionId % 10).HasValue)
|
|
|
|
|
|
+ var _ConnectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, TransactionId % 10);
|
|
|
|
+
|
|
|
|
+ if (!(_ConnectorStatus.HasValue && _ConnectorStatus == ChargePointStatus.Charging))
|
|
{
|
|
{
|
|
- //offline
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2105, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_CHARGING_MODE });
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
@@ -475,27 +511,29 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_SESSION_WAS_FINISHED });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2104, Message = EVCBConfiguration.ERROR_MSG_SESSION_WAS_FINISHED });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
+ return Request.CreateResponse(statusCode, result);
|
|
|
|
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.InternalServerError, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
- return Request.CreateResponse(statusCode, result);
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("reservation/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("reservation")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -510,7 +548,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -523,14 +561,14 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
!DateTime.TryParse(ReserveNow.ExpiryDate, out expiryDate))
|
|
!DateTime.TryParse(ReserveNow.ExpiryDate, out expiryDate))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
expiryDate = DateTime.SpecifyKind(DateTime.Parse(ReserveNow.ExpiryDate), DateTimeKind.Utc);
|
|
expiryDate = DateTime.SpecifyKind(DateTime.Parse(ReserveNow.ExpiryDate), DateTimeKind.Utc);
|
|
|
|
|
|
if (DateTime.Compare(DateTime.UtcNow, expiryDate) >= 0)
|
|
if (DateTime.Compare(DateTime.UtcNow, expiryDate) >= 0)
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, ReserveNow.ConnectorId);
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, ReserveNow.ConnectorId);
|
|
@@ -555,12 +593,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -571,6 +609,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ReserveNow", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ReserveNow", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -578,7 +617,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("reservation/{ReservationId}/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("reservation")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpDelete]
|
|
[HttpDelete]
|
|
@@ -594,7 +633,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
@@ -614,12 +653,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -629,6 +668,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "CancelResrvation", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "CancelResrvation", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -636,7 +676,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("reset/{ResetType}/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("reset")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -652,7 +692,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
@@ -672,12 +712,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -687,6 +727,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "Reset", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "Reset", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -694,7 +735,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("locallist/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("locallist")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -710,7 +751,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
@@ -719,7 +760,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|| (LocalList.LocalAuthorizationList != null && LocalList.LocalAuthorizationList.Count == 0))
|
|
|| (LocalList.LocalAuthorizationList != null && LocalList.LocalAuthorizationList.Count == 0))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
bool badRequest = false;
|
|
bool badRequest = false;
|
|
@@ -734,7 +775,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
if (badRequest)
|
|
if (badRequest)
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
localAuthorizationList.Add(new AuthorizationData()
|
|
localAuthorizationList.Add(new AuthorizationData()
|
|
{
|
|
{
|
|
@@ -762,7 +803,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
@@ -770,6 +811,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearCache", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearCache", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -778,7 +820,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- [Route("cache/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("cache")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpDelete]
|
|
[HttpDelete]
|
|
@@ -794,7 +836,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
@@ -807,12 +849,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -822,6 +864,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearCache", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearCache", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -829,7 +872,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("chargingprofile/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("chargingprofile")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -846,7 +889,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
@@ -858,7 +901,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
!(ChargingProfile.ChargingProfile != null && IsValidEnum<ChargingProfilePurposeType>((int)ChargingProfile.ChargingProfile.chargingProfilePurpose)) ||
|
|
!(ChargingProfile.ChargingProfile != null && IsValidEnum<ChargingProfilePurposeType>((int)ChargingProfile.ChargingProfile.chargingProfilePurpose)) ||
|
|
!(ChargingProfile.ChargingProfile != null && ChargingProfile.ChargingProfile.chargingSchedule != null && IsValidEnum<ChargingRateUnitType>((int)ChargingProfile.ChargingProfile.chargingSchedule.chargingRateUnit)))
|
|
!(ChargingProfile.ChargingProfile != null && ChargingProfile.ChargingProfile.chargingSchedule != null && IsValidEnum<ChargingRateUnitType>((int)ChargingProfile.ChargingProfile.chargingSchedule.chargingRateUnit)))
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
var request = new SetChargingProfileRequest()
|
|
var request = new SetChargingProfileRequest()
|
|
@@ -892,7 +935,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -901,6 +944,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "StopTransaction", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -908,7 +952,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("chargeprofile/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("chargeprofile")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpDelete]
|
|
[HttpDelete]
|
|
@@ -924,7 +968,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
var connectorStatus = chargePointService.GetChargePointCurrentSatus(ChargeBoxId, 0);
|
|
@@ -945,12 +989,12 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2103, Message = EVCBConfiguration.ERROR_MSG_CONNECTOR_ISNOT_AVAILIABLE_MODE });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -960,6 +1004,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearChargingProfile", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "ClearChargingProfile", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -967,7 +1012,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("trigger/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("trigger")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -983,14 +1028,14 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
if (triggerMessage == null || !(triggerMessage.TriggerType >= 1 && triggerMessage.TriggerType <= (int)MessageTrigger.StatusNotification))
|
|
if (triggerMessage == null || !(triggerMessage.TriggerType >= 1 && triggerMessage.TriggerType <= (int)MessageTrigger.StatusNotification))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -1007,7 +1052,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -1016,6 +1061,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "TriggerMessage", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "TriggerMessage", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -1023,7 +1069,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|
|
}
|
|
}
|
|
|
|
|
|
- [Route("unlockconnector/chargebox/{ChargeBoxId}/ connectorId/{ConnectorId}")]
|
|
|
|
|
|
+ [Route("unlockconnector")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpPost]
|
|
[HttpPost]
|
|
@@ -1039,14 +1085,14 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
if (ConnectorId < 0)
|
|
if (ConnectorId < 0)
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
//create reqest
|
|
//create reqest
|
|
@@ -1062,7 +1108,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -1071,6 +1117,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
|
|
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse()
|
|
{
|
|
{
|
|
|
|
+ Code = 2999,
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "UnlockConnector", ex.ToString())
|
|
Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "UnlockConnector", ex.ToString())
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -1079,7 +1126,7 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- [Route("compositeschedule/chargebox/{ChargeBoxId}")]
|
|
|
|
|
|
+ [Route("compositeschedule")]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(ErrorResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[ResponseType(typeof(InternalGenericResponse))]
|
|
[HttpGet]
|
|
[HttpGet]
|
|
@@ -1096,17 +1143,20 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
if (!chargePointService.IsOnline(ChargeBoxId))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2101, Message = EVCBConfiguration.ERROR_MSG_CHARGEBOXID_ISNT_EXIST_OR_OFFLINE });
|
|
}
|
|
}
|
|
|
|
|
|
//check parameter
|
|
//check parameter
|
|
- if (!(ConnectorId >= 0) ||
|
|
|
|
- !(ChargingRateUnit != -1 && ChargingRateUnit > 0 && ChargingRateUnit < 3))
|
|
|
|
|
|
+ if (!(ConnectorId >= 0) || !(Duration > 0))
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if ((ChargingRateUnit != -1 && (ChargingRateUnit <= 0 || ChargingRateUnit >= 3)))
|
|
|
|
+ {
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2100, Message = EVCBConfiguration.ERROR_MSG_PARAMETER_OUTOFRANGE_INCORRECT });
|
|
|
|
+ }
|
|
|
|
|
|
var request = new GetCompositeScheduleRequest()
|
|
var request = new GetCompositeScheduleRequest()
|
|
{
|
|
{
|
|
@@ -1120,14 +1170,14 @@ namespace EVCB_OCPP.WEBAPI.Controllers
|
|
throw new Exception("Write Command Fail!!");
|
|
throw new Exception("Write Command Fail!!");
|
|
}
|
|
}
|
|
|
|
|
|
- statusCode = HttpStatusCode.Accepted;
|
|
|
|
|
|
+ statusCode = HttpStatusCode.OK;
|
|
result.SerialNo = uuid;
|
|
result.SerialNo = uuid;
|
|
|
|
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
catch (Exception ex)
|
|
{
|
|
{
|
|
|
|
|
|
- return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetLocallistversion", ex.ToString()) });
|
|
|
|
|
|
+ return Request.CreateResponse(HttpStatusCode.BadRequest, new ErrorResponse() { Code = 2999, Message = string.Format(EVCBConfiguration.ERRORMESSAGE_FORMAT, EVCBConfiguration.ERROR_MSG_UNEXPECTEDERROR, "GetLocallistversion", ex.ToString()) });
|
|
}
|
|
}
|
|
|
|
|
|
return Request.CreateResponse(statusCode, result);
|
|
return Request.CreateResponse(statusCode, result);
|