Advertisement
puggan

autoNetworkLocation.php

May 5th, 2017
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.68 KB | None | 0 0
  1. #!/usr/bin/env php
  2. <?php
  3.  
  4.     $location_cmd = "/usr/sbin/scselect";
  5.     $scan_cmd = "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport";
  6.  
  7.     $locations = array();
  8.     $current_location = NULL;
  9.     $new_location = NULL;
  10.  
  11.     exec($location_cmd, $rows, $error_code);
  12.  
  13.     if($error_code)
  14.     {
  15.         trigger_error("Location command failed: '{$location_cmd}'");
  16.         die($error_code);
  17.     }
  18.  
  19.     foreach($rows as $row)
  20.     {
  21.         if(preg_match("#(?<selected>\*\s+)?(?<id>[-0-9A-F]+)\s+\((?<name>.*)\)#", $row, $m))
  22.         {
  23.             if($m['selected'])
  24.             {
  25.                 $current_location = $m['id'];
  26.             }
  27.             $locations[$m['id']] = $m['name'];
  28.         }
  29.     }
  30.  
  31.     if(!$locations)
  32.     {
  33.         trigger_error("No locations found");
  34.         die(1);
  35.     }
  36.  
  37.     $ssid = parse_ini_file(__DIR__ . '/ssid.ini');
  38.  
  39.     if(!$ssid)
  40.     {
  41.         trigger_error("No ssid-settings found");
  42.         die(1);
  43.     }
  44.  
  45.     exec("{$scan_cmd} -s", $rows, $error_code);
  46.  
  47.     if($error_code)
  48.     {
  49.         trigger_error("Scan command failed: '{$scan_cmd} -s'");
  50.         die($error_code);
  51.     }
  52.  
  53.     foreach($rows as $row)
  54.     {
  55.         if(preg_match("#^\s*\b(?<name>.*)\b (?<address>[0-9a-f][0-9a-f](:[0-9a-f][0-9a-f]){5}) #", $row, $m))
  56.         {
  57.             if(!empty($ssid[$m['address']]))
  58.             {
  59.                 $new_location = $ssid[$m['address']];
  60.                 break;
  61.             }
  62.             if(!empty($ssid[$m['name']]))
  63.             {
  64.                 $new_location = $ssid[$m['name']];
  65.                 break;
  66.             }
  67.         }
  68.     }
  69.  
  70.     if(!$new_location)
  71.     {
  72.         if(!empty($ssid['*']))
  73.         {
  74.             $new_location = $ssid['*'];
  75.         }
  76.     }
  77.  
  78.     if(!$new_location)
  79.     {
  80.         die(0);
  81.     }
  82.  
  83.     if(empty($locations[$new_location]))
  84.     {
  85.         $location_by_name = array_flip($locations);
  86.         if(empty($location_by_name[$new_location]))
  87.         {
  88.             trigger_error("Unknown Location: '{$new_location}'" . PHP_EOL . print_r($ssid, TRUE));
  89.             die(1);
  90.         }
  91.         $new_location = $location_by_name[$new_location];
  92.     }
  93.  
  94.     if($new_location == $current_location)
  95.     {
  96.         die(0);
  97.     }
  98.  
  99.     if($current_location AND !empty($locations[$current_location]))
  100.     {
  101.         echo "Switching from '{$locations[$current_location]}' ({$current_location}) to '{$locations[$new_location]}' ({$new_location})" . PHP_EOL;
  102.     }
  103.     else
  104.     {
  105.         echo "Switching to '{$locations[$new_location]}' ({$new_location})" . PHP_EOL;
  106.     }
  107.  
  108.     passthru($location_cmd . ' ' . escapeshellarg($new_location), $error_code);
  109.     die($error_code);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement