Commit 52c634f5 authored by Alain Takoudjou's avatar Alain Takoudjou

slapos_cloud: filter subscription servers with allocation_scope uid list instead of negate query

`Catalog query with  query_kw["allocation_scope_uid"] = NegatedQuery(SimpleQuery(UID))` is ignored in the query. We can set the list of accepted UID in the query instead.

/reviewed-on !57
parent 6a2b58f5
import random import random
from Products.ZSQLCatalog.SQLCatalog import SimpleQuery, ComplexQuery, NegatedQuery from Products.ZSQLCatalog.SQLCatalog import SimpleQuery, ComplexQuery, NegatedQuery
person = context person = context
portal = context.getPortalObject()
def getOpenAllocationScopeUidList(exclude_uid_list=[]):
return [scope.getUid() for scope in portal.portal_categories.allocation_scope.open.objectValues() if scope.getUid() not in exclude_uid_list]
computer_partition = None computer_partition = None
filter_kw_copy = filter_kw.copy() filter_kw_copy = filter_kw.copy()
...@@ -82,13 +87,13 @@ for base_category in computer_base_category_list: ...@@ -82,13 +87,13 @@ for base_category in computer_base_category_list:
else: else:
query_kw["%s_uid" % base_category] = category.getUid() query_kw["%s_uid" % base_category] = category.getUid()
query_kw["capacity_scope_uid"] = context.getPortalObject().portal_categories.capacity_scope.open.getUid() query_kw["capacity_scope_uid"] = portal.portal_categories.capacity_scope.open.getUid()
if subscription_reference is not None: if subscription_reference is not None:
# Subscriptions uses a specific set of allocation scope # Subscriptions uses a specific set of allocation scope
query_kw["allocation_scope_uid"] = context.getPortalObject().portal_categories.allocation_scope.open.subscription.getUid() query_kw["allocation_scope_uid"] = portal.portal_categories.allocation_scope.open.subscription.getUid()
else: else:
# else pic anything but open/subscription # else pic anything but open/subscription
query_kw["allocation_scope_uid"] = NegatedQuery(SimpleQuery(allocation_scope_uid=context.getPortalObject().portal_categories.allocation_scope.open.subscription.getUid())) query_kw["allocation_scope_uid"] = getOpenAllocationScopeUidList(exclude_uid_list=[portal.portal_categories.allocation_scope.open.subscription.getUid()])
extra_query_kw = context.ComputerPartition_getCustomAllocationParameterDict( extra_query_kw = context.ComputerPartition_getCustomAllocationParameterDict(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment