forked from thingsboard/thingsboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial implementation of Asset, Relation and Alarm services
- Loading branch information
Showing
185 changed files
with
10,917 additions
and
1,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
199 changes: 141 additions & 58 deletions
199
application/src/main/java/org/thingsboard/server/actors/plugin/PluginProcessingContext.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
234 changes: 234 additions & 0 deletions
234
application/src/main/java/org/thingsboard/server/controller/AssetController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,234 @@ | ||
/** | ||
* Copyright © 2016-2017 The Thingsboard Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.thingsboard.server.controller; | ||
|
||
import com.google.common.util.concurrent.ListenableFuture; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.security.access.prepost.PreAuthorize; | ||
import org.springframework.web.bind.annotation.*; | ||
import org.thingsboard.server.common.data.Customer; | ||
import org.thingsboard.server.common.data.asset.Asset; | ||
import org.thingsboard.server.common.data.id.AssetId; | ||
import org.thingsboard.server.common.data.id.CustomerId; | ||
import org.thingsboard.server.common.data.id.TenantId; | ||
import org.thingsboard.server.common.data.page.TextPageData; | ||
import org.thingsboard.server.common.data.page.TextPageLink; | ||
import org.thingsboard.server.dao.asset.AssetSearchQuery; | ||
import org.thingsboard.server.dao.exception.IncorrectParameterException; | ||
import org.thingsboard.server.dao.model.ModelConstants; | ||
import org.thingsboard.server.exception.ThingsboardException; | ||
import org.thingsboard.server.service.security.model.SecurityUser; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
@RestController | ||
@RequestMapping("/api") | ||
public class AssetController extends BaseController { | ||
|
||
@PreAuthorize("hasAnyAuthority('TENANT_ADMIN', 'CUSTOMER_USER')") | ||
@RequestMapping(value = "/asset/{assetId}", method = RequestMethod.GET) | ||
@ResponseBody | ||
public Asset getAssetById(@PathVariable("assetId") String strAssetId) throws ThingsboardException { | ||
checkParameter("assetId", strAssetId); | ||
try { | ||
AssetId assetId = new AssetId(toUUID(strAssetId)); | ||
return checkAssetId(assetId); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/asset", method = RequestMethod.POST) | ||
@ResponseBody | ||
public Asset saveAsset(@RequestBody Asset asset) throws ThingsboardException { | ||
try { | ||
asset.setTenantId(getCurrentUser().getTenantId()); | ||
return checkNotNull(assetService.saveAsset(asset)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/asset/{assetId}", method = RequestMethod.DELETE) | ||
@ResponseStatus(value = HttpStatus.OK) | ||
public void deleteAsset(@PathVariable("assetId") String strAssetId) throws ThingsboardException { | ||
checkParameter("assetId", strAssetId); | ||
try { | ||
AssetId assetId = new AssetId(toUUID(strAssetId)); | ||
checkAssetId(assetId); | ||
assetService.deleteAsset(assetId); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/customer/{customerId}/asset/{assetId}", method = RequestMethod.POST) | ||
@ResponseBody | ||
public Asset assignAssetToCustomer(@PathVariable("customerId") String strCustomerId, | ||
@PathVariable("assetId") String strAssetId) throws ThingsboardException { | ||
checkParameter("customerId", strCustomerId); | ||
checkParameter("assetId", strAssetId); | ||
try { | ||
CustomerId customerId = new CustomerId(toUUID(strCustomerId)); | ||
checkCustomerId(customerId); | ||
|
||
AssetId assetId = new AssetId(toUUID(strAssetId)); | ||
checkAssetId(assetId); | ||
|
||
return checkNotNull(assetService.assignAssetToCustomer(assetId, customerId)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/customer/asset/{assetId}", method = RequestMethod.DELETE) | ||
@ResponseBody | ||
public Asset unassignAssetFromCustomer(@PathVariable("assetId") String strAssetId) throws ThingsboardException { | ||
checkParameter("assetId", strAssetId); | ||
try { | ||
AssetId assetId = new AssetId(toUUID(strAssetId)); | ||
Asset asset = checkAssetId(assetId); | ||
if (asset.getCustomerId() == null || asset.getCustomerId().getId().equals(ModelConstants.NULL_UUID)) { | ||
throw new IncorrectParameterException("Asset isn't assigned to any customer!"); | ||
} | ||
return checkNotNull(assetService.unassignAssetFromCustomer(assetId)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/customer/public/asset/{assetId}", method = RequestMethod.POST) | ||
@ResponseBody | ||
public Asset assignAssetToPublicCustomer(@PathVariable("assetId") String strAssetId) throws ThingsboardException { | ||
checkParameter("assetId", strAssetId); | ||
try { | ||
AssetId assetId = new AssetId(toUUID(strAssetId)); | ||
Asset asset = checkAssetId(assetId); | ||
Customer publicCustomer = customerService.findOrCreatePublicCustomer(asset.getTenantId()); | ||
return checkNotNull(assetService.assignAssetToCustomer(assetId, publicCustomer.getId())); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/tenant/assets", params = {"limit"}, method = RequestMethod.GET) | ||
@ResponseBody | ||
public TextPageData<Asset> getTenantAssets( | ||
@RequestParam int limit, | ||
@RequestParam(required = false) String textSearch, | ||
@RequestParam(required = false) String idOffset, | ||
@RequestParam(required = false) String textOffset) throws ThingsboardException { | ||
try { | ||
TenantId tenantId = getCurrentUser().getTenantId(); | ||
TextPageLink pageLink = createPageLink(limit, textSearch, idOffset, textOffset); | ||
return checkNotNull(assetService.findAssetsByTenantId(tenantId, pageLink)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAuthority('TENANT_ADMIN')") | ||
@RequestMapping(value = "/tenant/assets", params = {"assetName"}, method = RequestMethod.GET) | ||
@ResponseBody | ||
public Asset getTenantAsset( | ||
@RequestParam String assetName) throws ThingsboardException { | ||
try { | ||
TenantId tenantId = getCurrentUser().getTenantId(); | ||
return checkNotNull(assetService.findAssetByTenantIdAndName(tenantId, assetName)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAnyAuthority('TENANT_ADMIN', 'CUSTOMER_USER')") | ||
@RequestMapping(value = "/customer/{customerId}/assets", params = {"limit"}, method = RequestMethod.GET) | ||
@ResponseBody | ||
public TextPageData<Asset> getCustomerAssets( | ||
@PathVariable("customerId") String strCustomerId, | ||
@RequestParam int limit, | ||
@RequestParam(required = false) String textSearch, | ||
@RequestParam(required = false) String idOffset, | ||
@RequestParam(required = false) String textOffset) throws ThingsboardException { | ||
checkParameter("customerId", strCustomerId); | ||
try { | ||
TenantId tenantId = getCurrentUser().getTenantId(); | ||
CustomerId customerId = new CustomerId(toUUID(strCustomerId)); | ||
checkCustomerId(customerId); | ||
TextPageLink pageLink = createPageLink(limit, textSearch, idOffset, textOffset); | ||
return checkNotNull(assetService.findAssetsByTenantIdAndCustomerId(tenantId, customerId, pageLink)); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAnyAuthority('TENANT_ADMIN', 'CUSTOMER_USER')") | ||
@RequestMapping(value = "/assets", params = {"assetIds"}, method = RequestMethod.GET) | ||
@ResponseBody | ||
public List<Asset> getAssetsByIds( | ||
@RequestParam("assetIds") String[] strAssetIds) throws ThingsboardException { | ||
checkArrayParameter("assetIds", strAssetIds); | ||
try { | ||
SecurityUser user = getCurrentUser(); | ||
TenantId tenantId = user.getTenantId(); | ||
CustomerId customerId = user.getCustomerId(); | ||
List<AssetId> assetIds = new ArrayList<>(); | ||
for (String strAssetId : strAssetIds) { | ||
assetIds.add(new AssetId(toUUID(strAssetId))); | ||
} | ||
ListenableFuture<List<Asset>> assets; | ||
if (customerId == null || customerId.isNullUid()) { | ||
assets = assetService.findAssetsByTenantIdAndIdsAsync(tenantId, assetIds); | ||
} else { | ||
assets = assetService.findAssetsByTenantIdCustomerIdAndIdsAsync(tenantId, customerId, assetIds); | ||
} | ||
return checkNotNull(assets.get()); | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
|
||
@PreAuthorize("hasAnyAuthority('TENANT_ADMIN', 'CUSTOMER_USER')") | ||
@RequestMapping(value = "/assets", method = RequestMethod.POST) | ||
@ResponseBody | ||
public List<Asset> findByQuery(@RequestBody AssetSearchQuery query) throws ThingsboardException { | ||
checkNotNull(query); | ||
checkNotNull(query.getParameters()); | ||
checkNotNull(query.getAssetTypes()); | ||
checkEntityId(query.getParameters().getEntityId()); | ||
try { | ||
List<Asset> assets = checkNotNull(assetService.findAssetsByQuery(query).get()); | ||
assets = assets.stream().filter(asset -> { | ||
try { | ||
checkAsset(asset); | ||
return true; | ||
} catch (ThingsboardException e) { | ||
return false; | ||
} | ||
}).collect(Collectors.toList()); | ||
return assets; | ||
} catch (Exception e) { | ||
throw handleException(e); | ||
} | ||
} | ||
} |
Oops, something went wrong.