This file is indexed.

/usr/share/php/irods/prods/src/RODSAccount.class.php is in php-irods-prods 3.3.0~beta1-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
/**#@+
 * Constants
 */
/**
 * Maximum lengh of password string. Only up to this lengh of password are submitted to RODS server.
 */
define("MAX_PASSWORD_LEN", 50);
/**#@-*/

require_once("autoload.inc.php");

class RODSAccount
{
 /**#@+
  * @var string 
  */
  public $user;
  public $pass;
  public $host;
  public $port;
  public $zone; 
  public $default_resc;
  public $auth_type;
  public $ticket;
  /**#@-*/
  
  public function __construct($host, $port, $user, $pass, $zone="", 
    $default_resc="", $auth_type="irods",$ticket = '')
  {
    $this->host=$host;
    $this->port=$port;
    $this->user=$user;
    $this->pass=$pass;
    $this->zone=$zone;
    $this->default_resc=$default_resc;
    $this->auth_type=$auth_type;
     $this->ticket = $ticket;
  }
  
 /**
	* Create a RODSAccount object from URI string.
	* @param string $uri 
	* @return a new RODSAccount object
	*/
  public static function fromURI($uri)
  {
    $url=parse_url($uri);
    
    $host=isset($url['host'])?$url['host']:''; 
    $port=isset($url['port'])?$url['port']:'';   
    
    $user='';
    $zone='';
    $authtype='irods';
    if (isset($url['user']))
    {
      if (strstr($url['user'],".")!==false) {
        $user_array=@explode(".",$url['user']);
        if (count($user_array)===3) {
          $user=$user_array[0];
          $zone=$user_array[1];
          $authtype=$user_array[2];
        }
        else {
          $user=$user_array[0];
          $zone=$user_array[1];
        }
      } 
      else
        $user=$url['user'];
    }  
    
    $pass=isset($url['pass'])?$url['pass']:'';
    
    return (new RODSAccount($host, $port, $user, $pass, $zone, "", $authtype,$ticket = ''));
  }
  
  

    public function equals(RODSAccount $other)
    {
        if (!isset($other))
            return false;

        if (($this->host == $other->host) &&
            ($this->port == $other->port) &&
            ($this->user == $other->user)
        ) {
            $ret_val = true;
        } else
            $ret_val = false;

        //echo ( "$this->host,$this->port,$this->user vs. $other->host,$other->port,$other->user = $ret_val");
        //flush();
        return $ret_val;
    }

    public function getSignature()
    {
        return (bin2hex(md5("$this->user.$this->zone:this->pass@$this->host:$this->port.$this->ticket", TRUE)));
    }

    public function __toString()
    {
        return "$this->user.$this->zone:(password hidden)@$this->host:$this->port";
    }

    public function toURI()
    {
        return ($this->user .
            (empty($this->zone) ? '' : '.' . $this->zone) .
            "@" . $this->host . ":" . $this->port);
    }

    /**
     * Get user information
     * @param string username, if not specified, it will use current username instead
     * @return array with fields: id, name, type, zone, dn, info, comment, ctime, mtime. If user not found return empty array.
     */
    public function getUserInfo($username = NULL,
                                $get_cb = array('RODSConnManager', 'getConn'),
                                $rel_cb = array('RODSConnManager', 'releaseConn'))
    {
        //$conn = RODSConnManager::getConn($this);
        $conn = call_user_func_array($get_cb, array(&$this));
        //TODO: Overcome fear of passing $this by reference or stop passing $this by reference
        $userinfo = $conn->getUserInfo($username);
        //RODSConnManager::releaseConn($conn);
        call_user_func($rel_cb, $conn);
        if ((!empty($userinfo)) && (!empty($userinfo['zone'])))
            $this->zone = $userinfo['zone'];
        return $userinfo;
    }

    /**
     * Get a temp password for current user
     * @return string of temp password
     */
    public function getTempPassword($get_cb = array('RODSConnManager', 'getConn'),
                                    $rel_cb = array('RODSConnManager', 'releaseConn'))
    {
        //$conn = RODSConnManager::getConn($this);
        $conn = call_user_func_array($get_cb, array(&$this));
        //TODO: Overcome fear of passing $this by reference or stop passing $this by reference
        $temppass = $conn->getTempPassword();
        // RODSConnManager::releaseConn($conn);
        call_user_func($rel_cb, $conn);
        return $temppass;
    }

    /**
     * Get user's home directory
     * @param string init_path, if specified, it will overwrite the default path
     * @return ProdsDir User's home directory
     */
    public function getUserHomeDir($init_path = NULL)
    {
        if (empty($this->zone))
            $this->getUserInfo();
        if (isset($init_path)) {
            $dir = new ProdsDir($this, $init_path);
            if ($dir->exists()) {
                return $dir;
            }
        }
        return new ProdsDir($this, "/$this->zone/home/$this->user");
    }

    /**
     * Get user's home directory URI
     * @param string init_path, if specified, it will overwrite the default path
     * @return String User's home
     */
    public function getUserHomeDirURI($init_path = NULL)
    {
        $dir = $this->getUserHomeDir($init_path);
        return $dir->toURI();
    }

    /**
     * Get user's trash directory
     * @return ProdsDir User's trash dir
     */
    public function getUserTrashDir()
    {
        if (empty($this->zone))
            $this->getUserInfo();
        return new ProdsDir($this, "/$this->zone/trash/home/$this->user");
    }

    /**
     * Get user's trash directory URI
     * @return String User's trash URI
     */
    public function getUserTrashDirURI()
    {
        $dir = $this->getUserTrashDir();
        return $dir->toURI();
    }
}

?>