Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.1.0-b1
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Create a regular domain package for a registrar
- Create a restricted domain package for a registrar with different TLDs in the same package group
- Create a domain order form using the package group
- Give a client access to the restricted package
- View the order form as that client
- See that the TLDs from the restricted package are not shown
To resolve change lib/order_types/domain/order_type_domain.php in getTlds():
if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); }
To:
if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); }
And also in getTlds() change:
foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } }
To:
foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } }
Activity
Field | Original Value | New Value |
---|---|---|
Rank | Ranked higher |
Description |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php after line 345: {code:java} foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php after line 435: {code:java} foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} And after line 405: {code:java} if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} |
Description |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php after line 435: {code:java} foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} And after line 405: {code:java} if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
Description |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And also in getTlds() change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
Description |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve and this code block to lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And also in getTlds() change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve change lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And also in getTlds() change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
Description |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve change lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And also in getTlds() change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } {code} |
To reproduce:
* Create a regular domain package for a registrar * Create a restricted domain package for a registrar with different TLDs in the same package group * Create a domain order form using the package group * Give a client access to the restricted package * View the order form as that client * See that the TLDs from the restricted package are not shown To resolve change lib/order_types/domain/order_type_domain.php in getTlds(): {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } {code} To: {code:java} if (!isset($this->Packages)) { Loader::loadModels($this, ['Packages']); } if (!isset($this->Clients)) { Loader::loadModels($this, ['Clients']); } if (!isset($this->Session)) { Loader::loadComponents($this, ['Session']); } {code} And also in getTlds() change: {code:java} foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} To: {code:java} foreach ( $this->Clients->getRestrictedPackages($this->Session->read('blesta_client_id')) as $client_package ) { $package = $this->Packages->get($client_package->package_id); foreach ($package->groups as $package_group) { if ($package_group->id == $group->package_group_id && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } break; } } } foreach ($packages[$group->package_group_id] as $package) { $package = $this->Packages->get($package->id); if ($package && $package->status == 'active' && isset($package->meta->tlds)) { foreach ($package->meta->tlds as $tld) { if (isset($tlds[$tld])) { continue; } $tlds[$tld] = [$package, $group]; } } } {code} |
Sprint | 5.1.0 Sprint 5 [ 132 ] |
Rank | Ranked higher |
Fix Version/s | 5.1.0-b1 [ 11703 ] | |
Fix Version/s | Short Term [ 10800 ] |
Assignee | Jonathan Reissmueller [ jonathan ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Remaining Estimate | 0 minutes [ 0 ] | |
Time Spent | 13 minutes [ 780 ] | |
Worklog Id | 14893 [ 14893 ] |
Status | In Progress [ 3 ] | In Review [ 5 ] |
Resolution | Fixed [ 1 ] |
Status | In Review [ 5 ] | Closed [ 6 ] |