Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1168537
shipping_quote_collector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Sep 24, 8:36 PM
Size
4 KB
Mime Type
text/x-php
Expires
Fri, Sep 26, 8:36 PM (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
757001
Attached To
rMINC Modules.In-Commerce
shipping_quote_collector.php
View Options
<?php
/**
* @version $Id: shipping_quote_collector.php 13813 2010-07-07 09:44:57Z alex $
* @package In-Commerce
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license Commercial License
* This software is protected by copyright law and international treaties.
* Unauthorized reproduction or unlicensed usage of the code of this program,
* or any portion of it may result in severe civil and criminal penalties,
* and will be prosecuted to the maximum extent possible under the law
* See http://www.in-portal.org/commercial-license for copyright notices and details.
*/
defined
(
'FULL_PATH'
)
or
die
(
'restricted access!'
);
class
ShippingQuoteCollector
extends
ShippingQuoteEngine
{
function
GetShippingQuotes
(
$params
)
{
$cs_helper
=&
$this
->
Application
->
recallObject
(
'CountryStatesHelper'
);
/* @var $cs_helper kCountryStatesHelper */
$has_states
=
$cs_helper
->
CountryHasStates
(
$cs_helper
->
getCountryIso
(
$params
[
'dest_country'
],
true
)
);
if
(
!
$params
[
'dest_city'
]
||
!
$params
[
'dest_country'
]
||
(
$has_states
&&
!
$params
[
'dest_state'
])
||
!
$params
[
'dest_postal'
]
||
!
$params
[
'packages'
]
)
{
return
Array
();
}
$cached_var_name
=
'ShippingQuotes'
.
crc32
(
serialize
(
$params
));
$shipping_types
=
$this
->
Application
->
getDBCache
(
$cached_var_name
);
if
(
$shipping_types
)
{
return
unserialize
(
$shipping_types
);
}
$shipping_types
=
Array
();
$classes
=
$this
->
getEngineClasses
();
foreach
(
$classes
as
$class
)
{
$object
=&
$this
->
Application
->
recallObject
(
$class
);
/* @var $object ShippingQuoteEngine */
$new_shipping_types
=
$object
->
GetShippingQuotes
(
$params
);
$shipping_types
=
array_merge
(
$shipping_types
,
$new_shipping_types
);
}
uasort
(
$shipping_types
,
Array
(&
$this
,
'price_sort'
));
// exclude not available shipping quotes by products
$limit_types
=
unserialize
(
$params
[
'limit_types'
]);
if
(
is_array
(
$limit_types
)
&&
!
in_array
(
'ANY'
,
$limit_types
))
{
if
(
count
(
$limit_types
)
==
0
)
{
break
;
}
$available_types
=
Array
();
foreach
(
$shipping_types
as
$a_type
)
{
$include
=
false
;
// exclude by default
foreach
(
$limit_types
as
$limit
)
{
$include
=
$include
||
preg_match
(
"/^$limit/"
,
$a_type
[
'ShippingId'
]);
if
(
$include
)
{
break
;
}
}
if
(!
$include
)
{
continue
;
}
$available_types
[
$a_type
[
'ShippingId'
]
]
=
$a_type
;
}
$shipping_types
=
$available_types
;
}
// exclude Selected Products Only shipping types, not matching products
$available_types
=
Array
();
foreach
(
$shipping_types
as
$a_type
)
{
if
(
getArrayValue
(
$a_type
,
'SelectedOnly'
))
{
if
(!
is_array
(
$limit_types
)
||
!
in_array
(
$a_type
[
'ShippingId'
],
$limit_types
))
{
continue
;
}
}
$available_types
[
$a_type
[
'ShippingId'
]
]
=
$a_type
;
}
$shipping_types
=
$available_types
;
$this
->
Application
->
setDBCache
(
$cached_var_name
,
serialize
(
$shipping_types
),
24
*
3600
);
return
$shipping_types
;
}
function
GetAvailableShippingTypes
()
{
$shipping_types
=
Array
();
$classes
=
$this
->
getEngineClasses
();
foreach
(
$classes
as
$class
)
{
$object
=&
$this
->
Application
->
recallObject
(
$class
);
/* @var $object ShippingQuoteEngine */
$new_shipping_types
=
$object
->
GetAvailableTypes
();
$shipping_types
=
array_merge
(
$shipping_types
,
$new_shipping_types
);
}
uasort
(
$shipping_types
,
Array
(&
$this
,
'SortShippingTypes'
));
return
$shipping_types
;
}
/**
* Returns all enabled shipping quote engine classes
*
* @return Array
*/
function
getEngineClasses
()
{
$sql
=
'SELECT Classname
FROM '
.
$this
->
Application
->
getUnitOption
(
'sqe'
,
'TableName'
)
.
'
WHERE Status = '
.
STATUS_ACTIVE
;
$classes
=
$this
->
Conn
->
GetCol
(
$sql
);
// always persists
$classes
[]
=
'CustomShippingQuoteEngine'
;
return
$classes
;
}
function
SortShippingTypes
(
$elem1
,
$elem2
)
{
if
(
$elem1
[
'_Name'
]
==
$elem2
[
'_Name'
])
{
return
0
;
}
return
$elem1
[
'_Name'
]
<
$elem2
[
'_Name'
]
?
-
1
:
1
;
}
function
price_sort
(
$elem1
,
$elem2
)
{
if
(
$elem1
[
'TotalCost'
]
==
$elem2
[
'TotalCost'
])
{
return
0
;
}
return
$elem1
[
'TotalCost'
]
<
$elem2
[
'TotalCost'
]
?
-
1
:
1
;
}
}
Event Timeline
Log In to Comment