MDL-36950 Pass the Moodle proxy setting to the mdeploy.php utility
authorDavid Mudrák <david@moodle.com>
Fri, 30 Nov 2012 15:12:34 +0000 (16:12 +0100)
committerDavid Mudrák <david@moodle.com>
Fri, 30 Nov 2012 15:12:34 +0000 (16:12 +0100)
lib/pluginlib.php

index 02a6d99..9211a5b 100644 (file)
@@ -1691,6 +1691,28 @@ class available_update_deployer {
             'returnurl' => $upgradeurl->out(true),
         );
 
+        if (!empty($CFG->proxyhost)) {
+            // Beware - we should call just !is_proxybypass() here. But currently, our cURL wrapper
+            // class does not do it. So, to have consistent behaviour, we pass proxy setting
+            // regardless the $CFG->proxybypass setting. Once the {@link curl} class is fixed,
+            // the condition should be amended.
+            if (true or !is_proxybypass($info->download)) {
+                if (empty($CFG->proxyport)) {
+                    $params['proxy'] = $CFG->proxyhost;
+                } else {
+                    $params['proxy'] = $CFG->proxyhost.':'.$CFG->proxyport;
+                }
+
+                if (!empty($CFG->proxyuser) and !empty($CFG->proxypassword)) {
+                    $params['proxyuserpwd'] = $CFG->proxyuser.':'.$CFG->proxypassword;
+                }
+
+                if (!empty($CFG->proxytype)) {
+                    $params['proxytype'] = $CFG->proxytype;
+                }
+            }
+        }
+
         $widget = new single_button(
             new moodle_url('/mdeploy.php', $params),
             get_string('updateavailableinstall', 'core_admin'),