Method: LDAP::LDIF.parse_entry
- Defined in:
- lib/ldap/ldif.rb
.parse_entry(lines) ⇒ Object
Parse the LDIF entry contained in lines
and return an LDAP::Record object. lines
should be an object that responds to each, such as a string or an array of lines, separated by n characters.
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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 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 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'lib/ldap/ldif.rb', line 175 def LDIF.parse_entry( lines ) header = true comment = false change_type = nil sep = nil attr = nil bvalues = [] controls = nil hash = {} mods = {} mod_type = nil lines.each do |line| _line = line.chomp # Skip (continued) comments. if _line =~ /^#/ || ( comment && _line[0..0] == ' ' ) comment = true next end # Skip blank lines. next if _line =~ /^$/ # Reset mod type if this entry has more than one mod to make. # A '-' continuation is only valid if we've already had a # 'changetype: modify' line. if _line =~ /^-$/ && change_type == LDAP_MOD_REPLACE next end # N.B. Attributes and values can be separated by one or two colons, # or one colon and a '<'. Either of these is then followed by zero # or one spaces. if md = _line.match( /^[^ ].*?((:[:<]?) ?)/ ) # If previous value was Base64-encoded and is not continued, # we need to decode it now. if sep == '::' if mod_type mods[mod_type][attr][-1] = base64_decode( mods[mod_type][attr][-1] ) bvalues << attr if unsafe_char?( mods[mod_type][attr][-1] ) else hash[attr][-1] = base64_decode( hash[attr][-1] ) bvalues << attr if unsafe_char?( hash[attr][-1] ) end end # Found a attr/value line. attr, val = _line.split( md[1], 2 ) attr.downcase! # Attribute must be ldap-oid / (ALPHA *(attr-type-chars)) if attr !~ /^(?:(?:\d+\.)*\d+|[[:alnum:]-]+)(?:;[[:alnum:]-]+)*$/ raise LDIFError, "Invalid attribute: #{attr}" end if attr == 'dn' header = false change_type = nil controls = [] end sep = md[2] val = read_file( val ) if sep == ':<' case attr when 'version' # Check the LDIF version. if header if val != '1' raise LDIFError, "Unsupported LDIF version: #{val}" else header = false next end end when 'changetype' change_type = case val when 'add' then LDAP_MOD_ADD when 'delete' then LDAP_MOD_DELETE when 'modify' then LDAP_MOD_REPLACE when /^modr?dn$/ then :MODRDN end raise LDIFError, "Invalid change type: #{attr}" unless change_type when 'add', 'delete', 'replace' unless change_type == LDAP_MOD_REPLACE raise LDIFError, "Cannot #{attr} here." end mod_type = case attr when 'add' then LDAP_MOD_ADD when 'delete' then LDAP_MOD_DELETE when 'replace' then LDAP_MOD_REPLACE end # In this case val is actually an attribute and should be lowercased. mods[mod_type] ||= {} mods[mod_type][val.downcase] ||= [] when 'control' oid, criticality = val.split( / /, 2 ) unless oid =~ /(?:\d+\.)*\d+/ raise LDIFError, "Bad control OID: #{oid}" end if criticality md = criticality.match( /(:[:<]?) ?/ ) ctl_sep = md[1] if md criticality, value = criticality.split( /:[:<]? ?/, 2 ) if criticality !~ /^(?:true|false)$/ raise LDIFError, "Bad control criticality: #{criticality}" end # Convert 'true' or 'false'. to_boolean would be nice. :-) criticality = eval( criticality ) end if value value = base64_decode( value ) if ctl_sep == '::' value = read_file( value ) if ctl_sep == ':<' value = Control.encode( value ) end controls << Control.new( oid, value, criticality ) else # Convert modrdn's deleteoldrdn from '1' to true, anything else # to false. Should probably raise an exception if not '0' or '1'. # if change_type == :MODRDN && attr == 'deleteoldrdn' val = val == '1' ? true : false end if change_type == LDAP_MOD_REPLACE mods[mod_type][attr] << val else hash[attr] ||= [] hash[attr] << val end comment = false # Make a note of this attribute if value is binary. bvalues << attr if unsafe_char?( val ) end else # Check last line's separator: if not a binary value, the # continuation line must be indented. If a comment makes it this # far, that's also an error. # if sep == ':' && _line[0..0] != ' ' || comment raise LDIFError, "Improperly continued line: #{_line}" end # OK; this is a valid continuation line. # Append line except for initial space. _line[0] = '' if _line[0..0] == ' ' if change_type == LDAP_MOD_REPLACE # Append to last value of current mod type. mods[mod_type][attr][-1] << _line else # Append to last value. hash[attr][-1] << _line end end end # If last value in LDIF entry was Base64-encoded, we need to decode # it now. if sep == '::' if mod_type mods[mod_type][attr][-1] = base64_decode( mods[mod_type][attr][-1] ) bvalues << attr if unsafe_char?( mods[mod_type][attr][-1] ) else hash[attr][-1] = base64_decode( hash[attr][-1] ) bvalues << attr if unsafe_char?( hash[attr][-1] ) end end # Remove and remember DN. dn = hash.delete( 'dn' )[0] # This doesn't really matter, but let's be anal about it, because it's # not an attribute and doesn't belong here. bvalues.delete( 'dn' ) # If there's no change type, it's just plain LDIF data, so we'll treat # it like an addition. change_type ||= LDAP_MOD_ADD case change_type when LDAP_MOD_ADD mods[LDAP_MOD_ADD] = [] hash.each do |attr_local, val| if bvalues.include?( attr_local ) ct = LDAP_MOD_ADD | LDAP_MOD_BVALUES else ct = LDAP_MOD_ADD end mods[LDAP_MOD_ADD] << LDAP.mod( ct, attr_local, val ) end when LDAP_MOD_DELETE # Nothing to do. when LDAP_MOD_REPLACE raise LDIFError, "mods should not be empty" if mods == {} new_mods = {} mods.each do |mod_type_local,attrs| attrs.each_key do |attr_local| if bvalues.include?( attr_local ) mt = mod_type_local | LDAP_MOD_BVALUES else mt = mod_type_local end new_mods[mt] ||= {} new_mods[mt][attr_local] = mods[mod_type_local][attr_local] end end mods = new_mods when :MODRDN # Nothing to do. end Record.new( dn, change_type, hash, mods, controls ) end |