Class: Jamf::DistributionPoint
- Defined in:
- lib/jamf/api/classic/api_objects/distribution_point.rb
Overview
A FileShare Distribution Point in the JSS
As well as the normal Class and Instance methods for APIObject subclasses, the DistributionPoint class provides more interaction with other parts of the API.
Beyond the standard listing methods DistributionPoint.all, .all_ids, etc, every JSS has a single “master” distribution point. The Class method DistributionPoint.master_distribution_point will return the Jamf::DistributionPoint object for that master.
Also, some network segments have specific DistributionPoints assigned to them. Calling the Class method DistributionPoint.my_distribution_point will return a Jamf::DistributionPoint object for your local IP address.
Once you have an instance of Jamf::DistributionPoint, you can mount it (on a Mac) by calling its #mount method and unmount it with #unmount. The Package and possibly Script classes use this to upload items to the master.
NOTE: This class only deals with FileShare Distribution Points. There is no access to the Cloud Distribution Point in the classic API. See the .master_distribution_point and .my_distribution_point class methods for how they handle things when the Cloud DP is the master.
Constant Summary collapse
- RSRC_BASE =
The base for REST resources of this class
'distributionpoints'.freeze
- RSRC_LIST_KEY =
the hash key used for the JSON list output of all objects in the JSS its also used in various error messages
:distribution_points
- RSRC_OBJECT_KEY =
The hash key used for the JSON object output. It's also used in various error messages
:distribution_point
- MOUNT_OPTIONS =
what are the mount options? these are comma-separated, and are passed with -o
'nobrowse'.freeze
- EMPTY_PW_256 =
An empty SHA256 digest
'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'.freeze
- DEFAULT_MOUNTPOINT_DIR =
Set default local mount for distribution point
Pathname.new '/tmp'
- DEFAULT_MOUNTPOINT_PREFIX =
'CasperDistribution-id'.freeze
- OBJECT_HISTORY_OBJECT_TYPE =
the object type for this object in the object history table. See APIObject#add_object_history_entry
76
Instance Attribute Summary collapse
-
#certificate ⇒ String
readonly
The name of the cert.
-
#certificate_required ⇒ Boolean
readonly
Do http downloads use cert.
-
#connection_type ⇒ String
readonly
Protocol for fileservice access (e.g. AFP, SMB).
-
#context ⇒ String
readonly
The “context” for http downloads (what goes after the hostname part of the URL).
-
#enable_load_balancing ⇒ String
readonly
Load balanacing enabled?.
-
#failover_point ⇒ Integer
readonly
The id of the DP to use for failover.
-
#failover_point_url ⇒ String
readonly
The URL to use if this one doesn't work.
-
#http_downloads_enabled ⇒ Boolean
readonly
Are http downloads available from this DP?.
-
#http_password_sha256 ⇒ String
readonly
The password for http downloads, if needed, as a SHA256 digest.
-
#http_url ⇒ String
readonly
The URL for http downloads.
-
#http_username ⇒ String
readonly
The username to use for http downloads if needed for user/pw auth.
-
#ip_address ⇒ String
(also: #hostname)
readonly
The hostname of this DP.
-
#is_master ⇒ Boolean
(also: #master?)
readonly
Is this the master DP?.
-
#local_path ⇒ String
readonly
The local path on the server to the distribution point directory.
-
#no_authentication_required ⇒ Boolean
readonly
Do http downloads work without auth?.
-
#port ⇒ Integer
readonly
The port for http access.
-
#protocol ⇒ String
readonly
The protocol to use for http downloads (http/https).
-
#read_only_password_sha256 ⇒ String
readonly
Read-only password as a SHA256 digest.
-
#read_only_username ⇒ String
readonly
Read-only username for fileservice.
-
#read_write_password_sha256 ⇒ String
readonly
The read-write password as a SHA256 digest.
-
#read_write_username ⇒ String
readonly
The read-write username for fileservice access.
-
#share_name ⇒ String
readonly
The name of the fileservice sharepoint.
-
#share_port ⇒ Integer
readonly
The port for fileservice access.
-
#ssh_password_sha256 ⇒ String
readonly
The ssh password as a SHA256 digest.
-
#ssh_username ⇒ String
readonly
Ssh username.
-
#username_password_required ⇒ Boolean
readonly
Do http downloads use user/pw auth?.
-
#workgroup_or_domain ⇒ String
readonly
Work group or domain for SMB.
Class Method Summary collapse
-
.master_distribution_point(refresh = false, default: nil, api: nil, cnx: Jamf.cnx) ⇒ Jamf::DistributionPoint
Get the DistributionPoint instance for the master distribution point.
-
.my_distribution_point(refresh = false, default: :master, api: nil, cnx: Jamf.cnx) ⇒ Jamf::DistributionPoint
Get the DistributionPoint instance for the machine running this code, based on its IP address.
Instance Method Summary collapse
-
#check_pw(user, pw) ⇒ Boolean, Nil
Check the validity of a password.
-
#initialize(**args) ⇒ DistributionPoint
constructor
As well as the standard :id, :name, and :data, you can instantiate this class with :id => :master, in which case you'll get the Master Distribution Point as defined in the JSS.
-
#mount(pw = nil, access = :ro) ⇒ Pathname
Mount this distribution point locally.
-
#mounted? ⇒ Boolean
Is this thing mounted right now?.
-
#reachable_for_download?(pw = '', check_http = true) ⇒ FalseClass, Symbol
Check to see if this dist point is reachable for downloads (read-only) via either http, if available, or filesharing.
-
#reachable_for_upload?(pw) ⇒ FalseClass, Symbol
Check to see if this dist point is reachable for uploads (read-write) via filesharing.
-
#unmount ⇒ void
(also: #umount)
Unmount the distribution point.
Constructor Details
#initialize(**args) ⇒ DistributionPoint
As well as the standard :id, :name, and :data, you can instantiate this class with :id => :master, in which case you'll get the Master Distribution Point as defined in the JSS. An error will be raised if one hasn't been defined.
You can also do this more easily by calling JSS.master_distribution_point
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 277 def initialize(**args) # TODO: this looks redundant with super.... args[:cnx] ||= args[:api] args[:cnx] ||= Jamf.cnx @cnx = args[:cnx] @init_data = nil # looking for master? if args[:id] == :master self.class.all_ids(cnx: @cnx).each do |id| @init_data = @cnx.c_get("#{RSRC_BASE}/id/#{id}")[RSRC_OBJECT_KEY] if @init_data[:is_master] @id = @init_data[:id] @name = @init_data[:name] break end # if data is master @init_data = nil end # each id end # if args is master super(args) if @init_data.nil? @ip_address = @init_data[:ip_address] @local_path = @init_data[:local_path] @enable_load_balancing = @init_data[:enable_load_balancing] @failover_point = @init_data[:failover_point] @is_master = @init_data[:is_master] @connection_type = @init_data[:connection_type] @share_port = @init_data[:share_port] @share_name = @init_data[:share_name] @workgroup_or_domain = @init_data[:workgroup_or_domain] @read_write_username = @init_data[:read_write_username] @read_write_password_sha256 = @init_data[:read_write_password_sha256] @read_only_username = @init_data[:read_only_username] @read_only_password_sha256 = @init_data[:read_only_password_sha256] @ssh_username = @init_data[:ssh_username] @ssh_password_sha256 = @init_data[:ssh_password_sha256] @http_username = @init_data[:http_username] @http_password_sha256 = @init_data[:http_password_sha256] @http_downloads_enabled = @init_data[:http_downloads_enabled] @protocol = @init_data[:protocol] @port = @init_data[:port] @context = @init_data[:context] @no_authentication_required = @init_data[:no_authentication_required] @certificate_required = @init_data[:certificate_required] @username_password_required = @init_data[:username_password_required] @certificate = @init_data[:certificate] @http_url = @init_data[:http_url] @failover_point_url = @init_data[:failover_point_url] @port = @init_data[:ssh_password] # Note, as of Casper 9.3: # :management_password_md5=>"xxxxx" # and # :management_password_sha256=> "xxxxxxxxxx" # Are the read/write password # # An empty passwd is # MD5 = d41d8cd98f00b204e9800998ecf8427e # SHA256 = e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 # # Seemms the read-only pw isn't available in the API # if we mount for fileservice, where's the mountpoint? @mountpoint = DEFAULT_MOUNTPOINT_DIR + "#{DEFAULT_MOUNTPOINT_PREFIX}#{@id}" end |
Instance Attribute Details
#certificate ⇒ String (readonly)
Returns the name of the cert. used for http cert. auth.
254 255 256 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 254 def certificate @certificate end |
#certificate_required ⇒ Boolean (readonly)
Returns do http downloads use cert. authentication?.
242 243 244 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 242 def certificate_required @certificate_required end |
#connection_type ⇒ String (readonly)
Returns Protocol for fileservice access (e.g. AFP, SMB).
201 202 203 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 201 def connection_type @connection_type end |
#context ⇒ String (readonly)
Returns the “context” for http downloads (what goes after the hostname part of the URL).
236 237 238 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 236 def context @context end |
#enable_load_balancing ⇒ String (readonly)
Returns load balanacing enabled?.
190 191 192 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 190 def enable_load_balancing @enable_load_balancing end |
#failover_point ⇒ Integer (readonly)
Returns the id of the DP to use for failover.
193 194 195 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 193 def failover_point @failover_point end |
#failover_point_url ⇒ String (readonly)
Returns the URL to use if this one doesn't work.
260 261 262 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 260 def failover_point_url @failover_point_url end |
#http_downloads_enabled ⇒ Boolean (readonly)
Returns are http downloads available from this DP?.
227 228 229 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 227 def http_downloads_enabled @http_downloads_enabled end |
#http_password_sha256 ⇒ String (readonly)
Returns the password for http downloads, if needed, as a SHA256 digest.
251 252 253 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 251 def http_password_sha256 @http_password_sha256 end |
#http_url ⇒ String (readonly)
Returns the URL for http downloads.
257 258 259 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 257 def http_url @http_url end |
#http_username ⇒ String (readonly)
Returns the username to use for http downloads if needed for user/pw auth.
248 249 250 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 248 def http_username @http_username end |
#ip_address ⇒ String (readonly) Also known as: hostname
Returns the hostname of this DP.
184 185 186 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 184 def ip_address @ip_address end |
#is_master ⇒ Boolean (readonly) Also known as: master?
Returns is this the master DP?.
196 197 198 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 196 def is_master @is_master end |
#local_path ⇒ String (readonly)
Returns the local path on the server to the distribution point directory.
187 188 189 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 187 def local_path @local_path end |
#no_authentication_required ⇒ Boolean (readonly)
Returns do http downloads work without auth?.
239 240 241 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 239 def no_authentication_required @no_authentication_required end |
#port ⇒ Integer (readonly)
Returns the port for http access.
233 234 235 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 233 def port @port end |
#protocol ⇒ String (readonly)
Returns the protocol to use for http downloads (http/https).
230 231 232 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 230 def protocol @protocol end |
#read_only_password_sha256 ⇒ String (readonly)
Returns read-only password as a SHA256 digest.
219 220 221 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 219 def read_only_password_sha256 @read_only_password_sha256 end |
#read_only_username ⇒ String (readonly)
Returns read-only username for fileservice.
216 217 218 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 216 def read_only_username @read_only_username end |
#read_write_password_sha256 ⇒ String (readonly)
Returns the read-write password as a SHA256 digest.
213 214 215 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 213 def read_write_password_sha256 @read_write_password_sha256 end |
#read_write_username ⇒ String (readonly)
Returns the read-write username for fileservice access.
210 211 212 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 210 def read_write_username @read_write_username end |
#share_name ⇒ String (readonly)
Returns the name of the fileservice sharepoint.
207 208 209 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 207 def share_name @share_name end |
#share_port ⇒ Integer (readonly)
Returns the port for fileservice access.
204 205 206 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 204 def share_port @share_port end |
#ssh_password_sha256 ⇒ String (readonly)
Returns the ssh password as a SHA256 digest.
268 269 270 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 268 def ssh_password_sha256 @ssh_password_sha256 end |
#ssh_username ⇒ String (readonly)
Returns ssh username.
265 266 267 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 265 def ssh_username @ssh_username end |
#username_password_required ⇒ Boolean (readonly)
Returns do http downloads use user/pw auth?.
245 246 247 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 245 def username_password_required @username_password_required end |
#workgroup_or_domain ⇒ String (readonly)
Returns work group or domain for SMB.
222 223 224 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 222 def workgroup_or_domain @workgroup_or_domain end |
Class Method Details
.master_distribution_point(refresh = false, default: nil, api: nil, cnx: Jamf.cnx) ⇒ Jamf::DistributionPoint
Get the DistributionPoint instance for the master distribution point.
If the Cloud Dist Point is master, then the classic API has no way to know that or access it. In that case you can provide the 'default:' parameter. Give it the name or id of any dist. point to be used instead, or give it :random to randomly choose one.
If there are no fileshare dist points defined (the cloud is the only one) then this whole class can't really be used.
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 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 107 def self.master_distribution_point(refresh = false, default: nil, api: nil, cnx: Jamf.cnx) cnx = api if api @master_distribution_point = nil if refresh return @master_distribution_point if @master_distribution_point all_ids(refresh, cnx: cnx).each do |dp_id| dp = fetch id: dp_id, cnx: cnx if dp.master? @master_distribution_point = dp break end end # If we're here, the Cloud DP might be master, but there's no # access to it in the API :/ raise Jamf::NoSuchItemError, 'No Master FileShare Distribtion Point. Use the default: parameter if needed.' unless @master_distribution_point || default if @master_distribution_point @master_distribution_point elsif default == :random @master_distribution_point = fetch(id: all_ids.sample, cnx: cnx) else @master_distribution_point = fetch(default, cnx: cnx) end end |
.my_distribution_point(refresh = false, default: :master, api: nil, cnx: Jamf.cnx) ⇒ Jamf::DistributionPoint
Get the DistributionPoint instance for the machine running this code, based on its IP address. If none is defined for this IP address, use the name or id provided as default. If no default: is provided, the master dp is used. If no master dp available (meaning its the cloud dp) then use a randomly chosen dp.
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 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 151 def self.my_distribution_point(refresh = false, default: :master, api: nil, cnx: Jamf.cnx) cnx = api if api @my_distribution_point = nil if refresh return @my_distribution_point if @my_distribution_point my_net_seg_id = Jamf::NetworkSegment.my_network_segment refresh, cnx: cnx if my_net_seg_id my_net_seg = Jamf::NetworkSegment.fetch id: my_net_seg_id, cnx: cnx my_dp_name = my_net_seg.distribution_point @my_distribution_point = fetch name: my_dp_name, cnx: cnx if my_dp_name end # if my_net_seg_id return @my_distribution_point if @my_distribution_point @my_distribution_point = case default when String fetch name: default, cnx: cnx when Integer fetch id: default, cnx: cnx when :master master_distribution_point refresh, default: :random, cnx: cnx when :random fetch id: all_ids(refresh).sample, cnx: cnx end end |
Instance Method Details
#check_pw(user, pw) ⇒ Boolean, Nil
Check the validity of a password.
360 361 362 363 364 365 366 367 368 369 370 371 372 373 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 360 def check_pw(user, pw) raise Jamf::InvalidDataError, 'The first parameter must be one of :ro, :rw, :ssh, :http' unless %i[ro rw ssh http].include? user sha256 = case user when :rw then @read_write_password_sha256 when :ro then @read_only_password_sha256 when :http then @http_password_sha256 when :ssh then @ssh_password_sha256 end # case return nil if sha256 == EMPTY_PW_256 sha256 == Digest::SHA2.new(256).update(pw).to_s end |
#mount(pw = nil, access = :ro) ⇒ Pathname
Mount this distribution point locally.
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 438 def mount(pw = nil, access = :ro) return @mountpoint if mounted? access = :ro unless access == :rw password = if pw == :prompt JSS.prompt_for_password "Enter the password for the #{access} user '#{access == :ro ? @read_only_username : @read_write_username}':" elsif pw.is_a?(Symbol) && pw.to_s.start_with?('stdin') pw.to_s =~ /^stdin(\d+)$/ line = Regexp.last_match(1) line ||= 2 JSS.stdin line else pw end pwok = check_pw(access, password) unless pwok msg = pwok.nil? ? "No #{access} password set in the JSS" : "Incorrect password for #{access} account" raise Jamf::InvalidDataError, msg end username = access == :ro ? @read_only_username : @read_write_username safe_pw = CGI.escape password.to_s @mount_url = "#{@connection_type.downcase}://#{username}:#{safe_pw}@#{@ip_address}/#{@share_name}" @mnt_cmd = case @connection_type.downcase when 'smb' then '/sbin/mount_smbfs' when 'afp' then '/sbin/mount_afp' else raise "Can't mount distribution point #{@name}: no known connection type." end @mountpoint.mkpath mount_out = `#{@mnt_cmd} -o '#{MOUNT_OPTIONS}' '#{@mount_url}' '#{@mountpoint}' 2>&1` if ($CHILD_STATUS.exitstatus == 0) && @mountpoint.mountpoint? # if system @mnt_cmd.to_s, *['-o', MOUNT_OPTIONS, @mount_url, @mountpoint.to_s] @mounted = access else @mountpoint.rmdir if @mountpoint.directory? @mounted = nil raise Jamf::FileServiceError, "Can't mount #{@ip_address}: #{mount_out}" end @mountpoint end |
#mounted? ⇒ Boolean
Is this thing mounted right now?
508 509 510 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 508 def mounted? @mountpoint.directory? && @mountpoint.mountpoint? end |
#reachable_for_download?(pw = '', check_http = true) ⇒ FalseClass, Symbol
Check to see if this dist point is reachable for downloads (read-only) via either http, if available, or filesharing.
388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 388 def reachable_for_download?(pw = '', check_http = true) return :http if check_http && http_reachable?(pw) return :mountable if mounted? return false unless check_pw :ro, pw begin mount pw, :ro :mountable rescue false ensure unmount end end |
#reachable_for_upload?(pw) ⇒ FalseClass, Symbol
Check to see if this dist point is reachable for uploads (read-write) via filesharing.
410 411 412 413 414 415 416 417 418 419 420 421 422 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 410 def reachable_for_upload?(pw) return :mountable if mounted? return false unless check_pw :rw, pw begin mount pw, :rw :mountable rescue false ensure unmount end end |
#unmount ⇒ void Also known as: umount
This method returns an undefined value.
Unmount the distribution point.
Does nothing if it wasn't mounted with #mount.
491 492 493 494 495 496 497 498 499 500 501 502 |
# File 'lib/jamf/api/classic/api_objects/distribution_point.rb', line 491 def unmount return nil unless mounted? if system "/sbin/umount '#{@mountpoint}'" sleep 1 # the umount takes time. @mountpoint.rmdir if @mountpoint.directory? && !@mountpoint.mountpoint? @mounted = false else raise Jamf::FileServiceError, "There was a problem unmounting #{@mountpoint}" end nil end |