Class: QuickBase::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/QuickBaseClient.rb

Overview

QuickBase Client: Ruby wrapper class for QuickBase HTTP API. The class’s method and member variable names correspond closely to the QuickBase HTTP API reference. This class was written using ruby 1.8.6. It is strongly recommended that you use ruby 1.9.2 or higher. Use REXML to process any QuickBase response XML not handled by this class. The main work of this class is done in initialize(), sendRequest(), and processResponse(). The API_ wrapper methods just set things up for sendRequest() and put values from the response into member variables.

Defined Under Namespace

Classes: FieldValuePairXML

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(username = nil, password = nil, appname = nil, useSSL = true, printRequestsAndResponses = false, stopOnError = false, showTrace = false, org = "www", apptoken = nil, debugHTTPConnection = false, domain = "quickbase", proxy_options = nil) ⇒ Client

Set printRequestsAndResponses to true to view the XML sent to QuickBase and return from QuickBase. This can be very useful during debugging.

Set stopOnError to true to discontinue sending requests to QuickBase after an error has occured with a request. Set showTrace to true to view the complete stack trace of your running program. This should only be necessary as a last resort when a low-level exception has occurred.

To create an instance of QuickBase::Client using a Hash of options, use QuickBase::Client.init(options) instead of QuickBase::Client.new()



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
# File 'lib/QuickBaseClient.rb', line 84

def initialize( username = nil, 
                   password = nil, 
                   appname = nil, 
                   useSSL = true, 
                   printRequestsAndResponses = false, 
                   stopOnError = false, 
                   showTrace = false, 
                   org = "www", 
                   apptoken = nil,
                   debugHTTPConnection = false,
                   domain = "quickbase",
                   proxy_options = nil
                   )
  begin
     @org = org ? org : "www"
     @domain = domain ? domain : "quickbase"
     @apptoken = apptoken
     @printRequestsAndResponses = printRequestsAndResponses
     @stopOnError = stopOnError
     @escapeBR = @ignoreCR = @ignoreLF = @ignoreTAB = true
     toggleTraceInfo( showTrace ) if showTrace
     setHTTPConnectionAndqbhost( useSSL, org, domain, proxy_options )         
     debugHTTPConnection() if debugHTTPConnection
     @standardRequestHeaders = { "Content-Type" => "application/xml" }
     if username and password
        authenticate( username, password )
        if appname and @errcode == "0"
           findDBByname( appname )
           if @dbid and @errcode == "0"
             getDBInfo( @dbid )
             getSchema( @dbid )
           end
        end
     end
  rescue Net::HTTPBadRequest => @lastError
  rescue Net::HTTPBadResponse => @lastError
  rescue Net::HTTPHeaderSyntaxError => @lastError
  rescue StandardError => @lastError
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(missing_method_name, *missing_method_args) ⇒ Object

Enables alternative syntax for processing data using id values or xml element names. E.g:

qbc.bcdcajmrh.qid_1.printChildElements(qbc.records)

  • prints the records returned by query 1 from table bcdcajmrh

puts qbc.bcdcajmrf.xml_desc

  • get the description from the bcdcajmrf application

puts qbc.dbid_8emtadvk.rid_24105.fid_6

  • print field 6 from record 24105 in table 8emtadvk



667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
# File 'lib/QuickBaseClient.rb', line 667

def method_missing(missing_method_name, *missing_method_args)
  method_s = missing_method_name.to_s
  if method_s.match(/dbid_.+/) 
    if QuickBase::Misc.isDbidString?(method_s.sub("dbid_",""))
       getSchema(method_s.sub("dbid_","")) 
    end
  elsif @dbid and method_s.match(/rid_[0-9]+/) 
    _setActiveRecord(method_s.sub("rid_",""))
    @fieldValue = @field_data_list
  elsif @dbid and method_s.match(/qid_[0-9]+/) 
    doQuery(@dbid,nil,method_s.sub("qid_",""))
  elsif @dbid and method_s.match(/fid_[0-9]+/) 
     if @field_data_list
       @fieldValue = getFieldDataValue(method_s.sub("fid_","")) 
    else
       lookupField(method_s.sub("fid_",""))
    end  
  elsif @dbid and method_s.match(/pageid_[0-9]+/) 
    _getDBPage(method_s.sub("pageid_",""))
  elsif @dbid and method_s.match(/userid_.+/)
    _getUserRole(method_s.sub("userid_",""))       
  elsif @dbid and @rid and @fid and method_s.match(/vid_[0-9]+/) 
     downLoadFile( @dbid, @rid, @fid, method_s.sub("vid_","") )
  elsif @dbid and method_s.match(/import_[0-9]+/)
    _runImport(method_s.sub("import_",""))
  elsif @qdbapi and method_s.match(/xml_.+/)
    if missing_method_args and missing_method_args.length > 0
       @fieldValue = @qdbapi.send(method_s.sub("xml_",""),missing_method_args)
    else
       @fieldValue = @qdbapi.send(method_s.sub("xml_",""))
    end
  elsif QuickBase::Misc.isDbidString?(method_s)
    getSchema(method_s) 
  else  
    raise "'#{method_s}' is not a valid method in the QuickBase::Client class."
  end
  return @fieldValue if @fieldValue.is_a?(REXML::Element) # chain XML lookups
  return @fieldValue if @fieldValue.is_a?(String) # assume we just want a field value 
  self # otherwise, allows chaining of all above
end

Instance Attribute Details

#accessObject (readonly)

Returns the value of attribute access.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def access
  @access
end

#accessidObject (readonly)

Returns the value of attribute accessid.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def accessid
  @accessid
end

#accountLimitObject (readonly)

Returns the value of attribute accountLimit.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def accountLimit
  @accountLimit
end

#accountUsageObject (readonly)

Returns the value of attribute accountUsage.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def accountUsage
  @accountUsage
end

#actionObject (readonly)

Returns the value of attribute action.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def action
  @action
end

#adminObject (readonly)

Returns the value of attribute admin.



38
39
40
# File 'lib/QuickBaseClient.rb', line 38

def admin
  @admin
end

#adminOnlyObject (readonly)

Returns the value of attribute adminOnly.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def adminOnly
  @adminOnly
end

#ancestorappidObject (readonly)

Returns the value of attribute ancestorappid.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def ancestorappid
  @ancestorappid
end

#appObject (readonly)

Returns the value of attribute app.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def app
  @app
end

#appdataObject (readonly)

Returns the value of attribute appdata.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def appdata
  @appdata
end

#appdbidObject (readonly)

Returns the value of attribute appdbid.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def appdbid
  @appdbid
end

#applicationLimitObject (readonly)

Returns the value of attribute applicationLimit.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def applicationLimit
  @applicationLimit
end

#applicationUsageObject (readonly)

Returns the value of attribute applicationUsage.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def applicationUsage
  @applicationUsage
end

#apptokenObject

Returns the value of attribute apptoken.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def apptoken
  @apptoken
end

#authenticationXMLObject (readonly)

Returns the value of attribute authenticationXML.



39
40
41
# File 'lib/QuickBaseClient.rb', line 39

def authenticationXML
  @authenticationXML
end

#cachedSchemasObject (readonly)

Returns the value of attribute cachedSchemas.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def cachedSchemas
  @cachedSchemas
end

#cacheSchemasObject

Returns the value of attribute cacheSchemas.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def cacheSchemas
  @cacheSchemas
end

#chdbidsObject (readonly)

Returns the value of attribute chdbids.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def chdbids
  @chdbids
end

#choiceObject (readonly)

Returns the value of attribute choice.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def choice
  @choice
end

#clistObject (readonly)

Returns the value of attribute clist.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def clist
  @clist
end

#copyfidObject (readonly)

Returns the value of attribute copyfid.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def copyfid
  @copyfid
end

#createObject (readonly)

Returns the value of attribute create.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def create
  @create
end

#createapptokenObject (readonly)

Returns the value of attribute createapptoken.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def createapptoken
  @createapptoken
end

#createdTimeObject (readonly)

Returns the value of attribute createdTime.



40
41
42
# File 'lib/QuickBaseClient.rb', line 40

def createdTime
  @createdTime
end

#databasesObject (readonly)

Returns the value of attribute databases.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def databases
  @databases
end

#dbdescObject (readonly)

Returns the value of attribute dbdesc.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def dbdesc
  @dbdesc
end

#dbidObject (readonly)

Returns the value of attribute dbid.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def dbid
  @dbid
end

#dbidForRequestURLObject (readonly)

Returns the value of attribute dbidForRequestURL.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def dbidForRequestURL
  @dbidForRequestURL
end

#dbnameObject (readonly)

Returns the value of attribute dbname.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def dbname
  @dbname
end

#deleteObject (readonly)

Returns the value of attribute delete.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def delete
  @delete
end

#destridObject (readonly)

Returns the value of attribute destrid.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def destrid
  @destrid
end

#dfidObject (readonly)

Returns the value of attribute dfid.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def dfid
  @dfid
end

#disprecObject (readonly)

Returns the value of attribute disprec.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def disprec
  @disprec
end

#domainObject (readonly)

Returns the value of attribute domain.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def domain
  @domain
end

#downLoadFileURLObject (readonly)

Returns the value of attribute downLoadFileURL.



41
42
43
# File 'lib/QuickBaseClient.rb', line 41

def downLoadFileURL
  @downLoadFileURL
end

#emailObject (readonly)

Returns the value of attribute email.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def email
  @email
end

#encoding=(value) ⇒ Object (writeonly)

Sets the attribute encoding

Parameters:

  • value

    the value to set the attribute encoding to.



67
68
69
# File 'lib/QuickBaseClient.rb', line 67

def encoding=(value)
  @encoding = value
end

#errcodeObject (readonly)

Returns the value of attribute errcode.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def errcode
  @errcode
end

#errdetailObject (readonly)

Returns the value of attribute errdetail.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def errdetail
  @errdetail
end

#errtextObject (readonly)

Returns the value of attribute errtext.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def errtext
  @errtext
end

#escapeBR=(value) ⇒ Object (writeonly)

Sets the attribute escapeBR

Parameters:

  • value

    the value to set the attribute escapeBR to.



66
67
68
# File 'lib/QuickBaseClient.rb', line 66

def escapeBR=(value)
  @escapeBR = value
end

#eventSubscribersObject (readonly)

Returns the value of attribute eventSubscribers.



63
64
65
# File 'lib/QuickBaseClient.rb', line 63

def eventSubscribers
  @eventSubscribers
end

#excludeparentsObject (readonly)

Returns the value of attribute excludeparents.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def excludeparents
  @excludeparents
end

#externalAuthObject (readonly)

Returns the value of attribute externalAuth.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def externalAuth
  @externalAuth
end

#fformObject (readonly)

Returns the value of attribute fform.



42
43
44
# File 'lib/QuickBaseClient.rb', line 42

def fform
  @fform
end

#fidObject (readonly)

Returns the value of attribute fid.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fid
  @fid
end

#fidsObject (readonly)

Returns the value of attribute fids.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fids
  @fids
end

#fieldObject (readonly)

Returns the value of attribute field.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def field
  @field
end

#field_dataObject (readonly)

Returns the value of attribute field_data.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def field_data
  @field_data
end

#field_data_listObject (readonly)

Returns the value of attribute field_data_list.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def field_data_list
  @field_data_list
end

#fieldsObject (readonly)

Returns the value of attribute fields.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fields
  @fields
end

#fieldTypeLabelMapObject (readonly)

Returns the value of attribute fieldTypeLabelMap.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fieldTypeLabelMap
  @fieldTypeLabelMap
end

#fieldValueObject (readonly)

Returns the value of attribute fieldValue.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fieldValue
  @fieldValue
end

#fileContentsObject (readonly)

Returns the value of attribute fileContents.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fileContents
  @fileContents
end

#fileUploadTokenObject (readonly)

Returns the value of attribute fileUploadToken.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fileUploadToken
  @fileUploadToken
end

#firstNameObject (readonly)

Returns the value of attribute firstName.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def firstName
  @firstName
end

#fmtObject (readonly)

Returns the value of attribute fmt.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fmt
  @fmt
end

#fnameObject (readonly)

Returns the value of attribute fname.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fname
  @fname
end

#fnamesObject (readonly)

Returns the value of attribute fnames.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fnames
  @fnames
end

#fvlistObject

Returns the value of attribute fvlist.



43
44
45
# File 'lib/QuickBaseClient.rb', line 43

def fvlist
  @fvlist
end

#groupidObject (readonly)

Returns the value of attribute groupid.



64
65
66
# File 'lib/QuickBaseClient.rb', line 64

def groupid
  @groupid
end

#hoursObject (readonly)

Returns the value of attribute hours.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def hours
  @hours
end

#HTMLObject (readonly)

Returns the value of attribute HTML.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def HTML
  @HTML
end

#httpConnectionObject

Returns the value of attribute httpConnection.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def httpConnection
  @httpConnection
end

#idObject (readonly)

Returns the value of attribute id.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def id
  @id
end

#ignoreCR=(value) ⇒ Object (writeonly)

Sets the attribute ignoreCR

Parameters:

  • value

    the value to set the attribute ignoreCR to.



66
67
68
# File 'lib/QuickBaseClient.rb', line 66

def ignoreCR=(value)
  @ignoreCR = value
end

#ignoreErrorObject (readonly)

Returns the value of attribute ignoreError.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def ignoreError
  @ignoreError
end

#ignoreLF=(value) ⇒ Object (writeonly)

Sets the attribute ignoreLF

Parameters:

  • value

    the value to set the attribute ignoreLF to.



66
67
68
# File 'lib/QuickBaseClient.rb', line 66

def ignoreLF=(value)
  @ignoreLF = value
end

#ignoreTAB=(value) ⇒ Object (writeonly)

Sets the attribute ignoreTAB

Parameters:

  • value

    the value to set the attribute ignoreTAB to.



66
67
68
# File 'lib/QuickBaseClient.rb', line 66

def ignoreTAB=(value)
  @ignoreTAB = value
end

#includeancestorsObject (readonly)

Returns the value of attribute includeancestors.



44
45
46
# File 'lib/QuickBaseClient.rb', line 44

def includeancestors
  @includeancestors
end

#jhtObject (readonly)

Returns the value of attribute jht.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def jht
  @jht
end

#jsaObject (readonly)

Returns the value of attribute jsa.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def jsa
  @jsa
end

#keepDataObject (readonly)

Returns the value of attribute keepData.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def keepData
  @keepData
end

#keyObject (readonly)

Returns the value of attribute key.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def key
  @key
end

#key_fidObject (readonly)

Returns the value of attribute key_fid.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def key_fid
  @key_fid
end

#labelObject (readonly)

Returns the value of attribute label.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def label
  @label
end

#lastAccessTimeObject (readonly)

Returns the value of attribute lastAccessTime.



45
46
47
# File 'lib/QuickBaseClient.rb', line 45

def lastAccessTime
  @lastAccessTime
end

#lastErrorObject (readonly)

Returns the value of attribute lastError.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def lastError
  @lastError
end

#lastModifiedTimeObject (readonly)

Returns the value of attribute lastModifiedTime.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def lastModifiedTime
  @lastModifiedTime
end

#lastNameObject (readonly)

Returns the value of attribute lastName.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def lastName
  @lastName
end

#lastPaymentDateObject (readonly)

Returns the value of attribute lastPaymentDate.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def lastPaymentDate
  @lastPaymentDate
end

#lastRecModTimeObject (readonly)

Returns the value of attribute lastRecModTime.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def lastRecModTime
  @lastRecModTime
end

#loggerObject (readonly)

Returns the value of attribute logger.



63
64
65
# File 'lib/QuickBaseClient.rb', line 63

def logger
  @logger
end

#loginObject (readonly)

Returns the value of attribute login.



46
47
48
# File 'lib/QuickBaseClient.rb', line 46

def 
  @login
end

#mgrIDObject (readonly)

Returns the value of attribute mgrID.



47
48
49
# File 'lib/QuickBaseClient.rb', line 47

def mgrID
  @mgrID
end

#mgrNameObject (readonly)

Returns the value of attribute mgrName.



47
48
49
# File 'lib/QuickBaseClient.rb', line 47

def mgrName
  @mgrName
end

#modeObject (readonly)

Returns the value of attribute mode.



47
48
49
# File 'lib/QuickBaseClient.rb', line 47

def mode
  @mode
end

#modifyObject (readonly)

Returns the value of attribute modify.



47
48
49
# File 'lib/QuickBaseClient.rb', line 47

def modify
  @modify
end

#nameObject (readonly)

Returns the value of attribute name.



47
48
49
# File 'lib/QuickBaseClient.rb', line 47

def name
  @name
end

#newappnameObject (readonly)

Returns the value of attribute newappname.



48
49
50
# File 'lib/QuickBaseClient.rb', line 48

def newappname
  @newappname
end

#newdbdescObject (readonly)

Returns the value of attribute newdbdesc.



48
49
50
# File 'lib/QuickBaseClient.rb', line 48

def newdbdesc
  @newdbdesc
end

#newdbidObject (readonly)

Returns the value of attribute newdbid.



48
49
50
# File 'lib/QuickBaseClient.rb', line 48

def newdbid
  @newdbid
end

#newdbnameObject (readonly)

Returns the value of attribute newdbname.



48
49
50
# File 'lib/QuickBaseClient.rb', line 48

def newdbname
  @newdbname
end

#newownerObject (readonly)

Returns the value of attribute newowner.



48
49
50
# File 'lib/QuickBaseClient.rb', line 48

def newowner
  @newowner
end

#num_fieldsObject (readonly)

Returns the value of attribute num_fields.



49
50
51
# File 'lib/QuickBaseClient.rb', line 49

def num_fields
  @num_fields
end

#num_recordsObject (readonly)

Returns the value of attribute num_records.



49
50
51
# File 'lib/QuickBaseClient.rb', line 49

def num_records
  @num_records
end

#num_records_deletedObject (readonly)

Returns the value of attribute num_records_deleted.



49
50
51
# File 'lib/QuickBaseClient.rb', line 49

def num_records_deleted
  @num_records_deleted
end

#num_recs_addedObject (readonly)

Returns the value of attribute num_recs_added.



49
50
51
# File 'lib/QuickBaseClient.rb', line 49

def num_recs_added
  @num_recs_added
end

#num_recs_inputObject (readonly)

Returns the value of attribute num_recs_input.



50
51
52
# File 'lib/QuickBaseClient.rb', line 50

def num_recs_input
  @num_recs_input
end

#num_recs_updatedObject (readonly)

Returns the value of attribute num_recs_updated.



50
51
52
# File 'lib/QuickBaseClient.rb', line 50

def num_recs_updated
  @num_recs_updated
end

#numaddedObject (readonly)

Returns the value of attribute numadded.



50
51
52
# File 'lib/QuickBaseClient.rb', line 50

def numadded
  @numadded
end

#numCreatedObject (readonly)

Returns the value of attribute numCreated.



50
51
52
# File 'lib/QuickBaseClient.rb', line 50

def numCreated
  @numCreated
end

#numMatchesObject (readonly)

Returns the value of attribute numMatches.



49
50
51
# File 'lib/QuickBaseClient.rb', line 49

def numMatches
  @numMatches
end

#numRecordsObject (readonly)

Returns the value of attribute numRecords.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def numRecords
  @numRecords
end

#numremovedObject (readonly)

Returns the value of attribute numremoved.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def numremoved
  @numremoved
end

#oldestancestorappidObject (readonly)

Returns the value of attribute oldestancestorappid.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def oldestancestorappid
  @oldestancestorappid
end

#optionsObject (readonly)

Returns the value of attribute options.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def options
  @options
end

#orgObject (readonly)

Returns the value of attribute org.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def org
  @org
end

#pageObject (readonly)

Returns the value of attribute page.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def page
  @page
end

#pagebodyObject (readonly)

Returns the value of attribute pagebody.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def pagebody
  @pagebody
end

#pageidObject (readonly)

Returns the value of attribute pageid.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def pageid
  @pageid
end

#pagenameObject (readonly)

Returns the value of attribute pagename.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def pagename
  @pagename
end

#pagesObject (readonly)

Returns the value of attribute pages.



51
52
53
# File 'lib/QuickBaseClient.rb', line 51

def pages
  @pages
end

#pagetypeObject (readonly)

Returns the value of attribute pagetype.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def pagetype
  @pagetype
end

#parentridObject (readonly)

Returns the value of attribute parentrid.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def parentrid
  @parentrid
end

#passwordObject (readonly)

Returns the value of attribute password.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def password
  @password
end

#permissionsObject (readonly)

Returns the value of attribute permissions.



52
53
54
# File 'lib/QuickBaseClient.rb', line 52

def permissions
  @permissions
end

#printRequestsAndResponsesObject

Returns the value of attribute printRequestsAndResponses.



53
54
55
# File 'lib/QuickBaseClient.rb', line 53

def printRequestsAndResponses
  @printRequestsAndResponses
end

#propertiesObject (readonly)

Returns the value of attribute properties.



53
54
55
# File 'lib/QuickBaseClient.rb', line 53

def properties
  @properties
end

#qarancestorappidObject (readonly)

Returns the value of attribute qarancestorappid.



53
54
55
# File 'lib/QuickBaseClient.rb', line 53

def qarancestorappid
  @qarancestorappid
end

#qbhostObject

Returns the value of attribute qbhost.



53
54
55
# File 'lib/QuickBaseClient.rb', line 53

def qbhost
  @qbhost
end

#qdbapiObject (readonly)

Returns the value of attribute qdbapi.



53
54
55
# File 'lib/QuickBaseClient.rb', line 53

def qdbapi
  @qdbapi
end

#qidObject (readonly)

Returns the value of attribute qid.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def qid
  @qid
end

#qnameObject (readonly)

Returns the value of attribute qname.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def qname
  @qname
end

#queriesObject (readonly)

Returns the value of attribute queries.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def queries
  @queries
end

#queryObject (readonly)

Returns the value of attribute query.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def query
  @query
end

#rdr=(value) ⇒ Object (writeonly)

Sets the attribute rdr

Parameters:

  • value

    the value to set the attribute rdr to.



67
68
69
# File 'lib/QuickBaseClient.rb', line 67

def rdr=(value)
  @rdr = value
end

#recordObject (readonly)

Returns the value of attribute record.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def record
  @record
end

#recordsObject (readonly)

Returns the value of attribute records.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def records
  @records
end

#records_csvObject (readonly)

Returns the value of attribute records_csv.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def records_csv
  @records_csv
end

#recurseObject (readonly)

Returns the value of attribute recurse.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def recurse
  @recurse
end

#relfidsObject (readonly)

Returns the value of attribute relfids.



54
55
56
# File 'lib/QuickBaseClient.rb', line 54

def relfids
  @relfids
end

#requestHeadersObject (readonly)

Returns the value of attribute requestHeaders.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestHeaders
  @requestHeaders
end

#requestNextAllowedTimeObject (readonly)

Returns the value of attribute requestNextAllowedTime.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestNextAllowedTime
  @requestNextAllowedTime
end

#requestSucceededObject (readonly)

Returns the value of attribute requestSucceeded.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestSucceeded
  @requestSucceeded
end

#requestTimeObject (readonly)

Returns the value of attribute requestTime.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestTime
  @requestTime
end

#requestURLObject (readonly)

Returns the value of attribute requestURL.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestURL
  @requestURL
end

#requestXMLObject (readonly)

Returns the value of attribute requestXML.



55
56
57
# File 'lib/QuickBaseClient.rb', line 55

def requestXML
  @requestXML
end

#responseElementObject (readonly)

Returns the value of attribute responseElement.



56
57
58
# File 'lib/QuickBaseClient.rb', line 56

def responseElement
  @responseElement
end

#responseElementsObject (readonly)

Returns the value of attribute responseElements.



56
57
58
# File 'lib/QuickBaseClient.rb', line 56

def responseElements
  @responseElements
end

#responseElementTextObject (readonly)

Returns the value of attribute responseElementText.



56
57
58
# File 'lib/QuickBaseClient.rb', line 56

def responseElementText
  @responseElementText
end

#responseXMLObject (readonly)

Returns the value of attribute responseXML.



56
57
58
# File 'lib/QuickBaseClient.rb', line 56

def responseXML
  @responseXML
end

#responseXMLdocObject (readonly)

Returns the value of attribute responseXMLdoc.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def responseXMLdoc
  @responseXMLdoc
end

#ridObject (readonly)

Returns the value of attribute rid.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def rid
  @rid
end

#ridsObject (readonly)

Returns the value of attribute rids.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def rids
  @rids
end

#roleObject (readonly)

Returns the value of attribute role.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def role
  @role
end

#roleidObject (readonly)

Returns the value of attribute roleid.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def roleid
  @roleid
end

#rolenameObject (readonly)

Returns the value of attribute rolename.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def rolename
  @rolename
end

#rolesObject (readonly)

Returns the value of attribute roles.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def roles
  @roles
end

#saveviewsObject (readonly)

Returns the value of attribute saveviews.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def saveviews
  @saveviews
end

#screenNameObject (readonly)

Returns the value of attribute screenName.



57
58
59
# File 'lib/QuickBaseClient.rb', line 57

def screenName
  @screenName
end

#serverDatabasesObject (readonly)

Returns the value of attribute serverDatabases.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverDatabases
  @serverDatabases
end

#serverGroupsObject (readonly)

Returns the value of attribute serverGroups.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverGroups
  @serverGroups
end

#serverStatusObject (readonly)

Returns the value of attribute serverStatus.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverStatus
  @serverStatus
end

#serverUpdaysObject (readonly)

Returns the value of attribute serverUpdays.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverUpdays
  @serverUpdays
end

#serverUptimeObject (readonly)

Returns the value of attribute serverUptime.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverUptime
  @serverUptime
end

#serverUsersObject (readonly)

Returns the value of attribute serverUsers.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverUsers
  @serverUsers
end

#serverVersionObject (readonly)

Returns the value of attribute serverVersion.



58
59
60
# File 'lib/QuickBaseClient.rb', line 58

def serverVersion
  @serverVersion
end

#showAppDataObject (readonly)

Returns the value of attribute showAppData.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def showAppData
  @showAppData
end

#skipfirstObject (readonly)

Returns the value of attribute skipfirst.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def skipfirst
  @skipfirst
end

#slistObject (readonly)

Returns the value of attribute slist.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def slist
  @slist
end

#sourceridObject (readonly)

Returns the value of attribute sourcerid.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def sourcerid
  @sourcerid
end

#standardRequestHeadersObject (readonly)

Returns the value of attribute standardRequestHeaders.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def standardRequestHeaders
  @standardRequestHeaders
end

#statusObject (readonly)

Returns the value of attribute status.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def status
  @status
end

#stopOnErrorObject

Returns the value of attribute stopOnError.



59
60
61
# File 'lib/QuickBaseClient.rb', line 59

def stopOnError
  @stopOnError
end

#tableObject (readonly)

Returns the value of attribute table.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def table
  @table
end

#tablesObject (readonly)

Returns the value of attribute tables.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def tables
  @tables
end

#ticketObject

Returns the value of attribute ticket.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def ticket
  @ticket
end

#typeObject (readonly)

Returns the value of attribute type.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def type
  @type
end

#udataObject

Returns the value of attribute udata.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def udata
  @udata
end

#unameObject (readonly)

Returns the value of attribute uname.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def uname
  @uname
end

#update_idObject (readonly)

Returns the value of attribute update_id.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def update_id
  @update_id
end

#userObject (readonly)

Returns the value of attribute user.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def user
  @user
end

#useridObject (readonly)

Returns the value of attribute userid.



60
61
62
# File 'lib/QuickBaseClient.rb', line 60

def userid
  @userid
end

#usernameObject (readonly)

Returns the value of attribute username.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def username
  @username
end

#usersObject (readonly)

Returns the value of attribute users.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def users
  @users
end

#validFieldPropertiesObject (readonly)

Returns the value of attribute validFieldProperties.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def validFieldProperties
  @validFieldProperties
end

#validFieldTypesObject (readonly)

Returns the value of attribute validFieldTypes.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def validFieldTypes
  @validFieldTypes
end

#valueObject (readonly)

Returns the value of attribute value.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def value
  @value
end

#variablesObject (readonly)

Returns the value of attribute variables.



61
62
63
# File 'lib/QuickBaseClient.rb', line 61

def variables
  @variables
end

#varnameObject (readonly)

Returns the value of attribute varname.



62
63
64
# File 'lib/QuickBaseClient.rb', line 62

def varname
  @varname
end

#versionObject (readonly)

Returns the value of attribute version.



62
63
64
# File 'lib/QuickBaseClient.rb', line 62

def version
  @version
end

#vidObject (readonly)

Returns the value of attribute vid.



62
63
64
# File 'lib/QuickBaseClient.rb', line 62

def vid
  @vid
end

#viewObject (readonly)

Returns the value of attribute view.



62
63
64
# File 'lib/QuickBaseClient.rb', line 62

def view
  @view
end

#withembeddedtablesObject (readonly)

Returns the value of attribute withembeddedtables.



62
63
64
# File 'lib/QuickBaseClient.rb', line 62

def withembeddedtables
  @withembeddedtables
end

#xsl=(value) ⇒ Object (writeonly)

Sets the attribute xsl

Parameters:

  • value

    the value to set the attribute xsl to.



67
68
69
# File 'lib/QuickBaseClient.rb', line 67

def xsl=(value)
  @xsl = value
end

Class Method Details

.init(options) ⇒ Object

Class method to create an instance of QuickBase::Client using a Hash of parameters. E.g. qbc = QuickBase::Client.init( { “stopOnError” => true, “printRequestsAndResponses” => true } )



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
# File 'lib/QuickBaseClient.rb', line 127

def Client.init( options )
  
  options ||= {}
  options["useSSL"] ||= true
  options["printRequestsAndResponses"] ||= false
  options["stopOnError"] ||= false
  options["showTrace"] ||= false
  options["org"]  ||= "www"
  options["debugHTTPConnection"] ||= false
  options["domain"] ||= "quickbase"
  options["proxy_options"] ||= nil
  
  instance = Client.new( options["username"], 
                                  options["password"], 
                                  options["appname"],
                                  options["useSSL"], 
                                  options["printRequestsAndResponses"],
                                  options["stopOnError"],
                                  options["showTrace"],
                                  options["org"],
                                  options["apptoken"],
                                  options["debugHTTPConnection"],
                                  options["domain"],
                                  options["proxy_options"])
end

.processDatabase(username, password, appname, chainAPIcalls = nil) ⇒ Object

  • creates a QuickBase::Client,

    • signs into QuickBase

    • connects to a specific application

    • runs code in the associated block

    • signs out of QuickBase

    e.g. QuickBase::Client.processDatabase( “user”, “password”, “my DB” ) { |qbClient,dbid| qbClient.getDBInfo( dbid ) }



3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
# File 'lib/QuickBaseClient.rb', line 3164

def Client.processDatabase( username, password, appname, chainAPIcalls = nil )
   if username and password and appname and block_given?
      begin
         qbClient = Client.new( username, password, appname )
         @chainAPIcalls = chainAPIcalls
         yield qbClient, qbClient.dbid
      rescue StandardError
      ensure
         qbClient.signOut
         @chainAPIcalls = nil
      end
   end
end

Instance Method Details

#_addField(label, type, mode = nil) ⇒ Object

API_AddField, using the active table id.



1674
# File 'lib/QuickBaseClient.rb', line 1674

def _addField( label, type, mode = nil ) addField( @dbid, label, type, mode )  end

#_addRecord(fvlist = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil) ⇒ Object

API_AddRecord, using the active table id.



1703
1704
1705
# File 'lib/QuickBaseClient.rb', line 1703

def _addRecord( fvlist = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil )
   addRecord( @dbid, fvlist, disprec, fform, ignoreError, update_id )
end

#_addReplaceDBPage(*args) ⇒ Object

API_AddReplaceDBPage, using the active table id.



1734
# File 'lib/QuickBaseClient.rb', line 1734

def _addReplaceDBPage( *args ) addReplaceDBPage( @dbid, args ) end

#_addUserToRole(userid, roleid) ⇒ Object

API_AddUserToRole, using the active table id.



1764
# File 'lib/QuickBaseClient.rb', line 1764

def _addUserToRole( userid, roleid ) addUserToRole( @dbid, userid, roleid ) end

#_changePermission(*args) ⇒ Object

API_ChangePermission (appears to be deprecated), using the active table id.



1909
# File 'lib/QuickBaseClient.rb', line 1909

def _changePermission( *args ) changePermission( @dbid, args ) end

#_changeRecordOwner(rid, newowner) ⇒ Object

API_ChangeRecordOwner



1927
# File 'lib/QuickBaseClient.rb', line 1927

def _changeRecordOwner( rid, newowner ) changeRecordOwner( @dbid, rid, newowner ) end

#_changeUserRole(userid, roleid, newroleid) ⇒ Object

API_ChangeUserRole, using the active table id.



1944
# File 'lib/QuickBaseClient.rb', line 1944

def _changeUserRole( userid, roleid, newroleid ) changeUserRole( @dbid, userid, roleid, newroleid )  end

#_childElementsAsStringObject



636
# File 'lib/QuickBaseClient.rb', line 636

def _childElementsAsString()  childElementsAsString( @qdbapi ) end

#_cloneDatabase(*args) ⇒ Object

API_CloneDatabase, using the active table id.



1969
# File 'lib/QuickBaseClient.rb', line 1969

def _cloneDatabase( *args ) cloneDatabase( @dbid, args ) end

#_copyMasterDetail(*args) ⇒ Object

API_CopyMasterDetail, using the active table id.



1994
# File 'lib/QuickBaseClient.rb', line 1994

def _copyMasterDetail( *args ) copyMasterDetail( @dbid, args ) end

#_deleteDatabaseObject

API_DeleteDatabase, using the active table id.



2044
# File 'lib/QuickBaseClient.rb', line 2044

def _deleteDatabase() deleteDatabase( @dbid ) end

#_deleteField(fid) ⇒ Object

API_DeleteField, using the active table id.



2058
# File 'lib/QuickBaseClient.rb', line 2058

def _deleteField( fid ) deleteField( @dbid, fid ) end

#_deleteFieldName(fieldName) ⇒ Object

Delete a field, using its name instead of its id. Uses the active table id.



2061
2062
2063
2064
2065
2066
2067
2068
2069
# File 'lib/QuickBaseClient.rb', line 2061

def _deleteFieldName( fieldName )
   if @dbid and @fields
      @fid = lookupFieldIDByName( fieldName )
      if @fid
         deleteField( @dbid, @fid )
      end
   end
   nil
end

#_deleteRecord(rid) ⇒ Object

API_DeleteRecord, using the active table id.



2083
# File 'lib/QuickBaseClient.rb', line 2083

def _deleteRecord( rid ) deleteRecord( @dbid, rid ) end

#_doQuery(*args) ⇒ Object

API_DoQuery, using the active table id.



2130
# File 'lib/QuickBaseClient.rb', line 2130

def _doQuery( *args  ) doQuery( @dbid, args ) end

#_doQueryCount(query) ⇒ Object

API_DoQueryCount, using the active table id.



2166
# File 'lib/QuickBaseClient.rb', line 2166

def _doQueryCount( query ) doQueryCount( @dbid, query ) end

#_doQueryHash(doQueryOptions) ⇒ Object

version of doQuery that takes a Hash of parameters



2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
# File 'lib/QuickBaseClient.rb', line 2136

def _doQueryHash( doQueryOptions )
  doQueryOptions ||= {}
  raise "options must be a Hash" unless doQueryOptions.is_a?(Hash)
  doQueryOptions["dbid"] ||= @dbid
  doQueryOptions["fmt"] ||= "structured"
  doQuery( doQueryOptions["dbid"], 
                doQueryOptions["query"],
                doQueryOptions["qid"], 
                doQueryOptions["qname"], 
                doQueryOptions["clist"], 
                doQueryOptions["slist"], 
                doQueryOptions["fmt"], 
                doQueryOptions["options"] )
end

#_doQueryName(queryName) ⇒ Object

Runs API_DoQuery using the name of a query. Uses the active table id .



2133
# File 'lib/QuickBaseClient.rb', line 2133

def _doQueryName( queryName ) doQuery( @dbid, nil, nil, queryName ) end

#_downLoadFile(rid, fid, vid = "0") ⇒ Object Also known as: _downloadFile

Download a file’s contents from a file attachment field in QuickBase. You must write the contents to disk before a local file exists. Uses the active table id.



2218
# File 'lib/QuickBaseClient.rb', line 2218

def _downLoadFile( rid, fid, vid = "0" ) downLoadFile( @dbid, rid, fid, vid ) end

#_editRecord(*args) ⇒ Object

API_EditRecord, using the active table id.



2266
# File 'lib/QuickBaseClient.rb', line 2266

def _editRecord( *args  ) editRecord( @dbid, args ) end

#_fieldAddChoices(fid, choice) ⇒ Object

API_FieldAddChoices, using the active table id.



2293
# File 'lib/QuickBaseClient.rb', line 2293

def _fieldAddChoices( fid, choice ) fieldAddChoices( @dbid, fid, choice ) end

#_fieldNameAddChoices(fieldName, choice) ⇒ Object

Runs API_FieldAddChoices using a field name instead ofa field id. Uses the active table id. Expects getSchema to have been run.



2297
2298
2299
2300
2301
2302
2303
# File 'lib/QuickBaseClient.rb', line 2297

def _fieldNameAddChoices( fieldName, choice )
   if fieldName and choice and @fields
      @fid = lookupFieldIDByName( fieldName )
      fieldAddChoices( @dbid, @fid, choice )
   end
   nil
end

#_fieldNameRemoveChoices(fieldName, choice) ⇒ Object

Runs API_FieldRemoveChoices using a field name instead of a field id. Uses the active table id.



2333
2334
2335
2336
2337
2338
2339
# File 'lib/QuickBaseClient.rb', line 2333

def _fieldNameRemoveChoices( fieldName, choice )
   if fieldName and choice and @fields
      @fid = lookupFieldIDByName( fieldName )
      fieldRemoveChoices( @dbid, @fid, choice )
   end
   nil
end

#_fieldRemoveChoices(fid, choice) ⇒ Object

API_FieldRemoveChoices, using the active table id.



2330
# File 'lib/QuickBaseClient.rb', line 2330

def _fieldRemoveChoices( fid, choice ) fieldRemoveChoices( @dbid, fid, choice ) end

#_genAddRecordForm(fvlist = nil) ⇒ Object

API_GenAddRecordForm, using the active table id.



2372
# File 'lib/QuickBaseClient.rb', line 2372

def _genAddRecordForm( fvlist = nil ) genAddRecordForm( @dbid, fvlist ) end

#_genResultsTable(*args) ⇒ Object

API_GenResultsTable, using the active table id.



2398
# File 'lib/QuickBaseClient.rb', line 2398

def _genResultsTable( *args ) genResultsTable( @dbid, args ) end

#_getAncestorInfoObject



2414
# File 'lib/QuickBaseClient.rb', line 2414

def _getAncestorInfo() getAncestorInfo(@dbid) end

#_getAppDTMInfoObject

API_GetAppDTMInfo, using the active table id.



2440
# File 'lib/QuickBaseClient.rb', line 2440

def _getAppDTMInfo() getAppDTMInfo( @dbid ) end

#_getBillingStatusObject

API_GetBillingStatus, using the active table id.



2456
# File 'lib/QuickBaseClient.rb', line 2456

def _getBillingStatus() getBillingStatus(@dbid) end

#_getDBInfoObject

API_GetDBInfo, using the active table id.



2479
# File 'lib/QuickBaseClient.rb', line 2479

def _getDBInfo() getDBInfo( @dbid ) end

#_getDBPage(pageid, pagename = nil) ⇒ Object

API_GetDBPage, using the active table id.



2504
# File 'lib/QuickBaseClient.rb', line 2504

def _getDBPage(  pageid, pagename = nil ) getDBPage( @dbid,  pageid, pagename ) end

#_getDBvar(varname) ⇒ Object

API_GetDBVar, using the active table id.



2521
# File 'lib/QuickBaseClient.rb', line 2521

def _getDBvar( varname ) getDBvar( @dbid, varname ) end

#_getEntitlementValuesObject

API_GetEntitlementValues, using the active table id.



2542
# File 'lib/QuickBaseClient.rb', line 2542

def _getEntitlementValues() getEntitlementValues( @dbid ) end

#_getFileAttachmentUsageObject

API_GetFileAttachmentUsage, using the active table id.



2560
# File 'lib/QuickBaseClient.rb', line 2560

def _getFileAttachmentUsage() getFileAttachmentUsage( @dbid ) end

#_getNumRecordsObject

API_GetNumRecords, using the active table id.



2574
# File 'lib/QuickBaseClient.rb', line 2574

def _getNumRecords() getNumRecords( @dbid ) end

#_getRecordAsHTML(rid, jht = nil, dfid = nil) ⇒ Object

API_GetRecordAsHTML, using the active table id.



2618
# File 'lib/QuickBaseClient.rb', line 2618

def _getRecordAsHTML( rid, jht = nil, dfid = nil ) getRecordAsHTML( @dbid, rid, jht, dfid ) end

#_getRecordInfo(rid = @rid) ⇒ Object

API_GetRecordInfo, using the active table id.



2644
# File 'lib/QuickBaseClient.rb', line 2644

def _getRecordInfo( rid = @rid ) getRecordInfo( @dbid, rid ) end

#_getRoleInfoObject

API_GetRoleInfo, using the active table id.



2670
# File 'lib/QuickBaseClient.rb', line 2670

def _getRoleInfo() getRoleInfo( @dbid ) end

#_getSchemaObject

API_GetSchema, using the active table id.



2704
# File 'lib/QuickBaseClient.rb', line 2704

def _getSchema() getSchema( @dbid ) end

#_getUserRole(userid, inclgrps = nil) ⇒ Object

API_GetUserRole, using the active table id.



2782
# File 'lib/QuickBaseClient.rb', line 2782

def _getUserRole( userid, inclgrps = nil ) getUserRole( @dbid, userid, inclgrps ) end

#_importFromCSV(*args) ⇒ Object

API_ImportFromCSV, using the active table id.



2838
# File 'lib/QuickBaseClient.rb', line 2838

def _importFromCSV( *args ) importFromCSV( @dbid, args ) end

#_importFromExcel(excelFilename, lastColumn = 'j', lastDataRow = 0, worksheetNumber = 1, fieldNameRow = 1, firstDataRow = 2, firstColumn = 'a') ⇒ Object

Import data directly from an Excel file into the active table.



4387
4388
4389
# File 'lib/QuickBaseClient.rb', line 4387

def _importFromExcel(excelFilename,lastColumn = 'j',lastDataRow = 0,worksheetNumber = 1,fieldNameRow = 1,firstDataRow = 2,firstColumn = 'a')
   importFromExcel( @dbid, excelFilename, lastColumn, lastDataRow, worksheetNumber, fieldNameRow, firstDataRow, firstColumn )
end

#_listDBPagesObject

API_ListDBPages, using the active table id.



2868
# File 'lib/QuickBaseClient.rb', line 2868

def _listDBPages() listDBPages(@dbid) end

#_printChildElementsObject



609
# File 'lib/QuickBaseClient.rb', line 609

def _printChildElements() printChildElements( @qdbapi ) end

#_provisionUser(roleid, email, fname, lname) ⇒ Object

API_ProvisionUser, using the active table id.



2888
# File 'lib/QuickBaseClient.rb', line 2888

def _provisionUser( roleid, email, fname, lname ) provisionUser( @dbid, roleid, email, fname, lname ) end

#_purgeRecords(query = nil, qid = nil, qname = nil) ⇒ Object

API_PurgeRecords, using the active table id.



2902
# File 'lib/QuickBaseClient.rb', line 2902

def _purgeRecords( query = nil, qid = nil, qname = nil ) purgeRecords( @dbid, query, qid, qname ) end

#_removeFileAttachment(rid, fileAttachmentFieldName) ⇒ Object

Remove the file from a File Attachment field in an existing record in the active table e.g. _removeFileAttachment( “6”, “Document” )



4640
4641
4642
# File 'lib/QuickBaseClient.rb', line 4640

def _removeFileAttachment( rid , fileAttachmentFieldName )
   updateFile( @dbid, rid, "delete", fileAttachmentFieldName )
end

#_removeUserFromRole(userid, roleid) ⇒ Object

API_RemoveUserFromRole, using the active table id.



2918
# File 'lib/QuickBaseClient.rb', line 2918

def _removeUserFromRole( userid, roleid ) removeUserFromRole( @dbid, userid, roleid ) end

#_renameApp(newappname) ⇒ Object

API_RenameApp, using the active table id.



2933
# File 'lib/QuickBaseClient.rb', line 2933

def _renameApp( newappname ) renameApp( @dbid, newappname ) end

#_runImport(id) ⇒ Object

API_RunImport, using the active table id.



2948
# File 'lib/QuickBaseClient.rb', line 2948

def _runImport( id ) runImport( @dbid, id ) end

#_sendInvitation(userid, usertext = "Welcome to my application!") ⇒ Object

API_SendInvitation, using the active table id.



2964
# File 'lib/QuickBaseClient.rb', line 2964

def _sendInvitation( userid, usertext = "Welcome to my application!" ) sendInvitation( @dbid, userid, usertext ) end

#_setActiveRecord(rid) ⇒ Object



3209
# File 'lib/QuickBaseClient.rb', line 3209

def _setActiveRecord( rid ) setActiveRecord( @dbid, rid ) end

#_setAppData(appdata) ⇒ Object

API_SetAppData, using the active table id.



2979
# File 'lib/QuickBaseClient.rb', line 2979

def _setAppData( appdata ) setAppData( @dbid, appdata ) end

#_setDBvar(varname, value) ⇒ Object

API_SetDBvar, using the active table id.



2995
# File 'lib/QuickBaseClient.rb', line 2995

def _setDBvar( varname, value ) setDBvar( @dbid, varname, value ) end

#_setFieldProperties(properties, fid) ⇒ Object

API_SetFieldProperties, using the active table id.



3024
# File 'lib/QuickBaseClient.rb', line 3024

def _setFieldProperties( properties, fid ) setFieldProperties( @dbid, properties, fid ) end

#_setKeyField(fid) ⇒ Object

API_SetKeyField, using the active table id.



3039
# File 'lib/QuickBaseClient.rb', line 3039

def _setKeyField(fid) setKeyField( @dbid, fid ) end

#_updateFile(filename, fileAttachmentFieldName) ⇒ Object

Update the file attachment in an existing record in the active record in the active table. e.g. _updateFile( “contacts.txt”, “Contacts File” )



4628
4629
4630
# File 'lib/QuickBaseClient.rb', line 4628

def _updateFile( filename, fileAttachmentFieldName )
   updateFile( @dbid, @rid, filename, fileAttachmentFieldName )
end

#_uploadFile(filename, fileAttachmentFieldName) ⇒ Object

Upload a file into a new record in the active table. e.g. uploadFile( “contacts.txt”, “Contacts File” )



4600
4601
4602
# File 'lib/QuickBaseClient.rb', line 4600

def _uploadFile( filename, fileAttachmentFieldName )
   uploadFile( @dbid, filename, fileAttachmentFieldName )
end

#_userRolesObject

API_UserRoles, using the active table id.



3080
# File 'lib/QuickBaseClient.rb', line 3080

def _userRoles() userRoles( @dbid ) end

#addField(dbid, label, type, mode = nil) ⇒ Object

API_AddField



1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
# File 'lib/QuickBaseClient.rb', line 1653

def addField( dbid, label, type, mode = nil )

   @dbid, @label, @type, @mode = dbid, label, type, mode

   if isValidFieldType?( type )
      xmlRequestData = toXML( :label, @label ) + toXML( :type, @type )
      xmlRequestData << toXML( :mode, mode ) if mode

      sendRequest( :addField, xmlRequestData )

      @fid = getResponseValue( :fid )
      @label = getResponseValue( :label )

      return self if @chainAPIcalls
      return @fid, @label
   else
      raise "addField: Invalid field type '#{type}'.  Valid types are " + @validFieldTypes.join( "," )
   end
end

#addFieldValuePair(name, fid, filename, value) ⇒ Object

Adds a field value to the list of fields to be set by the next addRecord() or editRecord() call to QuickBase.

  • name: label of the field value to be set.

  • fid: id of the field to be set.

  • filename: if the field is a file attachment field, the name of the file that should be displayed in QuickBase.

  • value: the value to set in this field. If the field is a file attachment field, the name of the file that should be uploaded into QuickBase.



1164
1165
1166
1167
1168
# File 'lib/QuickBaseClient.rb', line 1164

def addFieldValuePair( name, fid, filename, value )
   @fvlist ||= []
   @fvlist << FieldValuePairXML.new( self, name, fid, filename, value ).to_s
   @fvlist
end

#addOrEditRecord(dbid, fvlist, rid = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, key = nil) ⇒ Object

Use this if you aren’t sure whether a particular record already exists or not



3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
# File 'lib/QuickBaseClient.rb', line 3091

def addOrEditRecord( dbid, fvlist, rid = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, key = nil  )
  if rid or key
    record = editRecord( dbid, rid, fvlist, disprec, fform, ignoreError, update_id, key )
    if !@requestSucceeded
      addRecord( dbid, fvlist, disprec, fform, ignoreError, update_id )
    end
    record
  else    
    addRecord( dbid, fvlist, disprec, fform, ignoreError, update_id )
  end  
end

#addRecord(dbid, fvlist = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, msInUTC = nil) ⇒ Object

API_AddRecord



1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
# File 'lib/QuickBaseClient.rb', line 1677

def addRecord(  dbid, fvlist = nil, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, msInUTC =nil )

  @dbid, @fvlist, @disprec, @fform, @ignoreError, @update_id, @msInUTC = dbid, fvlist, disprec, fform, ignoreError, update_id, msInUTC
  setFieldValues( fvlist, false ) if fvlist.is_a?(Hash) 

  xmlRequestData = ""
  if @fvlist and @fvlist.length > 0
     @fvlist.each{ |fv| xmlRequestData << fv } #see addFieldValuePair, clearFieldValuePairList, @fvlist
  end
  xmlRequestData << toXML( :disprec, @disprec ) if @disprec
  xmlRequestData << toXML( :fform, @fform ) if @fform
  xmlRequestData << toXML( :ignoreError, "1" ) if @ignoreError
  xmlRequestData << toXML( :update_id, @update_id ) if @update_id
  xmlRequestData << toXML( :msInUTC, "1" ) if @msInUTC
  xmlRequestData = nil if xmlRequestData.length == 0

  sendRequest( :addRecord, xmlRequestData )

  @rid = getResponseValue( :rid )
  @update_id = getResponseValue( :update_id )

  return self if @chainAPIcalls
  return @rid, @update_id
end

#addReplaceDBPage(dbid, pageid, pagename, pagetype, pagebody, ignoreError = nil) ⇒ Object

API_AddReplaceDBPage



1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
# File 'lib/QuickBaseClient.rb', line 1708

def addReplaceDBPage( dbid, pageid, pagename, pagetype, pagebody, ignoreError = nil )

  @dbid, @pageid, @pagename, @pagetype, @pagebody, @ignoreError = dbid, pageid, pagename, pagetype, pagebody, ignoreError

  if pageid
     xmlRequestData = toXML( :pageid, @pageid )
  elsif pagename
     xmlRequestData = toXML( :pagename, @pagename )
  else
     raise "addReplaceDBPage: missing pageid or pagename"
  end

  xmlRequestData << toXML( :pagetype, @pagetype )
  xmlRequestData << toXML( :pagebody, encodeXML( @pagebody ) )
  xmlRequestData << toXML( :ignoreError, "1" ) if @ignoreError

  sendRequest( :addReplaceDBPage, xmlRequestData )

  @pageid = getResponseValue( :pageid )
  @pageid ||= getResponseValue( :pageID ) # temporary

  return self if @chainAPIcalls
  @pageid
end

#addUserToGroup(userid, groupid) ⇒ Object

API_AddUserToGroup



1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
# File 'lib/QuickBaseClient.rb', line 1738

def addUserToGroup( userid, groupid )
  @userid, @groupid = userid, groupid

  xmlRequestData = toXML( :userid, @userid )
  xmlRequestData << toXML( :groupid, @groupid )

  sendRequest( :addUserToGroup, xmlRequestData )

  return self if @chainAPIcalls
  @requestSucceeded
end

#addUserToRole(dbid, userid, roleid) ⇒ Object

API_AddUserToRole



1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
# File 'lib/QuickBaseClient.rb', line 1751

def addUserToRole( dbid, userid, roleid )
  @dbid, @userid, @roleid  = dbid, userid, roleid 

  xmlRequestData = toXML( :userid, @userid ) 
  xmlRequestData << toXML( :roleid, @roleid ) 
  
  sendRequest( :addUserToRole, xmlRequestData )
  
  return self if @chainAPIcalls
  @requestSucceeded
end

#alias_methodsObject

Add method aliases that follow the ruby method naming convention.

E.g. sendRequest will be aliased as send_request.



5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
# File 'lib/QuickBaseClient.rb', line 5014

def alias_methods
  aliased_methods = []
  public_methods.each{|old_method|
    if old_method.match(/[A-Z]+/)
       new_method = old_method.gsub(/[A-Z]+/){|uc| "_#{uc.downcase}"}
       aliased_methods << new_method
       instance_eval( "alias #{new_method} #{old_method}")
    end
  }
  aliased_methods
end

#applyDeviationToRecords(dbid, numericField, deviationField, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Query records, get the average of the values in a numeric field, calculate each record’s deviation from the average and put the deviation in a percent field each record.



4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
# File 'lib/QuickBaseClient.rb', line 4127

def applyDeviationToRecords( dbid, numericField, deviationField, 
                                             query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) 
   fieldNames = Array[numericField]
   avg = average( dbid, fieldNames, query, qid, qname, clist, slist, fmt, options )
   fieldNames << "3" # Record ID#
   iterateRecords( dbid, fieldNames, query, qid, qname, clist, slist, fmt, options ){|record|
      result = deviation( [avg[numericField],record[numericField]] )
      clearFieldValuePairList
      addFieldValuePair( deviationField, nil, nil, result.to_s )
      editRecord( dbid, record["3"], fvlist )
   }
end

#applyPercentToRecords(dbid, numericField, percentField, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Query records, sum the values in a numeric field, calculate each record’s percentage of the sum and put the percent in a percent field each record.



4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
# File 'lib/QuickBaseClient.rb', line 4112

def applyPercentToRecords( dbid, numericField, percentField, 
                                          query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) 
   fieldNames = Array[numericField]
   total = sum( dbid, fieldNames, query, qid, qname, clist, slist, fmt, options )
   fieldNames << "3" # Record ID#
   iterateRecords( dbid, fieldNames, query, qid, qname, clist, slist, fmt, options ){|record|
      result = percent( [total[numericField],record[numericField]] )
      clearFieldValuePairList
      addFieldValuePair( percentField, nil, nil, result.to_s )
      editRecord( dbid, record["3"], fvlist )
   }
end

#assertFederatedIdentity(dbid, serviceProviderID, targetURL) ⇒ Object

API_AssertFederatedIdentity (IPP only)



1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
# File 'lib/QuickBaseClient.rb', line 1767

def assertFederatedIdentity( dbid, serviceProviderID, targetURL )
  @dbid, @serviceProviderID, @targetURL = dbid, serviceProviderID, targetURL
  
   xmlRequestData = toXML( :serviceProviderID, @serviceProviderID ) 
   xmlRequestData << toXML( :targetURL, @targetURL ) 
   
   sendRequest( :assertFederatedIdentity, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#attachIDSRealm(dbid, realm) ⇒ Object

API_AttachIDSRealm (IPP only)



1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
# File 'lib/QuickBaseClient.rb', line 1780

def attachIDSRealm( dbid, realm )
  @dbid, @realm = dbid, realm 
  
   xmlRequestData = toXML( :realm, @realm ) 
   
   sendRequest( :attachIDSRealm, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#authenticate(username, password, hours = nil) ⇒ Object

API_Authenticate



1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
# File 'lib/QuickBaseClient.rb', line 1833

def authenticate( username, password, hours = nil )

   @username, @password, @hours = username, password, hours

   if username and password

      @ticket = nil
      if @hours
         xmlRequestData = toXML( :hours, @hours )
         sendRequest( :authenticate, xmlRequestData )
      else
         sendRequest( :authenticate )
      end
       
      @userid = getResponseValue( :userid )
      return self if @chainAPIcalls
      return @ticket, @userid

   elsif username or password
      raise "authenticate: missing username or password"
   elsif @ticket
      raise "authenticate: #{username} is already authenticated"
   end
end

#average(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Returns the average of the values for one or more fields in the records returned by a query. e.g. averagesHash = average(“dfdfafff”,[“Date Sent”,“Quantity”,“Part Name”])



4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
# File 'lib/QuickBaseClient.rb', line 4074

def average( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   count = {}
   fieldNames.each{|field| count[field]=0 }
   sum = {}
   iterateRecords(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options){|record|
      fieldNames.each{|field|
         value = record[field]
         if value
            baseFieldType = lookupBaseFieldTypeByName(field)
            case baseFieldType
               when "int32","int64","bool" 
                  value = record[field].to_i
               when "float"   
                  value = record[field].to_f
            end
            if sum[field].nil?
               sum[field] = value
            else
               sum[field] = sum[field] + value
            end
            count[field] += 1
         end
      }
   }
   average = {}
   hasValues = false
   fieldNames.each{|field| 
      if sum[field] and count[field] > 0
         average[field] = (sum[field]/count[field]) 
         hasValues = true
      end
   }
   average = nil if not hasValues
   average
end

#chainAPIcallsBlockObject

This method changes all the API_ wrapper methods to return ‘self’ instead of their normal return values. The change is in effect only within the associated block. This allows mutliple API_ calls to be ‘chained’ together without needing ‘qbClient’ in front of each call.

e.g. qbClient.chainAPIcallsBlock {

  qbClient
     .addField( @dbid, "a text field", "text" )
     .addField( @dbid, "a choice field", "text" )
     .fieldAddChoices( @dbid, @fid, %w{ one two three four five } )
}


3189
3190
3191
3192
3193
3194
3195
# File 'lib/QuickBaseClient.rb', line 3189

def chainAPIcallsBlock
   if block_given?
      @chainAPIcalls = true
      yield
   end
   @chainAPIcalls = nil
end

#changePermission(dbid, uname, view, modify, create, delete, saveviews, admin) ⇒ Object

API_ChangePermission (appears to be deprecated)



1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
# File 'lib/QuickBaseClient.rb', line 1859

def changePermission( dbid, uname, view, modify, create, delete, saveviews, admin )

  raise "changePermission: API_ChangePermission is no longer a valid QuickBase HTTP API request."

  @dbid, @uname, @view, @modify, @create, @delete, @saveviews, @admin = dbid, uname, view, modify, create, delete, saveviews, admin

  xmlRequestData = toXML( :dbid, @dbid )
  xmlRequestData << toXML( :uname, @uname )

  viewModifyPermissions = %w{ none any own group }

  if @view
     if viewModifyPermissions.include?( @view )
        xmlRequestData << toXML( :view, @view )
     else
        raise "changePermission: view must be one of " + viewModifyPermissions.join( "," )
     end
  end

  if @modify
     if viewModifyPermissions.include?( @modify )
        xmlRequestData << toXML( :modify, @modify )
     else
        raise "changePermission: modify must be one of " + viewModifyPermissions.join( "," )
     end
  end

  xmlRequestData << toXML( :create, @create ) if @create
  xmlRequestData << toXML( :delete, @delete ) if @delete
  xmlRequestData << toXML( :saveviews, @saveviews ) if @saveviews
  xmlRequestData << toXML( :admin, @admin ) if @admin

  sendRequest( :changePermission, xmlRequestData )

  # not sure the API reference is correct about these return values
  @username = getResponseValue( :username )
  @view = getResponseValue( :view )
  @modify =  getResponseValue( :modify )
  @create =  getResponseValue( :create )
  @delete = getResponseValue( :delete )
  @saveviews = getResponseValue( :saveviews )
  @admin = getResponseValue( :admin )

  @rolename = getResponseValue( :rolename )

  return self if @chainAPIcalls
  return @username, @view, @modify, @create, @delete, @saveviews, @admin, @rolename
end

#changeRecordOwner(dbid, rid, newowner) ⇒ Object

API_ChangeRecordOwner



1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
# File 'lib/QuickBaseClient.rb', line 1912

def changeRecordOwner( dbid, rid, newowner )

   @dbid, @rid, @newowner = dbid, rid, newowner

   xmlRequestData = toXML( :dbid, @dbid )
   xmlRequestData << toXML( :rid, @rid )
   xmlRequestData << toXML( :newowner, @newowner )

   sendRequest( :changeRecordOwner, xmlRequestData )

   return self if @chainAPIcalls
   @requestSucceeded
end

#changeRecords(fieldNameToSet, fieldValueToSet, fieldNameToTest, test, fieldValueToTest) ⇒ Object

Change a field’s value in multiple records. If the optional test field/operator/value are supplied, only records matching the test field will be modified, otherwise all records will be modified. e.g. changeRecords( “Status”, “special”, “Account Balance”, “>”, “100000.00” )



3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
# File 'lib/QuickBaseClient.rb', line 3242

def changeRecords( fieldNameToSet, fieldValueToSet, fieldNameToTest, test, fieldValueToTest )

   if @dbid and @fields and fieldNameToSet and fieldValueToSet and fieldNameToTest and test and fieldValueToTest

      numRecsChanged = 0
      numRecs = _getNumRecords

      if numRecs > "0"

         fieldType = "text"
         if fieldNameToTest
            fieldNameToTestID = lookupFieldIDByName( fieldNameToTest )
            field = lookupField( fieldNameToTestID ) if fieldNameToTestID
            fieldType = field.attributes[ "field_type" ] if field
         end

         fieldNameToSetID = lookupFieldIDByName( fieldNameToSet )

         if fieldNameToSetID
            clearFieldValuePairList
            addFieldValuePair( nil, fieldNameToSetID, nil, fieldValueToSet )
            (1..numRecs.to_i).each{ |rid|
               _getRecordInfo( rid.to_s )
               if @num_fields and @update_id and @field_data_list
                  if fieldNameToTestID and test and fieldValueToTest
                     field_data = lookupFieldData( fieldNameToTestID )
                     if field_data  and field_data.is_a?( REXML::Element )
                        valueElement = field_data.elements[ "value" ]
                        value = valueElement.text if valueElement.has_text?
                        value = formatFieldValue( value, fieldType )
                        match = eval( "\"#{value}\" #{test} \"#{fieldValueToTest}\"" ) if value
                        if match
                           editRecord( @dbid, rid.to_s, @fvlist )
                           if @rid
                              numRecsChanged += 1
                           end
                        end
                     end
                  else
                     editRecord( @dbid, rid.to_s, @fvlist )
                     if @rid
                        numRecsChanged += 1
                     end
                  end
               end
            }
         end
      end
   end
   numRecsChanged
end

#changeUserRole(dbid, userid, roleid, newroleid) ⇒ Object

API_ChangeUserRole.



1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
# File 'lib/QuickBaseClient.rb', line 1930

def changeUserRole( dbid, userid, roleid, newroleid )
  @dbid, @userid, @roleid, @newroleid = dbid, userid, roleid, newroleid
  
  xmlRequestData = toXML( :userid, @userid )
  xmlRequestData << toXML( :roleid, @roleid )
  xmlRequestData << toXML( :newroleid, @newroleid )
  
  sendRequest( :changeUserRole, xmlRequestData )

  return self if @chainAPIcalls
  @requestSucceeded
end

#childElementsAsString(element, indent = 0) ⇒ Object

Recursive method to generate a simplified (yaml-like) tree of the XML returned by QuickBase.

Translates field IDs into field names.



613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
# File 'lib/QuickBaseClient.rb', line 613

def childElementsAsString( element, indent = 0 )
   ret = ""
   indentation = ""
   indent.times{ indentation << " " } if indent > 0
   if element and element.is_a?( REXML::Element ) and element.has_elements?
      attributes = getAttributeString( element )
      name = lookupFieldName( element )
      ret << "#{indentation}#{name} #{attributes}:\r\n"
      element.each { |element|
         if element.is_a?( REXML::Element ) and element.has_elements?
            ret << childElementsAsString( element, (indent+1) )
         elsif element.is_a?( REXML::Element ) and element.has_text?
            attributes = getAttributeString( element )
            name = lookupFieldName( element )
            text = formatFieldValue( element.text, lookupFieldType( element ) )
            ret << " #{indentation}#{name} #{attributes} = #{text}\r\n"
         end
      }
   elsif element and element.is_a?( Array )
      element.each{ |e| ret << childElementsAsString( e ) }
   end
   ret
end

#clearFieldValuePairListObject

Empty the list of field values used for the next addRecord() or editRecord() call to QuickBase.



1187
1188
1189
# File 'lib/QuickBaseClient.rb', line 1187

def clearFieldValuePairList
   @fvlist = nil
end

#clientMethodsObject

Return an array of all the public methods of this class. Used by CommandLineClient to verify commands entered by the user.



199
200
201
# File 'lib/QuickBaseClient.rb', line 199

def clientMethods
   Client.public_instance_methods( false )
end

#cloneDatabase(dbid, newdbname, newdbdesc, keepData, asTemplate = nil, usersAndRoles = nil) ⇒ Object

API_CloneDatabase



1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
# File 'lib/QuickBaseClient.rb', line 1947

def cloneDatabase( dbid, newdbname, newdbdesc, keepData, asTemplate = nil, usersAndRoles = nil )

  @dbid, @newdbname, @newdbdesc, @keepData, @asTemplate, @usersAndRoles = dbid, newdbname, newdbdesc, keepData, asTemplate, usersAndRoles
  
  @keepData = "1" if @keepData.to_s == "true" 
  @keepData = "0" if @keepData != "1"

  xmlRequestData = toXML( :newdbname, @newdbname )
  xmlRequestData << toXML( :newdbdesc, @newdbdesc )
  xmlRequestData << toXML( :keepData, @keepData )
  xmlRequestData << toXML( :asTemplate, @asTemplate ) if @asTemplate
  xmlRequestData << toXML( :usersAndRoles, @usersAndRoles ) if @usersAndRoles

  sendRequest( :cloneDatabase, xmlRequestData )

  @newdbid = getResponseValue( :newdbid )

  return self if @chainAPIcalls
  @newdbid
end

#copyMasterDetail(dbid, destrid, sourcerid, copyfid = nil, recurse = nil, relfids = nil) ⇒ Object

API_CopyMasterDetail



1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
# File 'lib/QuickBaseClient.rb', line 1972

def copyMasterDetail( dbid, destrid, sourcerid, copyfid = nil, recurse = nil, relfids = nil )
   
   raise "copyfid must be specified when destrid is 0." if destrid == "0" and copyfid.nil?
   
   @dbid, @destrid, @sourcerid, @copyfid, @recurse, @relfids = dbid, destrid, sourcerid, copyfid, recurse, relfids
 
   xmlRequestData = toXML( :destrid, @destrid)
   xmlRequestData << toXML( :sourcerid, @sourcerid )
   xmlRequestData << toXML( :copyfid, @copyfid ) if @copyfid
   xmlRequestData << toXML( :recurse, @recurse ) if @recurse
   xmlRequestData << toXML( :relfids, @relfids ) if @relfids

   sendRequest( :copyMasterDetail, xmlRequestData )

   @parentrid = getResponseValue( :parentrid )
   @numCreated = getResponseValue( :numCreated )

   return self if @chainAPIcalls
   return @parentrid, @numCreated
end

#copyRecord(rid, numCopies = 1, dbid = @dbid) ⇒ Object

Make one or more copies of a record.



4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
# File 'lib/QuickBaseClient.rb', line 4284

def copyRecord(  rid, numCopies = 1, dbid = @dbid )
   clearFieldValuePairList
   getRecordInfo( dbid, rid ) { |field|
      if field and field.elements[ "value" ] and field.elements[ "value" ].has_text?
         if field.elements[ "fid" ].text.to_i > 5 #skip built-in fields
            addFieldValuePair( field.elements[ "name" ].text, nil, nil, field.elements[ "value" ].text )
         end
      end
   }
   newRecordIDs = []
   if @fvlist and @fvlist.length > 0
      numCopies.times {
        addRecord( dbid, @fvlist )
        newRecordIDs << @rid if @rid and @update_id
      }
   end
   if block_given?
      newRecordIDs.each{ |newRecordID| yield newRecordID }
   else
      newRecordIDs
   end
end

#count(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Returns the number non-null values for one or more fields in the records returned by a query. e.g. countsHash = count(“dfdfafff”,[“Date Sent”,“Quantity”,“Part Name”])



4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
# File 'lib/QuickBaseClient.rb', line 4027

def count( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   count = {}
   fieldNames.each{|field| count[field]=0 }
   hasValues = false
   iterateRecords(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options){|record|
      fieldNames.each{|field|
         if record[field] and record[field].length > 0
            count[field] += 1
            hasValues = true
         end
      }
   }
   count = nil if not hasValues
   count
end

#createDatabase(dbname, dbdesc, createapptoken = "1") ⇒ Object

API_CreateDatabase



1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
# File 'lib/QuickBaseClient.rb', line 1997

def createDatabase( dbname, dbdesc, createapptoken = "1" )

   @dbname, @dbdesc, @createapptoken = dbname, dbdesc, createapptoken

   xmlRequestData = toXML( :dbname, @dbname )
   xmlRequestData << toXML( :dbdesc, @dbdesc )
   xmlRequestData << toXML( :createapptoken, @createapptoken )

   sendRequest( :createDatabase, xmlRequestData )

   @dbid = getResponseValue( :dbid )
   @appdbid = getResponseValue( :appdbid )
   @apptoken = getResponseValue( :apptoken )

   return self if @chainAPIcalls
   return @dbid, @appdbid
end

#createTable(tname, pnoun, application_dbid = @dbid) ⇒ Object

API_CreateTable



2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
# File 'lib/QuickBaseClient.rb', line 2016

def createTable( tname, pnoun, application_dbid = @dbid )
   @tname, @pnoun, @dbid = tname, pnoun, application_dbid

   xmlRequestData = toXML( :tname, @tname )
   xmlRequestData << toXML( :pnoun, @pnoun )
   sendRequest( :createTable, xmlRequestData )

   @newdbid  = getResponseValue( :newdbid ) 
   @newdbid  ||= getResponseValue( :newDBID ) #temporary
   @dbid = @newdbid 

   return self if @chainAPIcalls
   @newdbid 
end

#dateToMS(dateString) ⇒ Object

Returns the milliseconds representation of a date specified in mm-dd-yyyy format.



1489
1490
1491
1492
1493
1494
1495
1496
# File 'lib/QuickBaseClient.rb', line 1489

def dateToMS( dateString )
   milliseconds = 0
   if dateString and dateString.match( /[0-9][0-9]\-[0-9][0-9]\-[0-9][0-9][0-9][0-9]/)
      d = Date.new( dateString[7,4], dateString[4,2], dateString[0,2] )
      milliseconds = d.jd
   end
   milliseconds
end

#debugHTTPConnectionObject

Causes useful information to be printed to the screen for every HTTP request.



178
179
180
# File 'lib/QuickBaseClient.rb', line 178

def debugHTTPConnection()
   @httpConnection.set_debug_output $stdout if @httpConnection and USING_HTTPCLIENT == false
end

#decodeXML(text) ⇒ Object

Modify the given XML field value for use as a string.



1536
1537
1538
1539
1540
# File 'lib/QuickBaseClient.rb', line 1536

def decodeXML( text )
   encodingStrings( true ) { |key,value| text.gsub!( value, key ) if text }
   text.gsub!( /&#([0-9]{2,3});/ ) { |c| $1.chr } if text
   text
end

#deleteAppZip(dbid) ⇒ Object

API_DeleteAppZip



1804
1805
1806
1807
1808
1809
# File 'lib/QuickBaseClient.rb', line 1804

def deleteAppZip( dbid )
  @dbid = dbid
  sendRequest( :deleteAppZip )
  return self if @chainAPIcalls
  @responseCode
end

#deleteDatabase(dbid) ⇒ Object

API_DeleteDatabase



2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
# File 'lib/QuickBaseClient.rb', line 2032

def deleteDatabase( dbid )
   @dbid = dbid

   sendRequest( :deleteDatabase )

   @dbid = @rid = nil

   return self if @chainAPIcalls
   @requestSucceeded
end

#deleteDuplicateRecords(fnames, fids = nil, options = nil, dbid = @dbid) ⇒ Object

Finds records with the same values in a specified list of fields and deletes all but the first or last duplicate record. The field list may be a list of field IDs or a list of field names. The ‘options’ parameter can be used to keep the oldest record instead of the newest record, and to control whether to ignore the case of field values when deciding which records are duplicates. Returns the number of records deleted.



4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
# File 'lib/QuickBaseClient.rb', line 4264

def deleteDuplicateRecords(  fnames, fids = nil, options = nil, dbid = @dbid )
   num_deleted = 0
   if options and not options.is_a?( Hash )
      raise "deleteDuplicateRecords: 'options' parameter must be a Hash"
   else
      options = {}
      options[ "keeplastrecord" ] = true
      options[ "ignoreCase" ] = true
   end
   findDuplicateRecordIDs( fnames, fids, dbid, options[ "ignoreCase" ] ) { |dupeValues, recordIDs|
      if options[ "keeplastrecord" ]
        recordIDs[0..(recordIDs.length-2)].each{ |rid| num_deleted += 1 if deleteRecord( dbid, rid ) }
      elsif  options[ "keepfirstrecord" ]
        recordIDs[1..(recordIDs.length-1)].each{ |rid| num_deleted += 1 if deleteRecord( dbid, rid ) }
      end
   }
   num_deleted
end

#deleteField(dbid, fid) ⇒ Object

API_DeleteField



2047
2048
2049
2050
2051
2052
2053
2054
2055
# File 'lib/QuickBaseClient.rb', line 2047

def deleteField( dbid, fid )
  @dbid, @fid = dbid, fid

  xmlRequestData = toXML( :fid, @fid )
  sendRequest( :deleteField, xmlRequestData )

  return self if @chainAPIcalls
  @requestSucceeded
end

#deleteRecord(dbid, rid) ⇒ Object

API_DeleteRecord



2072
2073
2074
2075
2076
2077
2078
2079
2080
# File 'lib/QuickBaseClient.rb', line 2072

def deleteRecord( dbid, rid )
  @dbid, @rid = dbid, rid

  xmlRequestData = toXML( :rid, @rid )
  sendRequest( :deleteRecord, xmlRequestData )

  return self if @chainAPIcalls
  @requestSucceeded
end

#deleteRecords(fieldNameToTest = nil, test = nil, fieldValueToTest = nil) ⇒ Object

Delete all records in the active table that match the field/operator/value. e.g. deleteRecords( “Status”, “==”, “inactive” ). To delete ALL records, call deleteRecords() with no parameters. This is the same as calling _purgeRecords.



3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
# File 'lib/QuickBaseClient.rb', line 3298

def deleteRecords( fieldNameToTest = nil, test = nil, fieldValueToTest = nil)
   numRecsDeleted = 0
   if @dbid and @fields and fieldNameToTest and test and fieldValueToTest

      numRecs = _getNumRecords

      if numRecs > "0"

         fieldNameToTestID = lookupFieldIDByName( fieldNameToTest )
         fieldToTest = lookupField( fieldNameToTestID ) if fieldNameToTestID
         fieldType = fieldToTest.attributes[ "field_type" ] if fieldToTest

         if fieldNameToTestID
            (1..numRecs.to_i).each{ |rid|
               _getRecordInfo( rid.to_s )
               if @num_fields and @update_id and @field_data_list
                  field_data = lookupFieldData( fieldNameToTestID )
                  if field_data and field_data.is_a?( REXML::Element )
                     valueElement = field_data.elements[ "value" ]
                     value = valueElement.text if valueElement.has_text?
                     value = formatFieldValue( value, fieldType )
                     match = eval( "\"#{value}\" #{test} \"#{fieldValueToTest}\"" ) if value
                     if match
                        if _deleteRecord( rid.to_s )
                           numRecsDeleted += 1
                        end
                     end
                  end
               end
            }
         end
      end
   elsif @dbid
      numRecsDeleted = _purgeRecords
   end
   numRecsDeleted
end

#detachIDSRealm(dbid, realm) ⇒ Object

API_DetachIDSRealm (IPP only)



1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
# File 'lib/QuickBaseClient.rb', line 1792

def detachIDSRealm( dbid, realm )
  @dbid, @realm = dbid, realm 
  
   xmlRequestData = toXML( :realm, @realm ) 
   
   sendRequest( :detachIDSRealm, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#deviation(inputValues) ⇒ Object

Given an array of two numbers, return the difference between the numbers as a positive number.



4152
4153
4154
4155
4156
4157
4158
# File 'lib/QuickBaseClient.rb', line 4152

def deviation( inputValues )
   raise "'inputValues' must not be nil" if inputValues.nil?
   raise "'inputValues' must be an Array" if not inputValues.is_a?(Array)
   raise "'inputValues' must have at least two elements" if inputValues.length < 2
   value = inputValues[0].to_f - inputValues[1].to_f
   value.abs
end

#doQuery(dbid, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

API_DoQuery



2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
# File 'lib/QuickBaseClient.rb', line 2086

def doQuery( dbid, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil  )

   @dbid, @clist, @slist, @fmt, @options = dbid, clist, slist, fmt, options
   
   @clist ||= getColumnListForQuery(qid, qname)
   @slist ||= getSortListForQuery(qid, qname)
   
   xmlRequestData = getQueryRequestXML( query, qid, qname )
   xmlRequestData << toXML( :clist, @clist ) if @clist
   xmlRequestData << toXML( :slist, @slist ) if @slist
   xmlRequestData << toXML( :fmt, @fmt ) if @fmt
   xmlRequestData << toXML( :options, @options ) if @options

   sendRequest( :doQuery, xmlRequestData )

   if @fmt and @fmt == "structured"
      @records = getResponseElement( "table/records" )
      @fields = getResponseElement( "table/fields" )
      @chdbids = getResponseElement( "table/chdbids" )
      @queries = getResponseElement( "table/queries" )
      @variables = getResponseElement( "table/variables" )
   else
      @records = getResponseElements( "qdbapi/record" )
      @fields = getResponseElements( "qdbapi/field" )
      @chdbids = getResponseElements( "qdbapi/chdbid" )
      @queries = getResponseElements( "qdbapi/query" )
      @variables = getResponseElements( "qdbapi/variable" )
   end

   return self if @chainAPIcalls

   if block_given?
      if @records 
         @records.each { |element|  yield element }
      else
          yield nil
      end  
   else
      @records
   end

end

#doQueryCount(dbid, query) ⇒ Object

API_DoQueryCount



2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
# File 'lib/QuickBaseClient.rb', line 2152

def doQueryCount( dbid, query )
   @dbid, @query = dbid, query
   
   xmlRequestData = toXML( :query, @query )
   
   sendRequest( :doQueryCount, xmlRequestData )

   @numMatches = getResponseValue( :numMatches )

   return self if @chainAPIcalls
  @numMatches
end

#doSQLInsert(sqlString) ⇒ Object

Translate a simple SQL INSERT statement to a QuickBase addRecord call.

Note: This method is here primarily for Rails integration. Note: This assumes, like SQL, that your column (i.e. field) names do not contain spaces.



4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
# File 'lib/QuickBaseClient.rb', line 4905

def doSQLInsert(sqlString)

   sql = sqlString.dup
   dbname = ""
   state = nil
   fieldName = ""
   fieldValue = ""
   fieldNames = []
   fieldValues = []
   index = 0
   
   clearFieldValuePairList
   
   sql.gsub!("("," ")
   sql.gsub!(")"," ")

   sql.split(' ').each{ |token|
      case token
         when "INSERT", "INTO" 
            state = "getTable"
            next
         when "VALUES" 
            state = "getFieldValue"
            next
      end
      if state == "getTable"
         dbname = token.strip
         state =   "getFieldName"
      elsif state  == "getFieldName" 
         fieldName = token.dup
         fieldName.gsub!("],","")
         fieldName.gsub!('[','')
         fieldName.gsub!(']','')
         fieldName.gsub!(',','')
         fieldNames << fieldName
      elsif state  == "getFieldValue" 
         test = token.dup
         if test[-1,1] == "'" or test[-2,2] == "',"
            fieldValue << token.dup
            if fieldValue[-2,2] == "',"
               fieldValue.gsub!("',",'')
            end
            fieldValue.gsub!('\'','')
            if fieldValue.length > 0 and fieldNames[index] 
               addFieldValuePair(fieldNames[index],nil,nil,fieldValue)
               fieldName = ""
               fieldValue = ""
            end
            index += 1
         elsif token == ","
            addFieldValuePair(fieldNames[index],nil,nil,"")
            fieldName = ""
            fieldValue = ""
            index += 1
         else
            fieldValue << "#{token.dup} "
         end
      end
   }
   
   if dbname and @dbid.nil?
      dbid = findDBByname( dbname )
   else
      dbid = lookupChdbid( dbname )
   end
   dbid ||= @dbid

   recordid = nil
   if dbid
      recordid,updateid = addRecord(dbid,@fvlist)
   end   
   recordid
   
end

#doSQLQuery(sqlString, returnOptions = nil) ⇒ Object

Translate a simple SQL SELECT statement to a QuickBase query and run it.

If any supplied field names are numeric, they will be treated as QuickBase field IDs if
they aren't valid field names.
  • e.g. doSQLQuery( “SELECT FirstName,Salary FROM Contacts WHERE LastName = ”Doe“ ORDER BY FirstName )

  • e.g. doSQLQuery( “SELECT * FROM Books WHERE Author = ”Freud“ )

Note: This method is here primarily for Rails integration. Note: This assumes, like SQL, that your column (i.e. field) names do not contain spaces.



4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
# File 'lib/QuickBaseClient.rb', line 4654

def doSQLQuery( sqlString, returnOptions = nil )

   ret = nil
   sql = sqlString.dup
   dbid = nil
   clist = nil
   slist = nil
   state = nil
   dbname = ""
   columns = []
   sortFields = []
   limit = nil
   offset = nil
   options = nil
   getRecordCount = false

   queryFields = []
   query = "{'["
   queryState = "getFieldName"
   queryField = ""
   
   sql.split(' ').each{ |token|
      case token
         when "SELECT" then state = "getColumns";next
         when "count(*)" then state = "getCount";next
         when "FROM" then state = "getTable";next
         when "WHERE" then state = "getFilter" ;next
         when "ORDER" then state = "getBy";next
         when "BY" then state = "getSort";next
         when "LIMIT" then state = "getLimit";next
         when "OFFSET" then state = "getOffset";next
      end
      if state == "getColumns"
         if token.index( "," )
            token.split(",").each{ |column| columns << column if column.length > 0 }
         else
            columns << "#{token} "
         end
      elsif state == "getCount"
         getRecordCount = true
      elsif state == "getTable"
         dbname = token.strip
      elsif state == "getFilter"
         if token == "AND"
            query.strip!
            query << "'}AND{'["
            queryState = "getFieldName"
         elsif token == "OR"
            query.strip!
            query << "'}OR{'["
            queryState = "getFieldName"
         elsif token == "="
            query << "]'.TV.'"
            queryState = "getFieldValue"
            queryFields << queryField
            queryField  = ""
         elsif token == "<>" or token == "!="
            query << "]'.XTV.'"
            queryState = "getFieldValue"
            queryFields << queryField
            queryField  = ""
         elsif queryState == "getFieldValue"
            fieldValue = token.dup
            if fieldValue[-2,2] == "')"
               fieldValue[-1,1] = ""
            end
            if fieldValue[-1] == "'"
               fieldValue.gsub!("'","")
               query << "#{fieldValue}"
            else   
               fieldValue.gsub!("'","")
               query << "#{fieldValue} "
            end
         elsif queryState == "getFieldName"
            fieldName = token.gsub("(","").gsub(")","").gsub( "#{dbname}.","")
            query << "#{fieldName}"
            queryField << "#{fieldName} "
         end
      elsif state == "getSort"
         if token.contains( "," )
            token.split(",").each{ |sortField| sortFields << sortField if sortField.length > 0 }
         else
            sortFields << "#{token} "
         end
      elsif state == "getLimit"
         limit = token.dup
         if options.nil?
            options = "num-#{limit}" 
         else
            options << ".num-#{limit}"
         end
      elsif state == "getOffset"   
         offset = token.dup
         if options.nil?
            options = "skp-#{offset}" 
         else
            options << ".skp-#{offset}"
         end
      end
   }
   
   if dbname and @dbid.nil?
      dbid = findDBByname( dbname )
   else
      dbid = lookupChdbid( dbname )
   end
   dbid ||= @dbid

   if dbid
      getDBInfo( dbid )
      getSchema( dbid )
      if columns.length > 0
         if columns[0] == "* "
            columns = getFieldNames( dbid )
         end
         columnNames = []
         columns.each{ |column|
            column.strip!
            fid = lookupFieldIDByName( column )
            if fid.nil? and column.match(/[0-9]+/)
               fid = column
               columnNames << lookupFieldNameFromID(fid)
            else   
               columnNames << column
            end
            if fid
               if clist
                  clist << ".#{fid}"
               else
                  clist = fid
               end
            end
         }
      end
      if sortFields.length > 0
         sortFields.each{ |sortField|
            sortField.strip!
            fid = lookupFieldIDByName( sortField )
            if fid.nil?
               fid = sortField if sortField.match(/[0-9]+/)
            end
            if fid 
               if slist
                  slist << ".#{fid}"
               else
                  slist = fid
               end
            end
         }
      end
      if queryFields.length > 0
         query.strip!
         query << "'}"
         queryFields.each{ |fieldName|
            fieldName.strip!
            fid = lookupFieldIDByName( fieldName )
            if fid
               query.gsub!( "'[#{fieldName} ]'", "'#{fid}'" )
            end
         }
      else
         query = nil
      end
      if getRecordCount 
         ret = getNumRecords(dbid)
      elsif returnOptions == :Hash
         ret = getAllValuesForFields(dbid, columnNames, query, nil, nil, clist, slist,"structured",options)
      elsif returnOptions == :Array
         ret = getAllValuesForFieldsAsArray(dbid, columnNames, query, nil, nil, clist, slist,"structured",options)
      else
         ret = doQuery( dbid, query, nil, nil, clist, slist, "structured", options )
      end
   end
   ret
end

#doSQLUpdate(sqlString) ⇒ Object

Translate a simple SQL UPDATE statement to a QuickBase editRecord call.

Note: This method is here primarily for Rails integration. Note: This assumes, like SQL, that your column (i.e. field) names do not contain spaces. Note: This assumes that Record ID# is the key field in your table.



4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
# File 'lib/QuickBaseClient.rb', line 4835

def doSQLUpdate(sqlString)

   sql = sqlString.dup
   dbname = ""
   state = nil
   fieldName = ""
   fieldValue = ""
   sqlQuery = "SELECT 3 FROM "
   
   clearFieldValuePairList

   sql.split(' ').each{ |token|
      case token
         when "UPDATE" 
            state = "getTable" unless state == "getFilter"
            next
         when "SET" 
            state = "getFieldName"  unless state == "getFilter"
            next
         when "=" 
            sqlQuery << " = " if state == "getFilter"
            state = "getFieldValue" unless state == "getFilter"
            next
         when "WHERE" 
            sqlQuery << " WHERE "
            state = "getFilter"
            next
      end
      if state == "getTable"
         dbname = token.dup
         sqlQuery << dbname
      elsif state  == "getFieldName" 
         fieldName = token.gsub('[','').gsub(']','')
      elsif state  == "getFieldValue" 
         test = token
         if test[-1,1] == "'" or test[-2,2] == "',"
            fieldValue << token
            if fieldValue[-2,2] == "',"
               state = "getFieldName"
               fieldValue.gsub!("',","")
            end
            fieldValue.gsub!("'","")
            if fieldName.length > 0 
               addFieldValuePair(fieldName,nil,nil,fieldValue)
               fieldName = ""
               fieldValue = ""
            end
         else   
            fieldValue << "#{token} "
         end
      elsif state == "getFilter"   
         sqlQuery << token
      end
   }
   
   rows = doSQLQuery(sqlQuery,:Array)
   if rows and @dbid and @fvlist
      idFieldName = lookupFieldNameFromID("3")
      rows.each{ |row|
         recordID = row[idFieldName]
         editRecord(@dbid,recordID,@fvlist) if recordID
      }
   end
   
end

#downloadAndSaveFile(dbid, rid, fid, filename = nil, vid = "0") ⇒ Object

Download and save a file from a file attachment field in QuickBase. Use the filename parameter to override the file name from QuickBase.



2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
# File 'lib/QuickBaseClient.rb', line 2225

def downloadAndSaveFile( dbid, rid, fid, filename = nil, vid = "0"  )
   response, fileContents = downLoadFile( dbid, rid, fid, vid )
   if fileContents and fileContents.length > 0
      if filename and filename.length > 0
         Misc.save_file( filename, fileContents )
      else
         record = getRecord( rid, dbid, [fid] )
         if record and record[fid] and record[fid].length > 0
            Misc.save_file( record[fid], fileContents )
         else
            Misc.save_file( "#{dbid}_#{rid}_#{fid}", fileContents )
         end
      end
   end
end

#downLoadFile(dbid, rid, fid, vid = "0") ⇒ Object Also known as: downloadFile

Download a file’s contents from a file attachment field in QuickBase. You must write the contents to disk before a local file exists.



2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
# File 'lib/QuickBaseClient.rb', line 2170

def downLoadFile( dbid, rid, fid, vid = "0" )

  @dbid, @rid, @fid, @vid = dbid, rid, fid, vid

  @downLoadFileURL = "http://#{@org}.#{@domain}.com/up/#{dbid}/a/r#{rid}/e#{fid}/v#{vid}"
  
  if @useSSL
     @downLoadFileURL.gsub!( "http:", "https:" )
  end

  @requestHeaders = { "Cookie"  => "ticket=#{@ticket}" }

  if @printRequestsAndResponses
     puts
     puts "downLoadFile request: -------------------------------------"
     p @downLoadFileURL
     p @requestHeaders
  end

  begin

     if USING_HTTPCLIENT
        @responseCode = 404
        @fileContents = @httpConnection.get_content( @downLoadFileURL, nil, @requestHeaders ) 
        @responseCode = 200 if @fileContents
     else  
        @responseCode, @fileContents = @httpConnection.get( @downLoadFileURL, @requestHeaders )
     end

  rescue Net::HTTPBadResponse => @lastError
  rescue Net::HTTPHeaderSyntaxError => @lastError
  rescue StandardError => @lastError
  end

  if @printRequestsAndResponses
     puts
     puts "downLoadFile response: -------------------------------------"
     p @responseCode
     p @fileContents
  end

  return self if @chainAPIcalls
  return @responseCode, @fileContents
end

#dumpAppZip(dbid) ⇒ Object

API_DumpAppZip



1812
1813
1814
1815
1816
1817
1818
1819
# File 'lib/QuickBaseClient.rb', line 1812

def dumpAppZip( dbid )
  @dbid = dbid
  @noredirect = true
  xmlRequestData = toXML( :noredirect, "1" )
  sendRequest( :dumpAppZip, xmlRequestData )
  return self if @chainAPIcalls
  @responseCode
end

#eachField(record = @record) ⇒ Object

Iterate record XML and yield only ‘f’ elements.



4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
# File 'lib/QuickBaseClient.rb', line 4994

def eachField( record = @record )
   if record and block_given?
      record.each{ |field|
          if field.is_a?( REXML::Element) and field.name == "f" and field.attributes["id"]
             @field = field
             yield field
          end
      }
   end
   nil      
end

#eachRecord(records = @records) ⇒ Object

Iterate @records XML and yield only ‘record’ elements.



4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
# File 'lib/QuickBaseClient.rb', line 4981

def eachRecord( records = @records )
   if records and block_given?
      records.each { |record|
         if record.is_a?( REXML::Element) and record.name == "record"
            @record = record
            yield record
         end
      }
   end
   nil
end

#editRecord(dbid, rid, fvlist, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, msInUTC = nil, key = nil) ⇒ Object

API_EditRecord



2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
# File 'lib/QuickBaseClient.rb', line 2242

def editRecord( dbid, rid, fvlist, disprec = nil, fform = nil, ignoreError = nil, update_id = nil, msInUTC =nil, key = nil )

   @dbid, @rid, @fvlist, @disprec, @fform, @ignoreError, @update_id, @msInUTC, @key = dbid, rid, fvlist, disprec, fform, ignoreError, update_id, msInUTC, key
   setFieldValues( fvlist, false ) if fvlist.is_a?(Hash) 

   xmlRequestData = toXML( :rid, @rid ) if @rid
   xmlRequestData = toXML( :key, @key ) if @key
   @fvlist.each{ |fv| xmlRequestData << fv } #see addFieldValuePair, clearFieldValuePairList, @fvlist
   xmlRequestData << toXML( :disprec, @disprec ) if @disprec
   xmlRequestData << toXML( :fform, @fform ) if @fform
   xmlRequestData << toXML( :ignoreError, "1" ) if @ignoreError
   xmlRequestData << toXML( :update_id, @update_id ) if @update_id
   xmlRequestData << toXML( :msInUTC, "1" ) if @msInUTC

   sendRequest( :editRecord, xmlRequestData )

   @rid = getResponseValue( :rid )
   @update_id = getResponseValue( :update_id )

   return self if @chainAPIcalls
   return @rid, @update_id
end

#editRecords(dbid, fieldValuesToSet, query = nil, qid = nil, qname = nil) ⇒ Object

Set the values of fields in all records returned by a query. fieldValuesToSet must be a Hash of fieldnames+values, e.g. => “Miami”, “Phone” => “343-4567”



3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
# File 'lib/QuickBaseClient.rb', line 3468

def editRecords(dbid,fieldValuesToSet,query=nil,qid=nil,qname=nil)
   edited_rids = []
   if fieldValuesToSet and fieldValuesToSet.is_a?(Hash)
      verifyFieldList(fieldValuesToSet.keys,nil,dbid)
      recordIDs = getAllValuesForFields(dbid,["3"],query,qid,qname,"3")
      if recordIDs
         numRecords = recordIDs["3"].length
         (0..(numRecords-1)).each {|i|
            @rid = recordIDs["3"][i]
            setFieldValues(fieldValuesToSet)
            edited_rids << @rid
         }   
      end
   else
      raise "'fieldValuesToSet' must be a Hash of field names and values."
   end
   edited_rids 
end

#encodeXML(text, doNPChars = false) ⇒ Object

Modify the given string for use as a XML field value.



1529
1530
1531
1532
1533
# File 'lib/QuickBaseClient.rb', line 1529

def encodeXML( text, doNPChars = false )
   encodingStrings { |key,value| text.gsub!( key, value ) if text }
   text.gsub!( /([^;\/?:@&=+\$,A-Za-z0-9\-_.!~*'()# ])/ ) { |c| escapeXML( $1 ) } if text and doNPChars
   text
end

#encodingStrings(reverse = false) ⇒ Object

Returns the list of string substitutions to make to encode or decode field values used in XML.



1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
# File 'lib/QuickBaseClient.rb', line 1515

def encodingStrings( reverse = false )
   @encodingStrings  = [ {"&" => "&amp;" },  {"<" => "&lt;"} , {">" => "&gt;"}, {"'" => "&apos;"}, {"\"" => "&quot;" }  ] if @encodingStrings.nil?
   if block_given?
      if reverse
         @encodingStrings.reverse_each{ |s| s.each{|k,v| yield v,k } }
      else
         @encodingStrings.each{ |s| s.each{|k,v| yield k,v }  }
      end
   else
      @encodingStrings
   end
end

#escapeXML(char) ⇒ Object

Returns the URL-encoded version of a non-printing character.



1505
1506
1507
1508
1509
1510
1511
1512
# File 'lib/QuickBaseClient.rb', line 1505

def escapeXML( char )
   if @xmlEscapes.nil?
      @xmlEscapes = {}
      (0..255).each{ |i| @xmlEscapes[ i.chr ] = sprintf( "&#%03d;", i )  }
   end
   return @xmlEscapes[ char ] if @xmlEscapes[ char ]
   char
end

#fieldAddChoices(dbid, fid, choice) ⇒ Object

API_FieldAddChoices The choice parameter can be one choice string or an array of choice strings.



2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
# File 'lib/QuickBaseClient.rb', line 2270

def fieldAddChoices( dbid, fid, choice )

   @dbid, @fid, @choice = dbid, fid, choice

   xmlRequestData = toXML( :fid, @fid )

   if @choice.is_a?( Array )
      @choice.each { |c| xmlRequestData << toXML( :choice, c ) }
   elsif @choice.is_a?( String )
      xmlRequestData << toXML( :choice, @choice )
   end

   sendRequest( :fieldAddChoices, xmlRequestData )

   @fid = getResponseValue( :fid )
   @fname = getResponseValue( :fname )
   @numadded = getResponseValue( :numadded )

   return self if @chainAPIcalls
   return @fid, @name, @numadded
end

#fieldRemoveChoices(dbid, fid, choice) ⇒ Object

API_FieldRemoveChoices The choice parameter can be one choice string or an array of choice strings.



2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
# File 'lib/QuickBaseClient.rb', line 2307

def fieldRemoveChoices( dbid, fid, choice )

   @dbid, @fid, @choice = dbid, fid, choice

   xmlRequestData = toXML( :fid, @fid )

   if @choice.is_a?( Array )
      @choice.each { |c| xmlRequestData << toXML( :choice, c ) }
   elsif @choice.is_a?( String )
      xmlRequestData << toXML( :choice, @choice )
   end

   sendRequest( :fieldRemoveChoices, xmlRequestData )

   @fid = getResponseValue( :fid )
   @fname = getResponseValue( :fname )
   @numremoved = getResponseValue( :numremoved )

   return self if @chainAPIcalls
   return @fid, @name, @numremoved
end

#fieldTypeForLabel(fieldTypeLabel) ⇒ Object

Returns a field type string given the more human-friendly label for a field type.



1054
1055
1056
1057
# File 'lib/QuickBaseClient.rb', line 1054

def fieldTypeForLabel( fieldTypeLabel )
  @fieldTypeLabelMap ||= Hash["Text","text","Numeric","float","Date / Time","timestamp","Date","date","Checkbox","checkbox","Database Link","dblink","Duration","duration","Email","email","File Attachment","file","Numeric-Currency","currency","Numeric-Rating","rating","Numeric-Percent","percent","Phone Number","phone","Relationship","fkey","Time Of Day","timeofday","URL","url","User","user","Record ID#","recordid","Report Link","dblink","iCalendar","icalendarbutton"]
  @fieldTypeLabelMap[fieldTypeLabel] 
end

#findDBByname(dbname) ⇒ Object Also known as: findDBByName

API_FindDBByname



2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
# File 'lib/QuickBaseClient.rb', line 2342

def findDBByname( dbname )
   @dbname = dbname
   xmlRequestData = toXML( :dbname, @dbname )

   sendRequest( :findDBByname, xmlRequestData )
   @dbid = getResponseValue( :dbid )

   return self if @chainAPIcalls
   @dbid
end

#findDuplicateRecordIDs(fnames, fids, dbid = @dbid, ignoreCase = true) ⇒ Object

Finds records with the same values in a specified list of fields.

The field list may be a list of field IDs or a list of field names. Returns a hash with the structure { “duplicated values” => [ rid, rid, … ] }



4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
# File 'lib/QuickBaseClient.rb', line 4214

def findDuplicateRecordIDs(  fnames, fids, dbid = @dbid, ignoreCase = true )
   verifyFieldList( fnames, fids, dbid )
   duplicates = {}
   if @fids
      cslist = @fids.join( "." )
      ridFields = lookupFieldsByType( "recordid" )
      if ridFields and ridFields.last
        cslist << "."
        recordidFid = ridFields.last.attributes["id"]
        cslist << recordidFid
        valuesUsed = {}
         doQuery( @dbid, nil, nil, nil, cslist ) { |record|
            next unless record.is_a?( REXML::Element) and record.name == "record"
            recordID = ""
            recordValues = []
            record.each { |f|
               if f.is_a?( REXML::Element) and f.name == "f" and  f.has_text?
                  if recordidFid == f.attributes["id"]
                     recordID = f.text
                  else
                     recordValues << f.text
                  end
               end
           }
           if not valuesUsed[ recordValues ]
              valuesUsed[ recordValues ] = []
           end
           valuesUsed[ recordValues ] << recordID
         }

         valuesUsed.each{ |valueArray, recordArray|
            if recordArray.length > 1
              duplicates[ valueArray ] = recordArray
            end
         }
      end
   end
   if block_given?
      duplicates.each{ |duplicate| yield duplicate }
   else
      duplicates
   end
end

#findElementByAttributeValue(elements, attribute_name, attribute_value) ⇒ Object

Returns the first XML sub-element with the specified attribute value.



709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
# File 'lib/QuickBaseClient.rb', line 709

def findElementByAttributeValue( elements, attribute_name, attribute_value )
   element = nil
   if elements
       if elements.is_a?( REXML::Element )
         elements.each_element_with_attribute( attribute_name, attribute_value ) { |e|  element = e }
       elsif elements.is_a?( Array )
         elements.each{ |e|
           if e.is_a?( REXML::Element ) and e.attributes[ attribute_name ] == attribute_value
             element = e
           end
         }
       end
   end
   element
end

#findElementsByAttributeName(elements, attribute_name) ⇒ Object

Returns an array of XML sub-elements with the specified attribute name.



743
744
745
746
747
748
749
# File 'lib/QuickBaseClient.rb', line 743

def findElementsByAttributeName( elements, attribute_name )
   elementArray = []
   if elements
      elements.each_element_with_attribute( attribute_name ) { |e|  elementArray << e }
   end
   elementArray
end

#findElementsByAttributeValue(elements, attribute_name, attribute_value) ⇒ Object

Returns an array of XML sub-elements with the specified attribute value.



726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
# File 'lib/QuickBaseClient.rb', line 726

def findElementsByAttributeValue( elements, attribute_name, attribute_value )
   elementArray = []
   if elements
      if elements.is_a?( REXML::Element )
         elements.each_element_with_attribute( attribute_name, attribute_value ) { |e|  elementArray << e }
      elsif elements.is_a?( Array )
         elements.each{ |e|
           if e.is_a?( REXML::Element ) and e.attributes[ attribute_name ] == attribute_value
             element = e
           end
         }
     end
   end
   elementArray
end

#formatChdbidName(tableName) ⇒ Object

Given the name of a QuickBase table, returns the QuickBase representation of the table name.



899
900
901
902
903
904
# File 'lib/QuickBaseClient.rb', line 899

def formatChdbidName( tableName )
   tableName.downcase!
   tableName.strip!
   tableName.gsub!( /\W/, "_" )
   "_dbid_#{tableName}"
end

#formatCurrency(value, options = nil) ⇒ Object

Returns a string formatted for a currency value.



1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/QuickBaseClient.rb', line 1434

def formatCurrency( value, options = nil )
   value ||= "0.00"
   if !value.include?( '.' )
      value << ".00"
   end
   
   currencySymbol = currencyFormat = nil
   if options
      currencySymbol = options["currencySymbol"]
      currencyFormat = options["currencyFormat"]
   end
   
   if currencySymbol
      if currencyFormat
         if currencyFormat == "0"
            value = "#{currencySymbol}#{value}"
         elsif currencyFormat == "1"
            if value.include?("-")
               value.gsub!("-","-#{currencySymbol}")
            elsif value.include?("+")
               value.gsub!("+","+#{currencySymbol}")
            else   
               value = "#{currencySymbol}#{value}"
            end
         elsif currencyFormat == "2"
            value = "#{value}#{currencySymbol}"
         end
      else
         value = "#{currencySymbol}#{value}"
      end
   end
   
   value
end

#formatDate(milliseconds, fmtString = nil, addDay = false) ⇒ Object

Returns the human-readable string represntation of a date, given the milliseconds version of the date. Also needed for requests to QuickBase.



1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
# File 'lib/QuickBaseClient.rb', line 1387

def formatDate( milliseconds, fmtString = nil, addDay = false )
   fmt = ""
   fmtString = "%m-%d-%Y" if fmtString.nil?
   if milliseconds
      milliseconds_s = milliseconds.to_s
      if milliseconds_s.length == 13
         t = Time.at( milliseconds_s[0,10].to_i,  milliseconds_s[10,3].to_i )
         t += (60 * 60 * 24) if addDay
         fmt = t.strftime(  fmtString )
      elsif milliseconds_s.length > 0
         t = Time.at( (milliseconds_s.to_i) / 1000 )
         t += (60 * 60 * 24) if addDay
         fmt = t.strftime(  fmtString )
      end
   end
   fmt
end

#formatDuration(value, option = "hours") ⇒ Object

Converts milliseconds to hours and returns the value as a string.



1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
# File 'lib/QuickBaseClient.rb', line 1406

def formatDuration( value, option = "hours" )
   option = "hours" if option.nil?
   if value.nil?
      value = ""
   else   
      seconds = (value.to_i/1000)
      minutes = (seconds/60)
      hours = (minutes/60)
      days = (hours/24)
      if option == "days"
         value = days.to_s
      elsif option == "hours"
         value = hours.to_s
      elsif option == "minutes"
         value = minutes.to_s
      end
   end
   value
end

#formatFieldValue(value, type, options = nil) ⇒ Object

Returns a human-readable string representation of a QuickBase field value.

Also required for subsequent requests to QuickBase.



560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# File 'lib/QuickBaseClient.rb', line 560

def formatFieldValue( value, type, options = nil )
   if value and type
      case type
         when "date"
            value = formatDate( value )
         when "date / time","timestamp"
            value = formatDate( value, "%m-%d-%Y %I:%M %p" )
         when "timeofday"
            value = formatTimeOfDay( value, options )
         when "duration"
            value = formatDuration( value, options )
         when "currency"   
            value = formatCurrency( value, options )
         when "percent"   
            value = formatPercent( value, options )
      end
   end
   value
end

#formatImportCSV(csv) ⇒ Object

Returns the string required for emebedding CSV data in a request.



1381
1382
1383
# File 'lib/QuickBaseClient.rb', line 1381

def formatImportCSV( csv )
   "<![CDATA[#{csv}]]>"
end

#formatPercent(value, options = nil) ⇒ Object

Returns a string formatted for a percent value, given the data from QuickBase



1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
# File 'lib/QuickBaseClient.rb', line 1470

def formatPercent( value, options = nil )
   if value
      percent = (value.to_f * 100)
      value = percent.to_s
      if value.include?(".")
         int,fraction = value.split('.')
         if fraction.to_i == 0
            value = int
         else
            value = "#{int}.#{fraction[0,2]}"
         end            
      end         
   else
      value = "0"
   end
   value
end

#formatTimeOfDay(milliseconds, format = "%I:%M %p") ⇒ Object

Returns a string format for a time of day value.



1427
1428
1429
1430
1431
# File 'lib/QuickBaseClient.rb', line 1427

def formatTimeOfDay(milliseconds, format = "%I:%M %p" )
   format ||= "%I:%M %p"
   timeOfDay = ""
   timeOfDay = Time.at(milliseconds.to_i/1000).utc.strftime(format) if milliseconds
end

#genAddRecordForm(dbid, fvlist = nil) ⇒ Object

API_GenAddRecordForm



2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
# File 'lib/QuickBaseClient.rb', line 2355

def genAddRecordForm( dbid, fvlist = nil )

   @dbid, @fvlist = dbid, fvlist
   setFieldValues( fvlist, false ) if fvlist.is_a?(Hash) 

   xmlRequestData = ""
   @fvlist.each { |fv| xmlRequestData << fv } if @fvlist #see addFieldValuePair, clearFieldValuePairList, @fvlist

   sendRequest( :genAddRecordForm, xmlRequestData )

   @HTML = @responseXML

   return self if @chainAPIcalls
   @HTML
end

#genResultsTable(dbid, query = nil, clist = nil, slist = nil, jht = nil, jsa = nil, options = nil, qid = nil, qname = nil) ⇒ Object

API_GenResultsTable



2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
# File 'lib/QuickBaseClient.rb', line 2375

def genResultsTable( dbid, query = nil, clist = nil, slist = nil, jht = nil, jsa = nil, options = nil, qid = nil, qname = nil )

   @dbid, @query, @clist, @slist, @jht, @jsa, @options = dbid, query, clist, slist, jht, jsa, options

   @clist ||= getColumnListForQuery(qid, qname)
   @slist ||= getSortListForQuery(qid, qname)

   xmlRequestData = getQueryRequestXML( query, qid, qname )
   xmlRequestData << toXML( :clist, @clist ) if @clist
   xmlRequestData << toXML( :slist, @slist ) if @slist
   xmlRequestData << toXML( :jht, @jht ) if @jht
   xmlRequestData << toXML( :jsa, @jsa ) if @jsa
   xmlRequestData << toXML( :options, @options ) if @options

   sendRequest( :genResultsTable, xmlRequestData )

   @HTML = @responseXML

   return self if @chainAPIcalls
   @HTML
end

#getAllRecordIDs(dbid) ⇒ Object

Get an array of all the record IDs for a specified table. e.g. IDs = getAllRecordIDs( “dhnju5y7” ){ |id| puts “Record ##id” }



4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
# File 'lib/QuickBaseClient.rb', line 4188

def getAllRecordIDs( dbid )
   rids = []
   if dbid
      getSchema( dbid )
      next_record_id = getResponseElement( "table/original/next_record_id" )
      if next_record_id and next_record_id.has_text?
         next_record_id = next_record_id.text
         (1..next_record_id.to_i).each{ |rid|
            begin
               _getRecordInfo( rid )
               rids << rid.to_s if update_id
            rescue
            end
         }
      end
   end
   if block_given?
     rids.each { |id| yield id }
   else
     rids
   end
end

#getAllValuesForFields(dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object Also known as: getRecordsHash

Get all the values for one or more fields from a specified table.

e.g. getAllValuesForFields( “dhnju5y7”, [ “Name”, “Phone” ] )

The results are returned in Hash, e.g. { “Name” => values[ “Name” ], “Phone” => values[ “Phone” ] } The parameters after ‘fieldNames’ are passed directly to the doQuery() API_ call.

Invalid 'fieldNames' will be treated as field IDs by default,  e.g. getAllValuesForFields( "dhnju5y7", [ "3" ] ) 
returns a list of Record ID#s even if the 'Record ID#' field name has been changed.


3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
# File 'lib/QuickBaseClient.rb', line 3346

def getAllValuesForFields( dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
  if dbid

     getSchema(dbid)
     
     values = {}
     fieldIDs = {}
     if fieldNames and fieldNames.is_a?( String )
        values[ fieldNames ] = []
        fieldID = lookupFieldIDByName( fieldNames )
        if fieldID 
           fieldIDs[ fieldNames ] = fieldID 
        elsif fieldNames.match(/[0-9]+/) # assume fieldNames is a field ID  
           fieldIDs[ fieldNames ] = fieldNames
        end
     elsif fieldNames and fieldNames.is_a?( Array )
        fieldNames.each{ |name|
           if name
              values[ name ] = []
              fieldID = lookupFieldIDByName( name )
              if fieldID
                 fieldIDs[ fieldID ] = name 
              elsif name.match(/[0-9]+/) # assume name is a field ID
                 fieldIDs[ name ] = name
              end
           end
        }
     elsif fieldNames.nil?
        getFieldNames(dbid).each{|name|
              values[ name ] = []
              fieldID = lookupFieldIDByName( name )
              fieldIDs[ fieldID ] = name
        }         
     end
     
     if clist
        clist << "."
        clist = fieldIDs.keys.join('.')
     elsif qid.nil? and qname.nil?
        clist = fieldIDs.keys.join('.')
     end
     
     if clist
        clist = clist.split('.')
        clist.uniq!
        clist = clist.join(".")
     end

     doQuery( dbid, query, qid, qname, clist, slist, fmt, options )

     if @records and values.length > 0 and fieldIDs.length > 0
        @records.each { |r|
           if r.is_a?( REXML::Element) and r.name == "record"
              values.each{ |k,v| v << "" }
              r.each{ |f|
                 if f.is_a?( REXML::Element) and f.name == "f"
                   fid = f.attributes[ "id" ]
                   name = fieldIDs[ fid ] if fid
                   if name and values[ name ]
                      v = values[ name ]
                      v[-1] = f.text if v and f.has_text?
                   end
                 end
              }
           end
        }
     end
  end

  if values and block_given?
     values.each{ |field, values| yield field, values }
  else
     values
  end
end

#getAllValuesForFieldsAsArray(dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object Also known as: getRecordsArray

Get all the values for one or more fields from a specified table. This also formats the field values instead of returning the raw value.



3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
# File 'lib/QuickBaseClient.rb', line 3426

def getAllValuesForFieldsAsArray( dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   ret = []
   valuesForFields = getAllValuesForFields(dbid, fieldNames, query, qid, qname, clist, slist,fmt,options)
   if valuesForFields
      fieldNames ||= getFieldNames(@dbid) 
      if fieldNames and fieldNames[0]
         ret = Array.new(valuesForFields[fieldNames[0]].length) 
         fieldType = {}
         fieldNames.each{|field|fieldType[field]=lookupFieldTypeByName(field)}
         valuesForFields.each{ |field,values|
            values.each_index { |i| 
               ret[i] ||= {} 
               ret[i][field]=formatFieldValue(values[i],fieldType[field])
            }
         }
      end
   end
   ret
end

#getAllValuesForFieldsAsJSON(dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object Also known as: getRecordsAsJSON

Get all the values for one or more fields from a specified table, in JSON format. This formats the field values instead of returning raw values.



3450
3451
3452
3453
# File 'lib/QuickBaseClient.rb', line 3450

def getAllValuesForFieldsAsJSON( dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
  ret = getAllValuesForFieldsAsArray(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options)
  ret = JSON.generate(ret) if ret
end

#getAllValuesForFieldsAsPrettyJSON(dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object Also known as: getRecordsAsPrettyJSON

Get all the values for one or more fields from a specified table, in human-readable JSON format. This formats the field values instead of returning raw values.



3459
3460
3461
3462
# File 'lib/QuickBaseClient.rb', line 3459

def getAllValuesForFieldsAsPrettyJSON( dbid, fieldNames = nil, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
  ret = getAllValuesForFieldsAsArray(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options)
  ret = JSON.pretty_generate(ret) if ret
end

#getAncestorInfo(dbid) ⇒ Object

API_GetAncestorInfo



2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
# File 'lib/QuickBaseClient.rb', line 2401

def getAncestorInfo( dbid )
   @dbid = dbid

   sendRequest( :getAncestorInfo )
   
   @ancestorappid = getResponseValue( :ancestorappid )
   @oldestancestorappid = getResponseValue( :oldestancestorappid )
   @qarancestorappid = getResponseValue( :qarancestorappid )

   return self if @chainAPIcalls
   return @ancestorappid, @oldestancestorappid, @qarancestorappid
end

#getAppDTMInfo(dbid) ⇒ Object

API_GetAppDTMInfo



2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
# File 'lib/QuickBaseClient.rb', line 2417

def getAppDTMInfo( dbid )
   @dbid = dbid

   sendRequest( :getAppDTMInfo )

   @requestTime = getResponseElement( "RequestTime" )
   @requestNextAllowedTime = getResponseElement( "RequestNextAllowedTime" )
   @app = getResponseElement( "app" )
   @lastModifiedTime = getResponsePathValue( "app/lastModifiedTime" )
   @lastRecModTime = getResponsePathValue( "app/lastRecModTime" )
   @tables = getResponseElement( :tables )

   return self if @chainAPIcalls

   if @app and @tables and block_given?
      @app.each { |element| yield element }
      @tables.each { |element| yield element }
   else
      return @app, @tables
   end
end

#getApplicationVariable(variableName, dbid = nil) ⇒ Object

Get the value of an application variable.



867
868
869
870
# File 'lib/QuickBaseClient.rb', line 867

def getApplicationVariable(variableName,dbid=nil)
  variablesHash = getApplicationVariables(dbid)
  variablesHash[variableName]
end

#getApplicationVariables(dbid = nil) ⇒ Object

Get a Hash of application variables.



852
853
854
855
856
857
858
859
860
861
862
863
864
# File 'lib/QuickBaseClient.rb', line 852

def getApplicationVariables(dbid=nil)
  variablesHash = {}
  dbid ||= @dbid
  getSchema(dbid)
  if @variables
     @variables.each_element_with_attribute( "name" ){ |var|
        if var.name == "var" and var.has_text?
          variablesHash[var.attributes["name"]] =  var.text
        end
     }
  end
  variablesHash
end

#getAttributeString(element) ⇒ Object

Returns a string representation of the attributes of an XML element.



465
466
467
468
469
470
471
472
473
474
475
# File 'lib/QuickBaseClient.rb', line 465

def getAttributeString( element )
  attributes = ""
  if element.is_a?( REXML::Element ) and element.has_attributes?
     attributes = "("
     element.attributes.each { |name,value|
        attributes << "#{name}=#{value} "
     }
     attributes << ")"
  end
  attributes
end

#getAuthenticationXMLforRequest(api_Request) ⇒ Object

Returns the request XML for either a ticket or a username and password. The XML includes a apptoken if one has been set.



304
305
306
307
308
309
310
311
312
# File 'lib/QuickBaseClient.rb', line 304

def getAuthenticationXMLforRequest( api_Request )
   @authenticationXML = ""
   if @ticket
      @authenticationXML = toXML( :ticket, @ticket )
   elsif @username and @password
      @authenticationXML = toXML( :username, @username ) + toXML( :password, @password )
   end
   @authenticationXML << toXML( :apptoken, @apptoken ) if @apptoken
end

#getBillingStatus(dbid) ⇒ Object

API_GetBillingStatus



2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
# File 'lib/QuickBaseClient.rb', line 2443

def getBillingStatus( dbid )
  @dbid = dbid
  
  sendRequest( :getBillingStatus )
  
  @lastPaymentDate = getResponseValue( :lastPaymentDate ) 
  @status = getResponseValue( :status ) 
  
  return self if @chainAPIcalls
  return @lastPaymentDate, @status
end

#getColumnListForQuery(id, name) ⇒ Object Also known as: getColumnListForReport

Returns the clist associated with a query.



1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
# File 'lib/QuickBaseClient.rb', line 1254

def getColumnListForQuery( id, name )
   clistForQuery = nil
   if id
      query = lookupQuery( id )
   elsif name
      query = lookupQueryByName( name )
   end
   if query and query.elements["qyclst"]
      clistForQuery = query.elements["qyclst"].text.dup
   end
   clistForQuery
end

#getCriteriaForQuery(id, name) ⇒ Object Also known as: getCriteriaForReport

Returns the criteria associated with a query.



1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
# File 'lib/QuickBaseClient.rb', line 1286

def getCriteriaForQuery( id, name )
   criteriaForQuery = nil
   if id
      query = lookupQuery( id )
   elsif name
      query = lookupQueryByName( name )
   end
   if query and query.elements["qycrit"]
      criteriaForQuery = query.elements["qycrit"].text.dup
   end
   criteriaForQuery
end

#getCSVForReport(dbid, query = nil, qid = nil, qname = nil) ⇒ Object

Get the CSV data for a Report.



4560
4561
4562
# File 'lib/QuickBaseClient.rb', line 4560

def getCSVForReport(dbid,query=nil,qid=nil,qname=nil)
   genResultsTable(dbid,query,nil,nil,nil,nil,"csv",qid,qname)
end

#getDBforRequestURL(api_Request) ⇒ Object

Determines whether the URL for a QuickBase request is for a specific database table or not, and returns the appropriate string for that portion of the request URL.



292
293
294
295
296
297
298
299
300
# File 'lib/QuickBaseClient.rb', line 292

def getDBforRequestURL( api_Request )
   @dbidForRequestURL = "/db/#{@dbid}"
   case api_Request
      when :getAppDTMInfo
         @dbidForRequestURL = "/db/main?a=#{:getAppDTMInfo}&dbid=#{@dbid}"
      when :authenticate, :createDatabase, :deleteAppZip, :dumpAppZip, :getUserInfo, :findDBByname, :getOneTimeTicket, :getFileUploadToken, :grantedDBs, :installAppZip, :obStatus, :signOut
         @dbidForRequestURL = "/db/main"
   end
end

#getDBInfo(dbid) ⇒ Object

API_GetDBInfo



2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
# File 'lib/QuickBaseClient.rb', line 2459

def getDBInfo( dbid )

   @dbid = dbid
   sendRequest( :getDBInfo )

   @lastRecModTime = getResponseValue( :lastRecModTime )
   @lastModifiedTime = getResponseValue( :lastModifiedTime )
   @createdTime = getResponseValue( :createdTime )
   @lastAccessTime = getResponseValue( :lastAccessTime )
   @numRecords = getResponseValue( :numRecords )
   @mgrID = getResponseValue( :mgrID )
   @mgrName = getResponseValue( :mgrName )
   @dbname = getResponseValue( :dbname)
   @version = getResponseValue( :version)

   return self if @chainAPIcalls
   return @lastRecModTime, @lastModifiedTime, @createdTime, @lastAccessTime, @numRecords, @mgrID, @mgrName
end

#getDBPage(dbid, pageid, pagename = nil) ⇒ Object

API_GetDBPage



2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
# File 'lib/QuickBaseClient.rb', line 2482

def getDBPage( dbid, pageid, pagename = nil )

  @dbid, @pageid, @pagename = dbid, pageid, pagename

  xmlRequestData = nil
  if @pageid
     xmlRequestData = toXML( :pageid, @pageid )
  elsif @pagename
     xmlRequestData = toXML( :pagename, @pagename )
  else
     raise "getDBPage: missing pageid or pagename"
  end

  sendRequest( :getDBPage, xmlRequestData )

  @pagebody = getResponseElement( :pagebody )

  return self if @chainAPIcalls
  @pagebody
end

#getDBPagesAsArray(dbid) ⇒ Object Also known as: getDBPages

Get an array Pages for an application. Each item in the array is a Hash.



3148
3149
3150
3151
3152
# File 'lib/QuickBaseClient.rb', line 3148

def getDBPagesAsArray(dbid)
  dbPagesArray = []
  iterateDBPages(dbid){|page| dbPagesArray << page }
  dbPagesArray
end

#getDBvar(dbid, varname) ⇒ Object

API_GetDBVar



2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
# File 'lib/QuickBaseClient.rb', line 2507

def getDBvar( dbid, varname )
  @dbid, @varname = dbid, varname
  
  xmlRequestData = toXML( :varname, @varname )
  
  sendRequest( :getDBvar, xmlRequestData )
  
  @value = getResponseValue( :value )
  
  return self if @chainAPIcalls
  @value
end

#getEntitlementValues(dbid) ⇒ Object

API_GetEntitlementValues



2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
# File 'lib/QuickBaseClient.rb', line 2524

def getEntitlementValues( dbid )
   @dbid = dbid
   
   sendRequest( :getEntitlementValues )
   
   @productID = getResponseValue( :productID ) 
   @planName = getResponseValue( :planName ) 
   @planType = getResponseValue( :planType ) 
   @maxUsers = getResponseValue( :maxUsers ) 
   @currentUsers = getResponseValue( :currentUsers ) 
   @daysRemainingTrial = getResponseValue( :daysRemainingTrial )
   @entitlements = getResponseElement( :entitlements )
   
   return self if @chainAPIcalls
   return @productID, @planName, @planType, @maxUsers, @currentUsers, @daysRemainingTrial, @entitlements
end

#getErrorInfoFromResponseObject

Extracts error info from XML responses returned by QuickBase.



392
393
394
395
396
397
398
399
400
401
402
403
404
405
# File 'lib/QuickBaseClient.rb', line 392

def getErrorInfoFromResponse
   if @responseXMLdoc
      errcode = getResponseValue( :errcode )
      @errcode = errcode ? errcode : ""
      errtext = getResponseValue( :errtext )
      @errtext = errtext ? errtext : ""
      errdetail = getResponseValue( :errdetail )
      @errdetail = errdetail ? errdetail : ""
      if @errcode != "0"
         @lastError = "Error code: #{@errcode} text: #{@errtext}: detail: #{@errdetail}"
      end
   end
   @lastError
end

#getFieldChoices(dbid, fieldName = nil, fid = nil) ⇒ Object

Get an array of the existing choices for a multiple-choice text field.



4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
# File 'lib/QuickBaseClient.rb', line 4161

def getFieldChoices(dbid,fieldName=nil,fid=nil)
   getSchema(dbid)
   if fieldName
      fid = lookupFieldIDByName(fieldName)
   elsif not fid
      raise "'fieldName' or 'fid' must be specified"
   end
   field = lookupField( fid )
   if field
      choices = []
      choicesProc = proc { |element|
         if element.is_a?(REXML::Element)
            if element.name == "choice" and element.has_text?
               choices << element.text
            end
         end
      }
      processChildElements(field,true,choicesProc)
      choices = nil if choices.length == 0
      choices
   else   
      nil
   end
end

#getFieldDataPrintableValue(fid) ⇒ Object

Returns the printable value for a field returned by a getRecordInfo call.



787
788
789
790
791
792
793
794
795
796
797
# File 'lib/QuickBaseClient.rb', line 787

def getFieldDataPrintableValue(fid)
  printable = nil
  if @field_data_list
     field_data = lookupFieldData(fid)
     if field_data
        printableElement = field_data.elements[ "printable" ]
        printable = printableElement.text if printableElement and printableElement.has_text?
     end   
  end
  printable
end

#getFieldDataValue(fid) ⇒ Object

Returns the value for a field returned by a getRecordInfo call.



774
775
776
777
778
779
780
781
782
783
784
# File 'lib/QuickBaseClient.rb', line 774

def getFieldDataValue(fid)
   value = nil
   if @field_data_list
       field_data = lookupFieldData(fid)
       if field_data
         valueElement = field_data.elements[ "value" ]
         value = valueElement.text if valueElement.has_text?
       end   
   end
   value
end

#getFieldIDs(dbid = nil, exclude_built_in_fields = false) ⇒ Object

Get an array of field IDs for a table.



816
817
818
819
820
821
822
823
824
825
826
827
# File 'lib/QuickBaseClient.rb', line 816

def getFieldIDs(dbid = nil, exclude_built_in_fields = false )
  fieldIDs = []
  dbid ||= @dbid
  getSchema(dbid)
  if @fields
     @fields.each_element_with_attribute( "id" ){|f|
        next if exclude_built_in_fields and isBuiltInField?(f.attributes["id"])
        fieldIDs << f.attributes[ "id" ].dup 
     }
  end
  fieldIDs   
end

#getFieldNames(dbid = nil, lowerOrUppercase = "", exclude_built_in_fields = false) ⇒ Object

Get an array of field names for a table.



830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
# File 'lib/QuickBaseClient.rb', line 830

def getFieldNames( dbid = nil, lowerOrUppercase = "", exclude_built_in_fields = false )
  fieldNames = []
  dbid ||= @dbid
  getSchema(dbid)
  if @fields
     @fields.each_element_with_attribute( "id" ){ |f|
        next if exclude_built_in_fields and isBuiltInField?(f.attributes["id"])
        if f.name == "field"
           if lowerOrUppercase == "lowercase"
              fieldNames << f.elements[ "label" ].text.downcase
           elsif lowerOrUppercase == "uppercase"
              fieldNames << f.elements[ "label" ].text.upcase
           else
              fieldNames << f.elements[ "label" ].text.dup
           end
        end
     }
  end
  fieldNames
end

#getFileAttachmentUsage(dbid) ⇒ Object

API_GetFileAttachmentUsage



2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
# File 'lib/QuickBaseClient.rb', line 2545

def getFileAttachmentUsage( dbid )
   @dbid = dbid
   
   sendRequest( :getFileAttachmentUsage )
   
   @accountLimit = getResponseValue( :accountLimit )
   @accountUsage = getResponseValue( :accountUsage )
   @applicationLimit = getResponseValue( :applicationLimit )
   @applicationUsage = getResponseValue( :applicationUsage )

   return self if @chainAPIcalls
   return @accountLimit, @accountUsage, @applicationLimit, @applicationUsage
end

#getFileDownloadURL(dbid, rid, fid, vid = "0", org = "www", domain = "quickbase", ssl = "s") ⇒ Object

Get the URL string for downloading a file from a File Attachment field



4605
4606
4607
# File 'lib/QuickBaseClient.rb', line 4605

def getFileDownloadURL(dbid, rid, fid, vid = "0",org="www",domain="quickbase",ssl="s")
   "http#{ssl}://#{org}.#{domain}.com/up/#{dbid}/a/r#{rid}/e#{fid}/v#{vid}"
end

#getFileUploadTokenObject

API_GetFileUploadToken



2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
# File 'lib/QuickBaseClient.rb', line 2589

def getFileUploadToken()
  
  sendRequest( :getFileUploadToken)
  
  @fileUploadToken = getResponseValue( :fileUploadToken )
  @userid = getResponseValue( :userid )
  
  return self if @chainAPIcalls
  return @fileUploadToken, @userid
end

#getFilteredRecords(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object Also known as: findRecords, find_records

e.g. getFilteredRecords( “dhnju5y7”, [=> “[A-E].+”,“Address”] ) { |values| puts values, values }



3541
3542
3543
3544
3545
3546
3547
# File 'lib/QuickBaseClient.rb', line 3541

def getFilteredRecords( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   filteredRecords = []
   iterateFilteredRecords(dbid, fieldNames, query, qid, qname, clist, slist, fmt, options){ |filteredRecord| 
      filteredRecords << filteredRecord 
   }
   filteredRecords
end

#getIDSRealm(dbid) ⇒ Object

API_GetIDSRealm (IPP only)



1822
1823
1824
1825
1826
1827
1828
1829
1830
# File 'lib/QuickBaseClient.rb', line 1822

def getIDSRealm( dbid )
  @dbid = dbid 
   
   sendRequest( :getIDSRealm )
   @realm = getResponseValue( :realm)
   
   return self if @chainAPIcalls
   @realm
end

#getJoinRecords(tablesAndFields) ⇒ Object

Get an array of records from two or more tables and/or queries with the same value in a ‘join’ field. The ‘joinfield’ does not have to have the same name in each table. Fields with the same name in each table will be merged, with the value from the last table being assigned. This is similar to an SQL JOIN.



3666
3667
3668
3669
3670
3671
3672
# File 'lib/QuickBaseClient.rb', line 3666

def getJoinRecords(tablesAndFields)
   joinRecords = []
   iterateJoinRecords(tablesAndFields)  { |joinRecord|
      joinRecords << joinRecord.dup
   } 
   joinRecords
end

#getNumRecords(dbid) ⇒ Object

API_GetNumRecords



2563
2564
2565
2566
2567
2568
2569
2570
2571
# File 'lib/QuickBaseClient.rb', line 2563

def getNumRecords( dbid )
   @dbid = dbid

   sendRequest( :getNumRecords )
   @num_records = getResponseValue( :num_records )

   return self if @chainAPIcalls
   @num_records
end

#getNumTables(dbid) ⇒ Object

Get the number of child tables of an application



987
988
989
990
991
992
993
994
995
996
997
# File 'lib/QuickBaseClient.rb', line 987

def getNumTables(dbid)
    numTables = 0
    dbid ||= @dbid
    if getSchema(dbid)      
      if @chdbids
         chdbidArray = findElementsByAttributeName( @chdbids, "name" )
         numTables = chdbidArray.length
       end
     end
    numTables       
end

#getOneTimeTicketObject

API_GetOneTimeTicket



2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
# File 'lib/QuickBaseClient.rb', line 2577

def getOneTimeTicket()
  
  sendRequest( :getOneTimeTicket )
  
  @ticket = getResponseValue( :ticket )
  @userid = getResponseValue( :userid )
  
  return self if @chainAPIcalls
  return @ticket, @userid
end

#getQueryRequestXML(query = nil, qid = nil, qname = nil) ⇒ Object

Builds the request XML for retrieving the results of a query.



1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
# File 'lib/QuickBaseClient.rb', line 1235

def getQueryRequestXML( query = nil, qid = nil, qname = nil )
   @query = @qid = @qname = nil
   if query
     @query = query == "" ? "{'0'.CT.''}" : query
     xmlRequestData = toXML( :query, @query )
   elsif qid
     @qid = qid
     xmlRequestData = toXML( :qid, @qid )
   elsif qname
     @qname = qname
     xmlRequestData = toXML( :qname, @qname )
   else
     @query = "{'0'.CT.''}"
     xmlRequestData = toXML( :query, @query )
   end
   xmlRequestData
end

#getRealmForDbid(dbid) ⇒ Object

Given a DBID, get the QuickBase realm it is in.



1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
# File 'lib/QuickBaseClient.rb', line 1017

def getRealmForDbid(dbid)
   @realm = nil
   if USING_HTTPCLIENT
      begin
         httpclient = HTTPClient.new
         resp = httpclient.get("https://www.quickbase.com/db/#{dbid}")
         location = resp.header['Location'][0]
         location.sub!("https://","")
         parts = location.split(/\./)
         @realm = parts[0]
      rescue StandardError => error
         @realm = nil 
      end
   else
      raise "Please get the HTTPClient gem: gem install httpclient" 
   end   
   @realm
end

#getRecord(rid, dbid = @dbid, fieldNames = nil) ⇒ Object

Get a record as a Hash, using the record id and dbid . e.g. getRecord(“24105”,“8emtadvk”){|myRecord| p myRecord}



3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
# File 'lib/QuickBaseClient.rb', line 3105

def getRecord(rid, dbid = @dbid, fieldNames = nil)
  rec = nil
  fieldNames ||= getFieldNames(dbid)
  iterateRecords(dbid, fieldNames,"{'3'.EX.'#{rid}'}"){|r| rec = r }
  if block_given?
    yield rec
  else
    rec  
  end        
end

#getRecordAsHTML(dbid, rid, jht = nil, dfid = nil) ⇒ Object

API_GetRecordAsHTML



2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
# File 'lib/QuickBaseClient.rb', line 2601

def getRecordAsHTML( dbid, rid, jht = nil, dfid = nil )

  @dbid, @rid, @jht, @dfid = dbid, rid, jht, dfid

  xmlRequestData = toXML( :rid, @rid )
  xmlRequestData << toXML( :jht, "1" ) if @jht
  xmlRequestData << toXML( :dfid, @dfid ) if @dfid

  sendRequest( :getRecordAsHTML, xmlRequestData )

  @HTML = @responseXML

  return self if @chainAPIcalls
  @HTML
end

#getRecordInfo(dbid, rid) ⇒ Object

API_GetRecordInfo



2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
# File 'lib/QuickBaseClient.rb', line 2621

def getRecordInfo( dbid, rid )

   @dbid, @rid = dbid, rid

   xmlRequestData = toXML( :rid , @rid )
   sendRequest( :getRecordInfo, xmlRequestData )

   @num_fields = getResponseValue( :num_fields )
   @update_id = getResponseValue( :update_id )
   @rid = getResponseValue( :rid )

   @field_data_list = getResponseElements( "qdbapi/field" )

   return self if @chainAPIcalls

   if block_given?
      @field_data_list.each { |field| yield field }
   else
      return @num_fields,  @update_id, @field_data_list
   end
end

#getRecords(rids, dbid = @dbid, fieldNames = nil) ⇒ Object

Get an array of records as Hashes, using the record ids and dbid . e.g. getRecords(,“8emtadvk”){|myRecord| p myRecord}



3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
# File 'lib/QuickBaseClient.rb', line 3118

def getRecords(rids, dbid = @dbid, fieldNames = nil)
   records = []
   if rids.length > 0
     query = ""
     rids.each{|rid| query << "{'3'.EX.'#{rid}'}OR"}
     query[-2] = "" 
     fieldNames ||= getFieldNames(dbid)
     iterateRecords(dbid,fieldNames,query){|r| records << r }
   end
   if block_given?
     records.each{|rec|yield rec}
   else
     records  
   end        
end

#getReportNames(dbid = @dbid) ⇒ Object

Get a list of the names of the reports (i.e. queries) for a table.



1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
# File 'lib/QuickBaseClient.rb', line 1000

def getReportNames(dbid = @dbid)
    reportNames = []
    getSchema(dbid)
    if @queries
       queriesProc = proc { |element|
          if element.is_a?(REXML::Element)
             if element.name == "qyname" and element.has_text?
                reportNames << element.text
             end
          end
       }
       processChildElements(@queries,true,queriesProc)
    end
    reportNames
end

#getResponseElement(path) ⇒ Object

Gets the element at an Xpath in the XML from QuickBase.



457
458
459
460
461
462
# File 'lib/QuickBaseClient.rb', line 457

def getResponseElement( path )
   if path and @responseXMLdoc
      @responseElement = @responseXMLdoc.root.elements[ path.to_s ]
   end
   @responseElement
end

#getResponseElements(path) ⇒ Object

Gets an array of elements at an Xpath in the XML from QuickBase.



449
450
451
452
453
454
# File 'lib/QuickBaseClient.rb', line 449

def getResponseElements( path )
   if path and @responseXMLdoc
      @responseElements = @responseXMLdoc.get_elements( path.to_s )
   end
   @responseElements
end

#getResponsePathValue(path) ⇒ Object

Gets the value of a field using an XPath spec., e.g. field/name



431
432
433
434
435
436
437
438
# File 'lib/QuickBaseClient.rb', line 431

def getResponsePathValue( path )
    @fieldValue = ""
    e = getResponseElement( path )
    if e and e.is_a?( REXML::Element ) and e.has_text?
       @fieldValue = e.text
    end
    @fieldValue
end

#getResponsePathValues(path) ⇒ Object

Gets an array of values at an Xpath in the XML from QuickBase.



441
442
443
444
445
446
# File 'lib/QuickBaseClient.rb', line 441

def getResponsePathValues( path )
    @fieldValue = ""
    e = getResponseElements( path )
    e.each{ |e| @fieldValue << e.text if e and e.is_a?( REXML::Element ) and e.has_text?  }
    @fieldValue
end

#getResponseValue(field) ⇒ Object

Gets the value for a specific field at the top level of the XML returned from QuickBase.



421
422
423
424
425
426
427
428
# File 'lib/QuickBaseClient.rb', line 421

def getResponseValue( field )
   @fieldValue = nil
   if field and @responseXMLdoc
      @fieldValue = @responseXMLdoc.root.elements[ field.to_s ]
      @fieldValue = fieldValue.text if fieldValue and fieldValue.has_text?
   end
   @fieldValue
end

#getRoleInfo(dbid) ⇒ Object

API_GetRoleInfo



2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
# File 'lib/QuickBaseClient.rb', line 2647

def getRoleInfo( dbid )
   @dbid = dbid
   
   sendRequest( :getRoleInfo )
   
   @roles = getResponseElement( :roles )
   
   return self if @chainAPIcalls
   
   if block_given?
     role_list = getResponseElements( "qdbapi/roles/role" )
     if role_list
       role_list.each {|role| yield role}
     else
       yield nil
     end  
   else  
      @roles
    end
    
end

#getSchema(dbid) ⇒ Object

API_GetSchema



2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
# File 'lib/QuickBaseClient.rb', line 2673

def getSchema( dbid )
  @dbid = dbid

  if @cacheSchemas and @cachedSchemas and @cachedSchemas[dbid]
     @responseXMLdoc = @cachedSchemas[dbid]
  else
     sendRequest( :getSchema )
     if @cacheSchemas and @requestSucceeded
        @cachedSchemas ||= {}
        @cachedSchemas[dbid] ||= @responseXMLdoc.dup
     end
  end

  @chdbids = getResponseElement( "table/chdbids" )
  @variables = getResponseElement( "table/variables" )
  @fields = getResponseElement( "table/fields" )
  @queries = getResponseElement( "table/queries" )
  @table = getResponseElement( :table )
  @key_fid = getResponseElement( "table/original/key_fid" )
  @key_fid = @key_fid.text if @key_fid and @key_fid.has_text?

  return self if @chainAPIcalls

  if @table and block_given?
     @table.each { |element| yield element }
  else
     @table
  end
end

#getServerStatusObject

Get the status of the QuickBase server.



2726
2727
2728
# File 'lib/QuickBaseClient.rb', line 2726

def getServerStatus
  obStatus
end

#getSortListForQuery(id, name) ⇒ Object Also known as: getSortListForReport

Returns the slist associated with a query.



1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
# File 'lib/QuickBaseClient.rb', line 1270

def getSortListForQuery( id, name )
   slistForQuery = nil
   if id
      query = lookupQuery( id )
   elsif name
      query = lookupQueryByName( name )
   end
   if query and query.elements["qyslst"]
      slistForQuery = query.elements["qyslst"].text.dup
   end
   slistForQuery
end

#getSummaryRecords(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Collect summary records into an array.



3843
3844
3845
3846
3847
3848
3849
# File 'lib/QuickBaseClient.rb', line 3843

def getSummaryRecords( dbid, fieldNames,query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   summaryRecords = []
   iterateSummaryRecords(dbid, fieldNames,query, qid, qname, clist, slist, fmt = "structured", options){|summaryRecord|
      summaryRecords << summaryRecord.dup
   }
   summaryRecords
end

#getTableIDs(dbid) ⇒ Object

Get a list of the dbids of the child tables of an application.



971
972
973
974
975
976
977
978
979
980
981
982
983
984
# File 'lib/QuickBaseClient.rb', line 971

def getTableIDs(dbid)
  tableIDs = []
  dbid ||= @dbid
  getSchema(dbid)      
  if @chdbids
     chdbidArray = findElementsByAttributeName( @chdbids, "name" )
     chdbidArray.each{ |chdbid|
        if chdbid.has_text?
           tableIDs << chdbid.text
        end
     }
  end
  tableIDs
end

#getTableName(dbid) ⇒ Object

Get the name of a table given its id.



934
935
936
937
938
939
940
941
# File 'lib/QuickBaseClient.rb', line 934

def getTableName(dbid)
   tableName = nil 
   dbid ||= @dbid
   if getSchema(dbid)
     tableName = getResponseElement( "table/name" ).text
   end
   tableName
end

#getTableNames(dbid, lowercaseOrUpperCase = "") ⇒ Object

Get a list of the names of the child tables of an application.



944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
# File 'lib/QuickBaseClient.rb', line 944

def getTableNames(dbid, lowercaseOrUpperCase = "")
  tableNames = []
  dbid ||= @dbid
  getSchema(dbid)      
  if @chdbids
     chdbidArray = findElementsByAttributeName( @chdbids, "name" )
     chdbidArray.each{ |chdbid|
        if chdbid.has_text?
           dbid = chdbid.text
           getSchema( dbid )
           name = getResponseElement( "table/name" )
           if name and name.has_text?
              if lowercaseOrUpperCase == "lowercase"
                 tableNames << name.text.downcase
              elsif lowercaseOrUpperCase == "uppercase"
                 tableNames << name.text.upcase
              else
                 tableNames << name.text.dup
              end
           end
        end
     }
  end
  tableNames
end

#getUnionRecords(tables, fieldNames) ⇒ Object

Returns an Array of values from the same fields in two or more tables and/or queries. The merged records will be unique. This is similar to an SQL UNION.



3725
3726
3727
3728
3729
3730
3731
# File 'lib/QuickBaseClient.rb', line 3725

def getUnionRecords(tables,fieldNames)
   unionRecords = []
   iterateUnionRecords(tables,fieldNames) { |unionRecord| 
      unionRecords << unionRecord.dup 
   }
   unionRecords
end

#getUserInfo(email = nil) ⇒ Object

API_GetUserInfo



2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
# File 'lib/QuickBaseClient.rb', line 2731

def getUserInfo( email = nil )
  @email = email
  
   if @email and @email.length > 0
     xmlRequestData = toXML( :email, @email) 
     sendRequest( :getUserInfo, xmlRequestData )
   else
     sendRequest( :getUserInfo )
     @login = getResponsePathValue( "user/login" )
   end  
   
   @name = getResponsePathValue( "user/name" )
   @firstName = getResponsePathValue( "user/firstName" )
   @lastName = getResponsePathValue( "user/lastName" )
   @login = getResponsePathValue( "user/login" )
   @email = getResponsePathValue( "user/email" )
   @screenName = getResponsePathValue( "user/screenName" )
   @externalAuth = getResponsePathValue( "user/externalAuth" )
   @user = getResponseElement( :user )
   @userid = @user.attributes["id"] if @user
   
   return self if @chainAPIcalls
   @user
end

#getUserRole(dbid, userid, inclgrps = nil) ⇒ Object

API_GetUserRole



2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
# File 'lib/QuickBaseClient.rb', line 2757

def getUserRole( dbid, userid, inclgrps = nil )
  @dbid, @userid, @inclgrps = dbid, userid, inclgrps
  
  xmlRequestData = toXML( :userid , @userid ) 
  xmlRequestData << toXML( :inclgrps , "1" ) if @inclgrps  
  sendRequest( :getUserRole, xmlRequestData )
  
  @user = getResponseElement( :user )
  @userid = @user.attributes["id"] if @user 
  @username = getResponsePathValue("user/name")
  @role = getResponseElement( "user/roles/role" )
  @roleid = @role.attributes["id"] if @role
  @rolename = getResponsePathValue("user/roles/role/name")
  access = getResponseElement("user/roles/role/access")
  @accessid = access.attributes["id"] if access
  @access = getResponsePathValue("user/roles/role/access") if access
  member = getResponseElement("user/roles/role/member")
  @member_type = member.attributes["type"] if member
  @member = getResponsePathValue("user/roles/role/member") if member
  
  return self if @chainAPIcalls
  return @user, @role
end

#grantedDBs(withembeddedtables = nil, excludeparents = nil, adminOnly = nil, includeancestors = nil, showAppData = nil) ⇒ Object

API_GrantedDBs



2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
# File 'lib/QuickBaseClient.rb', line 2785

def grantedDBs( withembeddedtables = nil, excludeparents = nil, adminOnly = nil, includeancestors = nil, showAppData = nil )

   @withembeddedtables, @excludeparents, @adminOnly, @includeancestors, @showAppData = withembeddedtables, excludeparents, adminOnly, includeancestors, showAppData

   xmlRequestData = ""
   xmlRequestData << toXML( :withembeddedtables, @withembeddedtables ) if @withembeddedtables
   xmlRequestData << toXML( "Excludeparents", @excludeparents ) if @excludeparents
   xmlRequestData << toXML( :adminOnly, @adminOnly ) if @adminOnly
   xmlRequestData << toXML( :includeancestors, @includeancestors ) if @includeancestors
   xmlRequestData << toXML( :showAppData, @showAppData ) if @showAppData

   sendRequest( :grantedDBs, xmlRequestData )

   @databases = getResponseElement( :databases )

   return self if @chainAPIcalls

   if @databases and block_given?
      @databases.each { |element| yield element }
   else
      @databases
   end
end

#importCSVFile(filename, dbid = @dbid, targetFieldNames = nil, validateLines = true) ⇒ Object

Add records from lines in a CSV file. If dbid is not specified, the active table will be used. values in subsequent lines. The file must not contain commas inside field names or values.



4394
4395
4396
# File 'lib/QuickBaseClient.rb', line 4394

def importCSVFile( filename, dbid = @dbid, targetFieldNames = nil, validateLines = true )
   importSVFile( filename, ",", dbid, targetFieldNames, validateLines )
end

#importFromCSV(dbid, records_csv, clist, skipfirst = nil, msInUTC = nil) ⇒ Object

API_ImportFromCSV



2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
# File 'lib/QuickBaseClient.rb', line 2810

def importFromCSV( dbid, records_csv, clist, skipfirst = nil, msInUTC = nil )

   @dbid, @records_csv, @clist, @skipfirst, @msInUTC = dbid, records_csv, clist, skipfirst, msInUTC
   @clist ||= "0"

   xmlRequestData = toXML( :records_csv, @records_csv )
   xmlRequestData << toXML( :clist, @clist )
   xmlRequestData << toXML( :skipfirst, "1" ) if @skipfirst
   xmlRequestData << toXML( :msInUTC, "1" ) if @msInUTC

   sendRequest( :importFromCSV, xmlRequestData )

   @num_recs_added = getResponseValue( :num_recs_added )
   @num_recs_input = getResponseValue( :num_recs_input )
   @num_recs_updated = getResponseValue( :num_recs_updated )
   @rids = getResponseElement( :rids )
   @update_id = getResponseValue( :update_id )

   return self if @chainAPIcalls

   if block_given?
      @rids.each{ |rid| yield rid }
   else
      return @num_recs_added, @num_recs_input, @num_recs_updated, @rids, @update_id
   end
end

#importFromExcel(dbid, excelFilename, lastColumn = 'j', lastDataRow = 0, worksheetNumber = 1, fieldNameRow = 1, firstDataRow = 2, firstColumn = 'a') ⇒ Object

Import data directly from an Excel file into a table The field names are expected to be on line 1 by default. By default, data will be read starting from row 2 and ending on the first empty row. Commas in field values will be converted to semi-colons. e.g. importFromExcel( @dbid, “my_spreadsheet.xls”, ‘h’ )



4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
# File 'lib/QuickBaseClient.rb', line 4312

def importFromExcel( dbid,excelFilename,lastColumn = 'j',lastDataRow = 0,worksheetNumber = 1,fieldNameRow = 1,firstDataRow = 2,firstColumn = 'a')
   num_recs_imported = 0
   if require 'win32ole'
      if FileTest.readable?( excelFilename )
         getSchema( dbid )

         excel = WIN32OLE::new( 'Excel.Application' )
         workbook = excel.Workbooks.Open( excelFilename )
         worksheet = workbook.Worksheets( worksheetNumber )
         worksheet.Select

         fieldNames = nil
         rows = nil
         skipFirstRow = nil

         if fieldNameRow > 0
            fieldNames = worksheet.Range("#{firstColumn}#{fieldNameRow}:#{lastColumn}#{fieldNameRow}")['Value']
            skipFirstRow = true
         end

         if lastDataRow <= 0
            lastDataRow = 1
            while worksheet.Range("#{firstColumn}#{lastDataRow}")['Value']
               lastDataRow += 1  
            end
         end
   
         if firstDataRow > 0 and lastDataRow >= firstDataRow
            rows = worksheet.Range("#{firstColumn}#{firstDataRow}:#{lastColumn}#{lastDataRow}")['Value']
         end
   
         workbook.Close
         excel.Quit

         csvData = ""
         targetFieldIDs = []

         if fieldNames and fieldNames.length > 0
              fieldNames.each{ |fieldNameRow|
               fieldNameRow.each{ |fieldName|
                  if fieldName
                     fieldName.gsub!( ",", ";" ) #strip commas
                     csvData << "#{fieldName},"
                          targetFieldIDs << lookupFieldIDByName( fieldName )
                  else
                     csvData << ","
                  end
               }
               csvData[-1] = "\n"
            }
         end

         rows.each{ |row|
            row.each{ |cell|
              if cell
                  cell = cell.to_s
                  cell.gsub!( ",", ";" ) #strip commas
                  csvData << "#{cell},"
              else
                  csvData << ","
              end
            }
            csvData[-1] = "\n"
          }

          clist = targetFieldIDs.join( '.' )
          num_recs_imported = importFromCSV( dbid, formatImportCSV( csvData ), clist, skipFirstRow )
      else
         raise "importFromExcel: '#{excelFilename}' is not a readable file."
      end
   end
   num_recs_imported
end

#importSVFile(filename, fieldSeparator = ",", dbid = @dbid, targetFieldNames = nil, validateLines = true) ⇒ Object

Add records from lines in a separated values text file, using a specified field name/value separator.

e.g. importSVFile( “contacts.txt”, “::”, “dhnju5y7”, [ “Name”, “Phone”, “Email” ] )

If targetFieldNames is not specified, the first line in the file must be a list of field names that match the values in subsequent lines.

If there are no commas in any of the field names or values, the file will be treated as if it were a CSV file and imported using the QuickBase importFromCSV API call. Otherwise, records will be added using addRecord() for each line. Lines with the wrong number of fields will be skipped. Double-quoted fields can contain the field separator, e.g. f1,“f,2”,f3 Spaces will not be trimmed from the beginning or end of field values.



4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
# File 'lib/QuickBaseClient.rb', line 4416

def importSVFile( filename, fieldSeparator = ",", dbid = @dbid, targetFieldNames = nil, validateLines = true )
   num_recs_imported = 0
   if FileTest.readable?( filename )
      if dbid
         getSchema( dbid )

         targetFieldIDs = []

         if targetFieldNames and targetFieldNames.is_a?( Array )
            targetFieldNames.each{ |fieldName|
               targetFieldIDs << lookupFieldIDByName( fieldName )
            }
            return 0 if targetFieldIDs.length != targetFieldNames.length
         end

         useAddRecord = false
         invalidLines = []
         validLines = []

         linenum = 1
         IO.foreach( filename ){ |line|

            if fieldSeparator != "," and line.index( "," )
               useAddRecord = true
            end

            if linenum == 1 and targetFieldNames.nil?
               targetFieldNames = splitString( line, fieldSeparator )
               targetFieldNames.each{ |fieldName| fieldName.strip!
                  targetFieldIDs << lookupFieldIDByName( fieldName )
               }
               return 0 if targetFieldIDs.length != targetFieldNames.length
            else
               fieldValues = splitString( line, fieldSeparator )
               if !validateLines 
                  validLines[ linenum ] = fieldValues
               elsif validateLines and fieldValues.length == targetFieldIDs.length
                  validLines[ linenum ] = fieldValues
               else
                  invalidLines[ linenum ] = fieldValues
               end
            end

            linenum += 1
         }

         if targetFieldIDs.length > 0 and validLines.length > 0
            if useAddRecord
               validLines.each{ |line|
                  clearFieldValuePairList
                  targetFieldIDs.each_index{ |i|
                     addFieldValuePair( nil, targetFieldIDs[i], nil, line[i] )
                  }
                  addRecord( dbid, @fvlist )
                  num_recs_imported += 1 if @rid
               }
            else
               csvdata = ""
               validLines.each{ |line| 
                  if line 
                     csvdata << line.join( ',' ) 
                     csvdata << "\n"
                  end
               }
               clist = targetFieldIDs.join( '.' )
               num_recs_imported = importFromCSV( dbid, formatImportCSV( csvdata ), clist )
            end
         end

      end
   end
   return num_recs_imported, invalidLines
end

#importTSVFile(filename, dbid = @dbid, targetFieldNames = nil, validateLines = true) ⇒ Object

Import records from a text file in Tab-Separated-Values format.



4399
4400
4401
# File 'lib/QuickBaseClient.rb', line 4399

def importTSVFile( filename, dbid = @dbid, targetFieldNames = nil, validateLines = true )
   importSVFile( filename, "\t", dbid, targetFieldNames, validateLines )
end

#installAppZip(dbid) ⇒ Object

API_InstallAppZip



2841
2842
2843
2844
2845
2846
# File 'lib/QuickBaseClient.rb', line 2841

def installAppZip( dbid )
  @dbid = dbid
  sendRequest( :installAppZip )
  return self if @chainAPIcalls
  @responseCode
end

#isAverageField?(fieldName) ⇒ Boolean

Returns whether a field will show an Average on reports.

Returns:

  • (Boolean)


542
543
544
545
# File 'lib/QuickBaseClient.rb', line 542

def isAverageField?(fieldName)
   does_average = lookupFieldPropertyByName(fieldName,"does_average")
   ret = does_average and does_average == "1"
end

#isBuiltInField?(fid) ⇒ Boolean

Returns whether a field ID is the ID for a built-in field

Returns:

  • (Boolean)


554
555
556
# File 'lib/QuickBaseClient.rb', line 554

def isBuiltInField?( fid )
    fid.to_i < 6
end

#isHTMLRequest?(api_Request) ⇒ Boolean

Returns whether a request will return HTML rather than XML.

Returns:

  • (Boolean)


315
316
317
318
319
320
321
322
# File 'lib/QuickBaseClient.rb', line 315

def isHTMLRequest?( api_Request )
  ret = false
  case api_Request
     when :genAddRecordForm, :genResultsTable, :getRecordAsHTML
        ret = true
  end
  ret
end

#isRecordidField?(fid) ⇒ Boolean

Returns whether a field ID is the ID for the key field in a QuickBase table.

Returns:

  • (Boolean)


548
549
550
551
# File 'lib/QuickBaseClient.rb', line 548

def isRecordidField?( fid )
   fields = lookupFieldsByType( "recordid" )
   (fields and fields.last and fields.last.attributes[ "id" ] == fid)
end

#isTotalField?(fieldName) ⇒ Boolean

Returns whether a field will show a Total on reports.

Returns:

  • (Boolean)


536
537
538
539
# File 'lib/QuickBaseClient.rb', line 536

def isTotalField?(fieldName)
   does_total = lookupFieldPropertyByName(fieldName,"does_total")
   ret = does_total and does_total == "1"
end

#isValidFieldProperty?(property) ⇒ Boolean

Returns whether a given string represents a valid QuickBase field property.

Returns:

  • (Boolean)


1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
# File 'lib/QuickBaseClient.rb', line 1060

def isValidFieldProperty?( property )
   if @validFieldProperties.nil?
      @validFieldProperties = %w{ allow_new_choices allowHTML appears_by_default append_only
           blank_is_zero bold carrychoices comma_start cover_text currency_format currency_symbol
           decimal_places default_kind default_today default_today default_value display_dow 
           display_graphic display_month display_relative display_time display_today display_user display_zone 
           does_average does_total doesdatacopy exact fieldhelp find_enabled foreignkey format formula
           has_extension hours24 label max_versions maxlength nowrap num_lines required sort_as_given 
           source_fid source_fieldname target_dbid target_dbname target_fid target_fieldname unique units
           use_new_window width }
   end
   ret = @validFieldProperties.include?( property )
end

#isValidFieldType?(type) ⇒ Boolean

Returns whether a given string represents a valid QuickBase field type.

Returns:

  • (Boolean)


1047
1048
1049
1050
1051
# File 'lib/QuickBaseClient.rb', line 1047

def isValidFieldType?( type )
   @validFieldTypes ||= %w{ checkbox dblink date duration email file fkey float formula currency 
               lookup multiuserid phone percent rating recordid text timeofday timestamp url userid icalendarbutton }
   @validFieldTypes.include?( type )
end

#iterateDBPages(dbid) ⇒ Object

Loop through the list of Pages for an application



3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
# File 'lib/QuickBaseClient.rb', line 3135

def iterateDBPages(dbid)
    listDBPages(dbid){|page|
         if page.is_a?( REXML::Element) and page.name == "page" 
            @pageid = page.attributes["id"]
            @pagetype = page.attributes["type"]
            @pagename = page.text if page.has_text?
            @page = { "name" => @pagename, "id" => @pageid, "type" => @pagetype }
            yield @page
         end
    }
end

#iterateFilteredRecords(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Same as iterateRecords but with fields optionally filtered by Ruby regular expressions. e.g. iterateFilteredRecords( “dhnju5y7”, [=> “[A-E].+”,“Address”] ) { |values| puts values, values }



3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
# File 'lib/QuickBaseClient.rb', line 3510

def iterateFilteredRecords( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   fields = []
   regexp = {}
   fieldNames.each{|field|
      if field.is_a?(Hash)
         fields << field.keys[0]
         regexp[field.keys[0]] = field.values[0]
      elsif field.is_a?(String)
         fields << field
      end
   }
   regexp = nil if regexp.length == 0
   iterateRecords(dbid,fields,query,qid,qname,clist,slist,fmt,options){|record|
      if regexp
         match = true
         fields.each{|field|
            if regexp[field] 
               unless record[field] and record[field].match(regexp[field])
                  match = false 
                  break
               end
            end
         }
         yield record if match
      else
         yield record
      end
   }
end

#iterateJoinRecords(tablesAndFields) ⇒ Object

Get records from two or more tables and/or queries with the same value in a ‘join’ field and loop through the joined results. The ‘joinfield’ does not have to have the same name in each table. Fields with the same name in each table will be merged, with the value from the last table being assigned. This is similar to an SQL JOIN.



3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
# File 'lib/QuickBaseClient.rb', line 3557

def iterateJoinRecords(tablesAndFields)

   raise "'iterateJoinRecords' must be called with a block." if not block_given?   

   if tablesAndFields and tablesAndFields.is_a?(Array)
      
      # get all the records from QuickBase that we might need - fewer API calls is faster than processing extra data
      tables = []
      numRecords = {}
      tableRecords = {}
      joinfield = {}
      
      tablesAndFields.each{|tableAndFields|
         if tableAndFields and tableAndFields.is_a?(Hash)
            if tableAndFields["dbid"] and tableAndFields["fields"] and tableAndFields["joinfield"]
               if tableAndFields["fields"].is_a?(Array)
                  tables << tableAndFields["dbid"]
                  joinfield[tableAndFields["dbid"]] = tableAndFields["joinfield"]
                  tableAndFields["fields"] << tableAndFields["joinfield"] if not tableAndFields["fields"].include?(tableAndFields["joinfield"])
                  tableRecords[tableAndFields["dbid"]] = getAllValuesForFields( tableAndFields["dbid"],
                                                                                                       tableAndFields["fields"],
                                                                                                       tableAndFields["query"],
                                                                                                       tableAndFields["qid"],
                                                                                                       tableAndFields["qname"],
                                                                                                       tableAndFields["clist"],
                                                                                                       tableAndFields["slist"],
                                                                                                       "structured",
                                                                                                       tableAndFields["options"])
                  numRecords[tableAndFields["dbid"]] = tableRecords[tableAndFields["dbid"]][tableAndFields["fields"][0]].length                                                                                     
               else
                  raise "'tableAndFields[\"fields\"]' must be an Array of fields to retrieve."
               end
            else
               raise "'tableAndFields' is missing one of 'dbid', 'fields' or 'joinfield'."
            end
         else
            raise "'tableAndFields' must be a Hash"
         end
      }
      
      numTables = tables.length
      
      # go through the records in the first table
      (0..(numRecords[tables[0]]-1)).each{|i|
      
         # get the value of the join field in each record of the first table
         joinfieldValue = tableRecords[tables[0]][joinfield[tables[0]]][i]

         # save the other tables' record indices of records containing the joinfield value 
         tableIndices = []
         
         (1..(numTables-1)).each{|tableNum| 
            tableIndices[tableNum] = []
            (0..(numRecords[tables[tableNum]]-1)).each{|j|
               if joinfieldValue == tableRecords[tables[tableNum]][joinfield[tables[tableNum]]][j]
                  tableIndices[tableNum] << j
               end
            }
         }
         
         # if all the tables had at least one matching record, build a joined record and yield it
         buildJoinRecord = true   
         (1..(numTables-1)).each{|tableNum|
            buildJoinRecord = false if not tableIndices[tableNum].length > 0
         }
         
         if buildJoinRecord
         
            joinRecord = {}
            
            tableRecords[tables[0]].each_key{|field|
               joinRecord[field] = tableRecords[tables[0]][field][i]
            }
            
            # nested loops for however many tables we have
            currentIndex = []
            numTables.times{ currentIndex << 0 }
            loop {
               (1..(numTables-1)).each{|tableNum|   
                  index = tableIndices[tableNum][currentIndex[tableNum]]
                  tableRecords[tables[tableNum]].each_key{|field|
                     joinRecord[field] = tableRecords[tables[tableNum]][field][index]
                  }
                  if currentIndex[tableNum] == tableIndices[tableNum].length-1
                     currentIndex[tableNum] = -1
                  else
                     currentIndex[tableNum] += 1
                  end   
                  if tableNum == numTables-1
                     yield joinRecord
                  end
               }
               finishLooping = true
               (1..(numTables-1)).each{|tableNum|
                  finishLooping = false if currentIndex[tableNum] != -1
               }
               break if finishLooping
            }
         end
      }
   else
      raise "'tablesAndFields' must be Array of Hashes of table query parameters."
   end
end

#iterateRecordInfos(dbid, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Loop through a list of records returned from a query. Each record will contain all the fields with values formatted for readability by QuickBase via API_GetRecordInfo.



3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
# File 'lib/QuickBaseClient.rb', line 3853

def iterateRecordInfos(dbid, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil)
    getSchema(dbid)
    recordIDFieldName = lookupFieldNameFromID("3")
    fieldNames = getFieldNames
    fieldIDs = {}
    fieldNames.each{|name|fieldIDs[name] = lookupFieldIDByName(name)}
    iterateRecords(dbid, [recordIDFieldName], query, qid, qname, clist, slist, fmt, options){|r|
      getRecordInfo(dbid,r[recordIDFieldName])
      fieldValues = {}
      fieldIDs.each{|k,v| 
        fieldValues[k] = getFieldDataPrintableValue(v)
        fieldValues[k] ||= getFieldDataValue(v)
      }        
      yield fieldValues
    }
end

#iterateRecords(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Loop through records returned from a query. Each record is a field+value Hash. e.g. iterateRecords( “dhnju5y7”, [“Name”,“Address”] ) { |values| puts values, values }



3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
# File 'lib/QuickBaseClient.rb', line 3489

def iterateRecords( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   if block_given?   
      queryResults = getAllValuesForFields(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options)
      if queryResults
         numRecords = 0
         numRecords = queryResults[fieldNames[0]].length if queryResults[fieldNames[0]]
         (0..(numRecords-1)).each{|recNum|
            recordHash = {}
            fieldNames.each{|fieldName|
               recordHash[fieldName]=queryResults[fieldName][recNum]
            }
            yield recordHash
         }
      end
   else
      raise "'iterateRecords' must be called with a block."
   end
end

#iterateSummaryRecords(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) {|summaryRecord| ... } ⇒ Object

(The QuickBase API does not supply a method for this.) Loop through summary records, like the records in a QuickBase Summary report. Fields with ‘Total’ and ‘Average’ checked in the target table will be summed and/or averaged. Other fields with duplicate values will be merged into a single ‘record’. The results will be sorted by the merged fields, in ascending order. e.g. -

iterateSummaryRecords( "vavaa4sdd", ["Customer", "Amount"] ) {|record| 
    puts "Customer: #{record['Customer']}, Amount #{record['Amount']}
}

would print the total Amount for each Customer, sorted by Customer.

Yields:

  • (summaryRecord)


3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
# File 'lib/QuickBaseClient.rb', line 3743

def iterateSummaryRecords( dbid, fieldNames,query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )

   getSchema(dbid)
   
   slist = ""
   summaryRecord = {}
   doesTotal = {}
   doesAverage = {}
   summaryField = {}
   fieldType = {}
   
   fieldNames.each{ |fieldName|
      fieldType[fieldName] = lookupFieldTypeByName(fieldName)
      isSummaryField = true     
      doesTotal[fieldName] = isTotalField?(fieldName)
      doesAverage[fieldName] = isAverageField?(fieldName)
      if doesTotal[fieldName] 
         summaryRecord["#{fieldName}:Total"] = 0 
         isSummaryField = false
      end   
      if doesAverage[fieldName] 
         summaryRecord["#{fieldName}:Average"] = 0 
         isSummaryField = false
      end
      if isSummaryField
         summaryField[fieldName] = true
         fieldID = lookupFieldIDByName(fieldName)  
         slist << "#{fieldID}."
      end
   }
   slist[-1] = ""
   
   count = 0
   
   iterateRecords( dbid, fieldNames, query, qid, qname, clist, slist, fmt, options) { |record|
      
      summaryFieldValuesHaveChanged = false
      fieldNames.each{ |fieldName| 
         if summaryField[fieldName] and record[fieldName] != summaryRecord[fieldName]   
            summaryFieldValuesHaveChanged = true
            break
         end
      }

      if summaryFieldValuesHaveChanged
      
         summaryRecord["Count"] = count
         fieldNames.each{|fieldName| 
            if doesTotal[fieldName] 
               summaryRecord["#{fieldName}:Total"] = formatFieldValue(summaryRecord["#{fieldName}:Total"],fieldType[fieldName]) 
            end   
            if doesAverage[fieldName]
               summaryRecord["#{fieldName}:Average"] = summaryRecord["#{fieldName}:Average"]/count if count > 0
               summaryRecord["#{fieldName}:Average"] = formatFieldValue(summaryRecord["#{fieldName}:Average"],fieldType[fieldName])
            end   
         }
         
         yield summaryRecord 
         
         count=0
         summaryRecord = {}
         fieldNames.each{|fieldName| 
            if doesTotal[fieldName] 
               summaryRecord["#{fieldName}:Total"] = 0 
            end   
            if doesAverage[fieldName] 
               summaryRecord["#{fieldName}:Average"] = 0 
            end   
         }
      end
      
      count += 1
      fieldNames.each{|fieldName| 
            if doesTotal[fieldName] 
               summaryRecord["#{fieldName}:Total"] += record[fieldName].to_i 
            end
            if doesAverage[fieldName] 
               summaryRecord["#{fieldName}:Average"] += record[fieldName].to_i 
            end
            if summaryField[fieldName]               
               summaryRecord[fieldName] = record[fieldName]
            end   
      }
   }
   
   summaryRecord["Count"] = count
   fieldNames.each{|fieldName| 
      if doesTotal[fieldName] 
         summaryRecord["#{fieldName}:Total"] = formatFieldValue(summaryRecord["#{fieldName}:Total"],fieldType[fieldName]) 
      end   
      if doesAverage[fieldName] 
         summaryRecord["#{fieldName}:Average"] = summaryRecord["#{fieldName}:Average"]/count
         summaryRecord["#{fieldName}:Average"] = formatFieldValue(summaryRecord["#{fieldName}:Average"],fieldType[fieldName])
      end   
   }
   yield summaryRecord 

end

#iterateUnionRecords(tables, fieldNames) ⇒ Object

Get values from the same fields in two or more tables and/or queries and loop through the merged results. The merged records will be unique. This is similar to an SQL UNION.



3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
# File 'lib/QuickBaseClient.rb', line 3676

def iterateUnionRecords(tables,fieldNames)

   raise "'iterateUnionRecords' must be called with a block." if not block_given?   

   if tables and tables.is_a?(Array)
      if fieldNames and fieldNames.is_a?(Array)
         tableRecords = []
         tables.each{|table|
            if table and table.is_a?(Hash) and table["dbid"]
               tableRecords << getAllValuesForFields( table["dbid"],
                                                                     fieldNames,
                                                                     table["query"],
                                                                     table["qid"],
                                                                     table["qname"],
                                                                     table["clist"],
                                                                     table["slist"],
                                                                     "structured",
                                                                     table["options"])
            else
               raise "'table' must be a Hash that includes an entry for 'dbid'."
            end
         }
      else
         raise "'fieldNames' must be an Array of field names valid in all the tables."
      end
   else
      raise "'tables' must be an Array of Hashes."
   end
   usedRecords = {}
   tableRecords.each{|queryResults|
      if queryResults
         numRecords = 0
         numRecords = queryResults[fieldNames[0]].length if queryResults[fieldNames[0]]
         (0..(numRecords-1)).each{|recNum|
            recordHash = {}
            fieldNames.each{|fieldName|
               recordHash[fieldName]=queryResults[fieldName][recNum]
            }
            if not usedRecords[recordHash.values.join]
               usedRecords[recordHash.values.join]=true
               yield recordHash
            end
         }
      end
   }
end

#listDBPages(dbid) ⇒ Object

API_ListDBPages



2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
# File 'lib/QuickBaseClient.rb', line 2849

def listDBPages(dbid)
  @dbid = dbid
  
  sendRequest( :listDBPages )
  
  @pages = getResponseValue( :pages )
  return self if @chainAPIcalls
  if block_given?
    if @pages 
       @pages.each{ |element| yield element }
    else
       yield nil
    end  
  else
    @pages
  end        
end

#logToFile(filename) ⇒ Object

Log requests to QuickBase and responses from QuickBase in a file. Useful for utilities that run unattended.



5008
5009
5010
# File 'lib/QuickBaseClient.rb', line 5008

def logToFile( filename )
   setLogger( Logger.new( filename ) )
end

#lookupBaseFieldTypeByName(fieldName) ⇒ Object

Get a field’s base type using its name.



1363
1364
1365
1366
1367
1368
1369
# File 'lib/QuickBaseClient.rb', line 1363

def lookupBaseFieldTypeByName( fieldName )
   type = ""
   fid = lookupFieldIDByName( fieldName )
   field = lookupField( fid ) if fid
   type = field.attributes[ "base_type" ] if field
   type
end

#lookupChdbid(tableName, dbid = nil) ⇒ Object

Makes the table with the specified name the ‘active’ table, and returns the id from the table.



907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
# File 'lib/QuickBaseClient.rb', line 907

def lookupChdbid( tableName, dbid=nil )
   getSchema(dbid) if dbid
   unmodifiedTableName = tableName.dup
   @chdbid = findElementByAttributeValue( @chdbids, "name", formatChdbidName( tableName ) )
   if @chdbid
      @dbid = @chdbid.text
      return @dbid
   end
   if @chdbids
      chdbidArray = findElementsByAttributeName( @chdbids, "name" )
      chdbidArray.each{ |chdbid|
         if chdbid.has_text?
            dbid = chdbid.text
            getSchema( dbid )
            name = getResponseElement( "table/name" )
            if name and name.has_text? and name.text.downcase == unmodifiedTableName.downcase
               @chdbid = chdbid
               @dbid = dbid
               return @dbid
            end
         end
      }
   end
   nil
end

#lookupField(fid) ⇒ Object

Returns the XML element for a field definition. getSchema() or doQuery() should be called before this.



753
754
755
# File 'lib/QuickBaseClient.rb', line 753

def lookupField( fid )
   @field = findElementByAttributeValue( @fields, "id", fid )
end

#lookupFieldData(fid) ⇒ Object

Returns the XML element for a field returned by a getRecordInfo call.



758
759
760
761
762
763
764
765
766
767
768
769
770
771
# File 'lib/QuickBaseClient.rb', line 758

def lookupFieldData( fid )
   @field_data = nil
   if @field_data_list
      @field_data_list.each{ |field|
         if field and field.is_a?( REXML::Element ) and field.has_elements?
            fieldid = field.elements[ "fid" ]
            if fieldid and fieldid.has_text? and fieldid.text == fid.to_s
              @field_data = field
            end
         end
       }
   end
   @field_data
end

#lookupFieldIDByName(fieldName, dbid = nil) ⇒ Object

Gets the ID for a field using the QuickBase field label. getSchema() or doQuery() should be called before this if you don’t supply the dbid.



801
802
803
804
805
806
807
808
809
810
811
812
813
# File 'lib/QuickBaseClient.rb', line 801

def lookupFieldIDByName( fieldName, dbid=nil )
  getSchema(dbid) if dbid
  ret = nil
  if @fields
     @fields.each_element_with_attribute( "id" ){ |f|
        if f.name == "field" and f.elements[ "label" ].text.downcase == fieldName.downcase
           ret = f.attributes[ "id" ].dup 
           break
        end
     }
  end
  ret
end

#lookupFieldName(element) ⇒ Object

Returns the name of field given an “fid” XML element.



491
492
493
494
495
496
497
498
499
500
501
502
503
# File 'lib/QuickBaseClient.rb', line 491

def lookupFieldName( element )
   name = ""
   if element and element.is_a?( REXML::Element )
      name = element.name
      if element.name == "f" and @fields
         fid = element.attributes[ "id" ]
         field = lookupField( fid ) if fid
         label = field.elements[ "label" ] if field
         name = label.text if label
      end
   end
   name
end

#lookupFieldNameFromID(fid, dbid = nil) ⇒ Object

Gets a field name (i.e. QuickBase field label) using a field ID. getSchema() or doQuery() should be called before this if you don’t supply the dbid.



479
480
481
482
483
484
485
486
487
488
# File 'lib/QuickBaseClient.rb', line 479

def lookupFieldNameFromID( fid, dbid=nil )
  getSchema(dbid) if dbid
   name = nil
   if @fields
         field = lookupField( fid ) if fid
         label = field.elements[ "label" ] if field
         name = label.text if label
   end
   name
end

#lookupFieldPropertyByName(fieldName, property) ⇒ Object

Returns the value of a field property, or nil.



524
525
526
527
528
529
530
531
532
533
# File 'lib/QuickBaseClient.rb', line 524

def lookupFieldPropertyByName( fieldName, property )
   theproperty = nil
   if isValidFieldProperty?(property)
      fid = lookupFieldIDByName( fieldName )
      field = lookupField( fid ) if fid
      theproperty = field.elements[ property ] if field
      theproperty = theproperty.text if theproperty and theproperty.has_text?
   end
   theproperty
end

#lookupFieldsByType(type) ⇒ Object

Returns an array of XML field elements matching a QuickBase field type.



519
520
521
# File 'lib/QuickBaseClient.rb', line 519

def lookupFieldsByType( type )
   findElementsByAttributeValue( @fields, "field_type", type )
end

#lookupFieldType(element) ⇒ Object

Returns a QuickBase field type, given an XML “fid” element.



506
507
508
509
510
511
512
513
514
515
516
# File 'lib/QuickBaseClient.rb', line 506

def lookupFieldType( element )
   type = ""
   if element and element.is_a?( REXML::Element )
      if element.name == "f" and @fields
         fid = element.attributes[ "id" ]
         field = lookupField( fid ) if fid
         type = field.attributes[ "field_type" ] if field
      end
   end
   type
end

#lookupFieldTypeByName(fieldName) ⇒ Object

Get a field’s type using its name.



1372
1373
1374
1375
1376
1377
1378
# File 'lib/QuickBaseClient.rb', line 1372

def lookupFieldTypeByName( fieldName )
   type = ""
   fid = lookupFieldIDByName( fieldName )
   field = lookupField( fid ) if fid
   type = field.attributes[ "field_type" ] if field
   type
end

#lookupQuery(qid, dbid = nil) ⇒ Object

Returns the XML element for a query with the specified ID. getSchema() or doQuery() should be called before this if you don’t supply the dbid.



879
880
881
882
# File 'lib/QuickBaseClient.rb', line 879

def lookupQuery( qid, dbid=nil )
   getSchema(dbid) if dbid
   @query = findElementByAttributeValue( @queries, "id", qid )
end

#lookupQueryByName(name, dbid = nil) ⇒ Object

Returns the XML element for a query with the specified ID. getSchema() or doQuery() should be called before this if you don’t supply the dbid.



886
887
888
889
890
891
892
893
894
895
896
# File 'lib/QuickBaseClient.rb', line 886

def lookupQueryByName( name, dbid=nil  )
   getSchema(dbid) if dbid
   if @queries
      @queries.each_element_with_attribute( "id" ){|q|
         if q.name == "query" and q.elements["qyname"].text.downcase == name.downcase
            return q
         end
      }
   end
   nil
end

#lookupRecord(rid) ⇒ Object

Returns the XML element for a record with the specified ID.



873
874
875
# File 'lib/QuickBaseClient.rb', line 873

def lookupRecord( rid )
   @record = findElementByAttributeValue( @records, "id", rid )
end

#makeCSVFileForReport(filename, dbid = @dbid, query = nil, qid = nil, qname = nil) ⇒ Object

Create a CSV file using the records for a Report.



4554
4555
4556
4557
# File 'lib/QuickBaseClient.rb', line 4554

def makeCSVFileForReport(filename,dbid=@dbid,query=nil,qid=nil,qname=nil)
   csv = getCSVForReport(dbid,query,qid,qname)
   File.open(filename,"w"){|f|f.write(csv || "")}
end

#makeSVFile(filename, fieldSeparator = ",", dbid = @dbid, query = nil, qid = nil, qname = nil) ⇒ Object

Make a CSV file using the results of a query. Specify a different separator in the second paramater. Fields containing the separator will be double-quoted.

e.g. makeSVFile( “contacts.txt”, “t”, nil ) e.g. makeSVFile( “contacts.txt”, “,”, “dhnju5y7”, nil, nil, “List Changes” )



4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
# File 'lib/QuickBaseClient.rb', line 4496

def makeSVFile( filename, fieldSeparator = ",", dbid = @dbid, query = nil, qid = nil, qname = nil )
   File.open( filename, "w" ) { |file|

      if dbid
         doQuery( dbid, query, qid, qname )
      end

      if @records and @fields

         # ------------- write field names on first line ----------------
         output = ""
         fieldNamesBlock = proc { |element|
            if element.is_a?(REXML::Element) and element.name == "label" and element.has_text?
               output << "#{element.text}#{fieldSeparator}"
            end
         }
         processChildElements( @fields, true, fieldNamesBlock )

         output << "\n"
         output.sub!( "#{fieldSeparator}\n", "\n" )
         file.write( output )

         # ------------- write records ----------------
         output = ""
         valuesBlock = proc { |element|
            if element.is_a?(REXML::Element)
               if element.name == "record"
                  if output.length > 1
                     output << "\n"
                     output.sub!( "#{fieldSeparator}\n", "\n" )
                     file.write( output )
                  end
                  output = ""
               elsif  element.name == "f"
                  if  element.has_text?
                     text = element.text
                     text.gsub!("<BR/>","\n")
                     text = "\"#{text}\"" if text.include?( fieldSeparator )
                     output << "#{text}#{fieldSeparator}"
                  else
                     output << "#{fieldSeparator}"
                  end
               end
            end
         }

         processChildElements( @records, false, valuesBlock )
         if output.length > 1
           output << "\n"
           output.sub!( "#{fieldSeparator}\n", "\n" )
           file.write( output )
           output = ""
         end
      end
   }
end

#max(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Find the highest value for one or more fields in the records returned by a query. e.g. maximumsHash = max(“dfdfafff”,[“Date Sent”,“Quantity”,“Part Name”])



4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
# File 'lib/QuickBaseClient.rb', line 4000

def max( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   max = {}
   hasValues = false
   iterateRecords(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options){|record|
      fieldNames.each{|field|
         value = record[field]
         if value
            baseFieldType = lookupBaseFieldTypeByName(field)
            case baseFieldType
               when "int32","int64","bool" 
                  value = record[field].to_i
               when "float"   
                  value = record[field].to_f
            end
         end
         if max[field].nil? or (value and value > max[field])
            max[field] = value
            hasValues = true
         end
      }
   }
   max = nil if not hasValues
   max
end

#min(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Find the lowest value for one or more fields in the records returned by a query. e.g. minimumsHash = min(“dfdfafff”,[“Date Sent”,“Quantity”,“Part Name”])



3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
# File 'lib/QuickBaseClient.rb', line 3973

def min( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   min = {}
   hasValues = false
   iterateRecords(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options){|record|
      fieldNames.each{|field|
         value = record[field]
         if value
            baseFieldType = lookupBaseFieldTypeByName(field)
            case baseFieldType
               when "int32","int64","bool" 
                  value = record[field].to_i
               when "float"   
                  value = record[field].to_f
            end
         end
         if min[field].nil? or  (value and value < min[field])
            min[field] = value
            hasValues = true
         end
      }
   }
   min = nil if not hasValues
   min
end

#obStatusObject

API_obstatus: get the status of the QuickBase server.



2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
# File 'lib/QuickBaseClient.rb', line 2707

def obStatus
  sendRequest( :obStatus )
  @serverVersion = getResponseElement("version")
  @serverUsers = getResponseElement("users")
  @serverGroups = getResponseElement("groups")
  @serverDatabases = getResponseElement("databases")
  @serverUptime = getResponseElement("uptime")
  @serverUpdays = getResponseElement("updays")
  @serverStatus = {
  "version" => @serverVersion.text,
  "users" => @serverUsers.text, 
  "groups" => @serverGroups.text, 
  "databases" => @serverDatabases.text, 
  "uptime" => @serverUptime.text, 
  "updays" => @serverUpdays.text 
  } 
end

#onChangedDbidObject

Reset appropriate member variables after a different table is accessed.



1579
1580
1581
1582
1583
1584
# File 'lib/QuickBaseClient.rb', line 1579

def onChangedDbid
   _getDBInfo
   _getSchema
   resetrid
   resetfid
end

#parseResponseXML(xml) ⇒ Object

Called by processResponse to put the XML from QuickBase into a DOM tree using the REXML module that comes with Ruby.



409
410
411
412
413
414
415
416
417
# File 'lib/QuickBaseClient.rb', line 409

def parseResponseXML( xml )
   if xml
      xml.gsub!( "\r", "" ) if @ignoreCR and @ignoreCR == true
      xml.gsub!( "\n", "" ) if @ignoreLF and @ignoreLF == true
      xml.gsub!( "\t", "" ) if @ignoreTAB and @ignoreTAB == true
      xml.gsub!( "<BR/>", "&lt;BR/&gt;" ) if @escapeBR
      @qdbapi = @responseXMLdoc = REXML::Document.new( xml )
   end
end

#percent(inputValues) ⇒ Object

Given an array of two numbers, return the second number as a percentage of the first number.



4141
4142
4143
4144
4145
4146
4147
4148
4149
# File 'lib/QuickBaseClient.rb', line 4141

def percent( inputValues )
   raise "'inputValues' must not be nil" if inputValues.nil?
   raise "'inputValues' must be an Array" if not inputValues.is_a?(Array)
   raise "'inputValues' must have at least two elements" if inputValues.length < 2
   total = inputValues[0].to_f
   total = 1.0 if total == 0.00
   value = inputValues[1].to_f
   ((value/total)*100)
end

#prependAPI?(request) ⇒ Boolean

Returns whether to prepend ‘API_’ to request string

Returns:

  • (Boolean)


325
326
327
328
329
# File 'lib/QuickBaseClient.rb', line 325

def prependAPI?( request )
  ret = true
  ret = false if request.to_s.include?("API_") or request.to_s.include?("QBIS_")
  ret
end

#printChildElements(element, indent = 0) ⇒ Object

Recursive method to print a simplified (yaml-like) tree of the XML returned by QuickBase.

Translates field IDs into field names. Very useful during debugging.



583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
# File 'lib/QuickBaseClient.rb', line 583

def printChildElements( element, indent = 0 )

   indentation = ""
   indent.times{ indentation << " " } if indent > 0

   if element and element.is_a?( REXML::Element ) and element.has_elements?

      attributes = getAttributeString( element )
      name = lookupFieldName( element )
      puts "#{indentation}#{name} #{attributes}:"

      element.each { |element|
         if element.is_a?( REXML::Element ) and element.has_elements?
            printChildElements( element, (indent+1) )
         elsif element.is_a?( REXML::Element ) and element.has_text?
            attributes = getAttributeString( element )
            name = lookupFieldName( element )
            text = formatFieldValue( element.text, lookupFieldType( element ) )
            puts " #{indentation}#{name} #{attributes} = #{text}"
         end
      }
   elsif element and element.is_a?( Array )
      element.each{ |e| printChildElements( e ) }
   end
   self
end

#printLastErrorObject

Prints the error info, if any, for the last request sent to QuickBase.



371
372
373
374
375
376
377
378
# File 'lib/QuickBaseClient.rb', line 371

def printLastError
   if @lastError
      puts
      puts "Last error: ------------------------------------------"
      p @lastError
   end
   self
end

#printRequest(url, headers, xml) ⇒ Object

Called by sendRequest if @printRequestsAndResponses is true



352
353
354
355
356
357
358
359
# File 'lib/QuickBaseClient.rb', line 352

def printRequest( url, headers, xml )
   puts
   puts "Request: -------------------------------------------"
   p url if url
   p headers if headers
   p xml if xml
   self
end

#printResponse(code, xml) ⇒ Object

Called by sendRequest if @printRequestsAndResponses is true



362
363
364
365
366
367
368
# File 'lib/QuickBaseClient.rb', line 362

def printResponse( code, xml )
   puts
   puts "Response: ------------------------------------------"
   p code if code
   p xml if xml
   self
end

#processChildElements(element, leafElementsOnly, block) ⇒ Object

Recursive method to process leaf and (optionally) parent elements of any XML element returned by QuickBase.



640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
# File 'lib/QuickBaseClient.rb', line 640

def processChildElements( element, leafElementsOnly, block )
  if element
     if element.is_a?( Array )
        element.each{ |e| processChildElements( e, leafElementsOnly, block ) }
     elsif element.is_a?( REXML::Element ) and element.has_elements?
        block.call( element ) if not leafElementsOnly
        element.each{ |e|
           if e.is_a?( REXML::Element ) and e.has_elements?
             processChildElements( e, leafElementsOnly, block )
           else
             block.call( e )
           end
        }
     end
  end
end

#processResponse(responseXML) ⇒ Object

Except for requests that return HTML, processes the XML responses returned from QuickBase.



381
382
383
384
385
386
387
388
389
# File 'lib/QuickBaseClient.rb', line 381

def processResponse( responseXML )

   fire( "onProcessResponse" )

   parseResponseXML( responseXML )
   @ticket ||= getResponseValue( :ticket )
   @udata = getResponseValue( :udata )
   getErrorInfoFromResponse
end

#processRESTFieldNameOrRecordKeyRequest(dbid, fieldNameOrRecordKey) ⇒ Object



3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
# File 'lib/QuickBaseClient.rb', line 3939

def processRESTFieldNameOrRecordKeyRequest(dbid,fieldNameOrRecordKey)
  returnvalue = ""
  requestType = ""
  getSchema(dbid)
  fieldNames = getFieldNames
  if fieldNames.include?(fieldNameOrRecordKey) # name of a field in the table
    requestType = "fieldName"
    iterateRecordInfos(dbid){|r| 
       returnvalue << "#{fieldNameOrRecordKey}:#{r[fieldNameOrRecordKey]}\n" if r
    }
  elsif @key_fid # key field value
    requestType = "keyFieldValue"
    iterateRecordInfos(dbid,"{'#{@key_fid}'.EX.'#{fieldNameOrRecordKey}'}"){|r|
      r.each{|k,v| returnvalue << "#{k}:#{v}\n"} if r
    }
  elsif fieldNameOrRecordKey.match(/[0-9]+/) # guess that this is a Record #ID value
    requestType = "recordID"
    iterateRecordInfos(dbid,"{'3'.EX.'#{fieldNameOrRecordKey}'}"){|r|
      r.each{|k,v| returnvalue << "#{k}:#{v}\n"} if r
    }
  else # guess that the first non-built-in field is a secondary non-numeric key field
    requestType = "field6"
    iterateRecordInfos(dbid,"{'6'.TV.'#{fieldNameOrRecordKey}'}"){|r|
      if r
        returnvalue << "Record:\n"
        r.each{|k,v| returnvalue << "#{k}:#{v}\n"}
      end
    }
  end
  return returnvalue, requestType
end

#processRESTRequest(requestString) ⇒ Object

Returns table or record values using REST syntax. e.g. - puts processRESTRequest(“8emtadvk/24105”) # prints record 24105 from Community Forum puts processRESTRequest(“8emtadvk”) # prints name of table with dbid of ‘8emtadvk’ puts qbc.processRESTRequest(“6ewwzuuj/Function Name”) # prints list of QuickBase Functions



3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
# File 'lib/QuickBaseClient.rb', line 3874

def processRESTRequest(requestString)
  ret = nil
  request = requestString.dup
  request.gsub!("//","ESCAPED/")
  requestParts = request.split('/')
  requestParts.each{|part| part.gsub!("ESCAPED/","//") }
  applicationName = nil
  applicationDbid= nil
  tableName = nil
  tableDbid = nil
  requestType = ""
  
  requestParts.each_index{|i|
    if i == 0
      dbid = findDBByName(requestParts[0].dup)
      if dbid
        applicationDbid= dbid.dup # app/
        applicationName = requestParts[0].dup
        ret = "dbid:#{applicationDbid}"
      elsif QuickBase::Misc.isDbidString?(requestParts[0].dup) and getSchema(requestParts[0].dup)
        tableDbid = requestParts[0].dup # dbid/
        tableName = getTableName(tableDbid)
        ret = "table:#{tableName}"
      else
        ret = "Unable to process '#{requestParts[0].dup}' part of '#{requestString}'." 
      end
    elsif i == 1
      if applicationDbid
        getSchema(applicationDbid)
        tableDbid = lookupChdbid(requestParts[1].dup)
        if tableDbid # app/chdbid/
          tableName = requestParts[1].dup
          ret = "dbid:#{tableDbid}"
        else
          getSchema(applicationDbid.dup)
          tableDbid = lookupChdbid(applicationName.dup)
          if tableDbid # app+appchdbid/
            tableName = applicationName 
            ret, requestType = processRESTFieldNameOrRecordKeyRequest(tableDbid,requestParts[1].dup)
          else
            ret = "Unable to process '#{requestParts[1].dup}' part of '#{requestString}'." 
          end  
        end
      elsif tableDbid
        ret, requestType = processRESTFieldNameOrRecordKeyRequest(tableDbid,requestParts[1].dup)
      else
        ret = "Unable to process '#{requestParts[1].dup}' part of '#{requestString}'." 
      end        
    elsif (i==2 or i == 3) and ["keyFieldValue","recordID"].include?(requestType)
      fieldValues = ret.split(/\n/)
      fieldValues.each{|fieldValue|
        if fieldValue.index("#{requestParts[i].dup}:") == 0
          ret = fieldValue.gsub("#{requestParts[i].dup}:","")
          break
        end
      }
    elsif i == 2 and tableDbid
      ret, requestType = processRESTFieldNameOrRecordKeyRequest(tableDbid,requestParts[2].dup)
    else
      ret = "Unable to process '#{requestString}'." 
    end  
  }
  ret
end

#provisionUser(dbid, roleid, email, fname, lname) ⇒ Object

API_ProvisionUser



2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
# File 'lib/QuickBaseClient.rb', line 2871

def provisionUser( dbid, roleid, email, fname, lname )
   @dbid, @roleid, @email, @fname, @lname = dbid, roleid, email, fname, lname 
   
   xmlRequestData = toXML( :roleid, @roleid)
   xmlRequestData << toXML( :email, @email )
   xmlRequestData << toXML( :fname, @fname )
   xmlRequestData << toXML( :lname, @lname )
   
   sendRequest( :provisionUser, xmlRequestData )
   
   @userid = getResponseValue( :userid )
   
   return self if @chainAPIcalls
   @userid
end

#purgeRecords(dbid, query = nil, qid = nil, qname = nil) ⇒ Object

API_PurgeRecords



2891
2892
2893
2894
2895
2896
2897
2898
2899
# File 'lib/QuickBaseClient.rb', line 2891

def purgeRecords( dbid, query = nil, qid = nil, qname = nil )
   @dbid = dbid
   xmlRequestData = getQueryRequestXML( query, qid, qname )
   sendRequest( :purgeRecords, xmlRequestData )
   @num_records_deleted = getResponseValue( :num_records_deleted )

   return self if @chainAPIcalls
   @num_records_deleted
end

#removeFileAttachment(dbid, rid, fileAttachmentFieldName) ⇒ Object

Remove the file from a File Attachment field in an existing record. e.g. removeFileAttachment( “bdxxxibz4”, “6”, “Document” )



4634
4635
4636
# File 'lib/QuickBaseClient.rb', line 4634

def removeFileAttachment( dbid, rid , fileAttachmentFieldName )
   updateFile( dbid, rid, "delete", fileAttachmentFieldName )
end

#removeUserFromRole(dbid, userid, roleid) ⇒ Object

API_RemoveUserFromRole



2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
# File 'lib/QuickBaseClient.rb', line 2905

def removeUserFromRole( dbid, userid, roleid )
   @dbid, @userid, @roleid = dbid, userid, roleid 
   
   xmlRequestData = toXML( :userid, @userid )
   xmlRequestData << toXML( :roleid, @roleid )
   
   sendRequest( :removeUserFromRole, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#renameApp(dbid, newappname) ⇒ Object

API_RenameApp



2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
# File 'lib/QuickBaseClient.rb', line 2921

def renameApp( dbid, newappname )
   @dbid, @newappname = dbid, newappname 
   
   xmlRequestData = toXML( :newappname , @newappname )
   
   sendRequest( :renameApp, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#replaceFieldValuePair(name, fid, filename, value) ⇒ Object

Replaces a field value in the list of fields to be set by the next addRecord() or editRecord() call to QuickBase.



1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
# File 'lib/QuickBaseClient.rb', line 1171

def replaceFieldValuePair( name, fid, filename, value )
   if @fvlist
      name = name.downcase if name
      name = name.gsub( /\W/, "_" )  if name
      @fvlist.each_index{|i|
         if (name and @fvlist[i].include?("<field name='#{name}'")) or
            (fid and @fvlist[i].include?("<field fid='#{fid}'"))
            @fvlist[i] = FieldValuePairXML.new( self, name, fid, filename, value ).to_s
            break
         end
      } 
   end
   @fvlist
end

#resetErrorInfoObject

Resets error info before QuickBase requests are sent.



280
281
282
283
284
285
286
287
# File 'lib/QuickBaseClient.rb', line 280

def resetErrorInfo
   @errcode = "0"
   @errtext = ""
   @errdetail = ""
   @lastError = ""
   @requestSucceeded = true
   self
end

#resetfidObject

Set the @fid (‘active’ field ID) member variable to nil.



1574
1575
1576
# File 'lib/QuickBaseClient.rb', line 1574

def resetfid
   @fid = nil
end

#resetridObject

Set the @rid (‘active’ record ID) member variable to nil.



1569
1570
1571
# File 'lib/QuickBaseClient.rb', line 1569

def resetrid
   @rid = nil
end

#runImport(dbid, id) ⇒ Object

API_RunImport



2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
# File 'lib/QuickBaseClient.rb', line 2936

def runImport( dbid, id )
   @dbid, @id = dbid, id
   
   xmlRequestData = toXML( :id , @id )
   
   sendRequest( :runImport, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#sendInvitation(dbid, userid, usertext = "Welcome to my application!") ⇒ Object

API_SendInvitation



2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
# File 'lib/QuickBaseClient.rb', line 2951

def sendInvitation( dbid, userid, usertext = "Welcome to my application!" )
   @dbid, @userid, @usertext = dbid, userid, usertext 
   
   xmlRequestData = toXML( :userid, @userid )
   xmlRequestData << toXML( :usertext, @usertext )
   
   sendRequest( :sendInvitation, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#sendRequest(api_Request, xmlRequestData = nil) ⇒ Object

Sends requests to QuickBase and processes the reponses.



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
# File 'lib/QuickBaseClient.rb', line 204

def sendRequest( api_Request, xmlRequestData = nil )

   fire( "onSendRequest" )

   resetErrorInfo

   # set up the request
   getDBforRequestURL( api_Request )
   getAuthenticationXMLforRequest( api_Request )
   isHTMLRequest = isHTMLRequest?( api_Request )
   api_Request = "API_" + api_Request.to_s if prependAPI?( api_Request )

   xmlRequestData << toXML( :udata, @udata ) if @udata and @udata.length > 0
   xmlRequestData << toXML( :rdr, @rdr ) if @rdr and @rdr.length > 0
   xmlRequestData << toXML( :xsl, @xsl ) if @xsl and @xsl.length > 0
   xmlRequestData << toXML( :encoding, @encoding ) if @encoding and @encoding.length > 0

   if xmlRequestData
      @requestXML = toXML( :qdbapi, @authenticationXML + xmlRequestData )
   else
      @requestXML = toXML( :qdbapi, @authenticationXML )
   end

   @requestHeaders = @standardRequestHeaders
   @requestHeaders["Content-Length"] = "#{@requestXML.length}"
   @requestHeaders["QUICKBASE-ACTION"] = api_Request
   @requestURL = "#{@qbhost}#{@dbidForRequestURL}"

   printRequest( @requestURL, @requestHeaders,  @requestXML ) if @printRequestsAndResponses
   @logger.logRequest( @dbidForRequestURL, api_Request, @requestXML ) if @logger

   begin

      # send the request
      if USING_HTTPCLIENT
         response = @httpConnection.post( @requestURL, @requestXML, @requestHeaders )
         @responseCode = response.status
         @responseXML = response.content
      else  
         if Net::HTTP.version_1_2?
            response = @httpConnection.post( @requestURL, @requestXML, @requestHeaders )
            @responseCode = response.code
            @responseXML = response.body
         else
            @responseCode, @responseXML = @httpConnection.post( @requestURL, @requestXML, @requestHeaders )
         end	
      end
       
      printResponse( @responseCode,  @responseXML ) if @printRequestsAndResponses

      if not isHTMLRequest
         processResponse( @responseXML )
      end

   @logger.logResponse( @lastError, @responseXML ) if @logger

   fireDBChangeEvents

   rescue Net::HTTPBadResponse => error
      @lastError = "Bad HTTP Response: #{error}"
   rescue Net::HTTPHeaderSyntaxError => error
      @lastError = "Bad HTTP header syntax: #{error}"
   rescue StandardError => error
      @lastError = "Error processing #{api_Request} request: #{error}"
   end

   @requestSucceeded = ( @errcode == "0" and @lastError == "" )

   fire( @requestSucceeded ? "onRequestSucceeded" : "onRequestFailed" )

   if @stopOnError and !@requestSucceeded
      raise @lastError
   end
end

#setActiveRecord(dbid, rid) ⇒ Object

Set the active database and record for subsequent method calls.



3203
3204
3205
3206
3207
3208
# File 'lib/QuickBaseClient.rb', line 3203

def setActiveRecord( dbid, rid )
   if dbid and rid
      getRecordInfo( dbid, rid )
   end
   @rid
end

#setActiveTable(dbid) ⇒ Object

Set the active database table subsequent method calls.



3198
3199
3200
# File 'lib/QuickBaseClient.rb', line 3198

def setActiveTable( dbid )
   @dbid = dbid
end

#setAppData(dbid, appdata) ⇒ Object

API_SetAppData



2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
# File 'lib/QuickBaseClient.rb', line 2967

def setAppData( dbid, appdata )
   @dbid, @appdata = dbid, appdata 

   xmlRequestData = toXML( :appdata , @appdata )
   
   sendRequest( :setAppData )
  
   return self if @chainAPIcalls
   @appdata
end

#setDBvar(dbid, varname, value) ⇒ Object

API_SetDBvar



2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
# File 'lib/QuickBaseClient.rb', line 2982

def setDBvar( dbid, varname, value )
   @dbid, @varname, @value = dbid, varname, value 
   
   xmlRequestData = toXML( :varname, @varname )
   xmlRequestData << toXML( :value, @value )
   
   sendRequest( :setDBvar, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#setFieldProperties(dbid, properties, fid) ⇒ Object

API_SetFieldProperties



2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
# File 'lib/QuickBaseClient.rb', line 2998

def setFieldProperties( dbid, properties, fid )

   @dbid, @properties, @fid = dbid, properties, fid

   if @properties and @properties.is_a?( Hash )

      xmlRequestData = toXML( :fid, @fid )

      @properties.each{ |key, value|
                           if isValidFieldProperty?( key )
                              xmlRequestData << toXML( key, value )
                           else
                              raise "setFieldProperties: Invalid field property '#{key}'.  Valid properties are " + @validFieldProperties.join( "," )
                           end
                      }

      sendRequest( :setFieldProperties, xmlRequestData )
   else
      raise "setFieldProperties: @properties is not a Hash of key/value pairs"
   end

   return self if @chainAPIcalls
   @requestSucceeded
end

#setFieldValue(fieldName, fieldValue, dbid = nil, rid = nil, key = nil) ⇒ Object

Change a named field’s value in the active record. e.g. setFieldValue( “Location”, “Miami” )



3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
# File 'lib/QuickBaseClient.rb', line 3213

def setFieldValue( fieldName, fieldValue, dbid = nil, rid = nil, key =nil )
   @dbid ||= dbid
   @rid ||= rid
   @key ||= key
   if @dbid and (@rid or @key)
      clearFieldValuePairList
      addFieldValuePair( fieldName, nil, nil, fieldValue )
      editRecord( @dbid, @rid, @fvlist, nil, nil, nil, nil, nil, @key )
   end
end

#setFieldValues(fields, editRecord = true) ⇒ Object

Set several named fields’ values. Will modify the active record if there is one. e.g. setFieldValues( {“Location” => “Miami”, “Phone” => “343-4567” } )



3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
# File 'lib/QuickBaseClient.rb', line 3226

def setFieldValues( fields, editRecord=true )
   if fields.is_a?(Hash)
       clearFieldValuePairList
       fields.each{ |fieldName,fieldValue|
          addFieldValuePair( fieldName, nil, nil, fieldValue )
       }
       if editRecord and @dbid and (@rid or @key)
         editRecord( @dbid, @rid, @fvlist, nil, nil, nil, nil, nil, @key )
       end
   end
end

#setHTTPConnection(useSSL, org = "www", domain = "quickbase", proxy_options = nil) ⇒ Object

Initializes the connection to QuickBase.



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/QuickBaseClient.rb', line 154

def setHTTPConnection( useSSL, org = "www", domain = "quickbase", proxy_options = nil )
   @useSSL = useSSL
   @org = org
   @domain = domain
   if USING_HTTPCLIENT
     if proxy_options
        @httpConnection = HTTPClient.new( "#{proxy_options["proxy_server"]}:#{proxy_options["proxy_port"] || useSSL ? "443" : "80"}" )
        @httpConnection.set_auth(proxy_options["proxy_server"], proxy_options["proxy_user"], proxy_options["proxy_password"])
     else  
        @httpConnection = HTTPClient.new 
     end
   else  
     if proxy_options
        @httpProxy = Net::HTTP::Proxy(proxy_options["proxy_server"], proxy_options["proxy_port"], proxy_options["proxy_user"], proxy_options["proxy_password"])
        @httpConnection = @httpProxy.new( "#{@org}.#{@domain}.com", useSSL ? 443 : 80)
     else
        @httpConnection = Net::HTTP.new( "#{@org}.#{@domain}.com", useSSL ? 443 : 80 )
     end  
     @httpConnection.use_ssl = useSSL
     @httpConnection.verify_mode = OpenSSL::SSL::VERIFY_NONE
   end
end

#setHTTPConnectionAndqbhost(useSSL, org = "www", domain = "quickbase", proxy_options = nil) ⇒ Object

Initializes the connection to QuickBase and sets the QuickBase URL and port to use for requests.



192
193
194
195
# File 'lib/QuickBaseClient.rb', line 192

def setHTTPConnectionAndqbhost( useSSL, org = "www", domain = "quickbase", proxy_options = nil )
   setHTTPConnection( useSSL, org, domain, proxy_options )
   setqbhost( useSSL, org, domain )
end

#setKeyField(dbid, fid) ⇒ Object

API_SetKeyField



3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
# File 'lib/QuickBaseClient.rb', line 3027

def setKeyField( dbid, fid )
   @dbid, @fid = dbid, fid
   
   xmlRequestData = toXML( :fid, @fid )
   
   sendRequest( :setKeyField, xmlRequestData )
   
   return self if @chainAPIcalls
   @requestSucceeded
end

#setLogger(logger) ⇒ Object

Set the instance of a QuickBase::Logger to be used by QuickBase::Client. Closes the open log file if necessary.



1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
# File 'lib/QuickBaseClient.rb', line 1625

def setLogger( logger )
   if logger
      if logger.is_a?( Logger )
         if @logger and @logger != logger
            @logger.closeLogFile()
         end
         @logger = logger
      end
   else
      @logger.closeLogFile() if @logger
      @logger = nil
   end
end

#setqbhost(useSSL, org = "www", domain = "quickbase") ⇒ Object

Sets the QuickBase URL and port to use for requests.



183
184
185
186
187
188
189
# File 'lib/QuickBaseClient.rb', line 183

def setqbhost( useSSL, org = "www", domain = "quickbase" )
   @useSSL = useSSL
   @org = org
   @domain = domain
   @qbhost = useSSL ? "https://#{@org}.#{@domain}.com:443" : "http://#{@org}.#{@domain}.com"
   @qbhost
end

#signOutObject

API_SignOut



3042
3043
3044
3045
3046
3047
3048
# File 'lib/QuickBaseClient.rb', line 3042

def signOut
  sendRequest( :signOut )
  @ticket = @username = @password = nil

  return self if @chainAPIcalls
  @requestSucceeded
end

#splitString(string, fieldSeparator = ",") ⇒ Object

Converts a string into an array, given a field separator. ‘“’ followed by the field separator are treated the same way as just the field separator.



1500
1501
1502
# File 'lib/QuickBaseClient.rb', line 1500

def splitString(string, fieldSeparator = ",")
  CSV.parse(string, col_sep: fieldSeparator).shift
end

#subscribe(event, handler) ⇒ Object

Subscribe to a specified event published by QuickBase::Client.



1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
# File 'lib/QuickBaseClient.rb', line 1598

def subscribe( event, handler )

   @events = %w{ onSendRequest onProcessResponse onSetActiveTable
                 onRequestSucceeded onRequestFailed onSetActiveRecord
                 onSetActiveField } if @events.nil?

   if @events.include?( event )
      if handler and handler.is_a?( EventHandler )
         if @eventSubscribers.nil?
            @eventSubscribers = {}
         end
         if not @eventSubscribers.include?( event )
            @eventSubscribers[ event ] = []
         end
         if not @eventSubscribers[ event ].include?( handler )
            @eventSubscribers[ event ] << handler
         end
      else
         raise "subscribe: 'handler' must be a class derived from QuickBase::EventHandler."
      end
   else
      raise "subscribe: invalid event '#{event}'.  Valid events are #{@events.sort.join( ', ' )}."
   end
end

#sum(dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil) ⇒ Object

Returns the sum of the values for one or more fields in the records returned by a query. e.g. sumsHash = sum(“dfdfafff”,[“Date Sent”,“Quantity”,“Part Name”])



4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
# File 'lib/QuickBaseClient.rb', line 4045

def sum( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
   sum = {}
   hasValues = false
   iterateRecords(dbid,fieldNames,query,qid,qname,clist,slist,fmt,options){|record|
      fieldNames.each{|field|
         value = record[field]
         if value
            baseFieldType = lookupBaseFieldTypeByName(field)
            case baseFieldType
               when "int32","int64","bool" 
                  value = record[field].to_i
               when "float"   
                  value = record[field].to_f
            end
            if sum[field].nil? 
               sum[field] = value
            else
               sum[field] = sum[field] + value
            end
            hasValues = true
         end
      }
   }
   sum = nil if not hasValues
   sum
end

#toggleTraceInfo(showTrace) ⇒ Object

Turns program stack tracing on or off.

If followed by a block, the tracing will be toggled on or off at the end of the block.



333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
# File 'lib/QuickBaseClient.rb', line 333

def toggleTraceInfo( showTrace )
   if showTrace
      # this will print a very large amount of stuff
      set_trace_func proc { |event, file, line, id, binding, classname|  printf "%8s %s:%-2d %10s %8s\n", event, file, line, id, classname }
      if block_given?
         yield
         set_trace_func nil
      end
   else
      set_trace_func nil
      if block_given?
         yield
         set_trace_func proc { |event, file, line, id, binding, classname|  printf "%8s %s:%-2d %10s %8s\n", event, file, line, id, classname }
      end
   end
   self
end

#toXML(tag, value = nil) ⇒ Object

Builds the XML for a specific item included in a request to QuickBase.



1037
1038
1039
1040
1041
1042
1043
1044
# File 'lib/QuickBaseClient.rb', line 1037

def toXML( tag, value = nil )
   if value
      ret = "<#{tag}>#{value}</#{tag}>"
   else
      ret = "<#{tag}/>"
   end
   ret
end

#updateFile(dbid, rid, filename, fileAttachmentFieldName, additionalFieldsToSet = nil) ⇒ Object

Update the file attachment in an existing record in a table. Additional field values can optionally be set. e.g. updateFile( “dhnju5y7”, “6”, “contacts.txt”, “Contacts File”, { “Notes” => “#Time.now” }



4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
# File 'lib/QuickBaseClient.rb', line 4612

def updateFile( dbid, rid, filename, fileAttachmentFieldName, additionalFieldsToSet = nil )
   if dbid and rid and filename and fileAttachmentFieldName
      clearFieldValuePairList
      addFieldValuePair( fileAttachmentFieldName, nil, filename, nil )
      if additionalFieldsToSet and additionalFieldsToSet.is_a?( Hash )
         additionalFieldsToSet.each{ |fieldName,fieldValue|
            addFieldValuePair( fieldName, nil, nil, fieldValue )
         }
      end
      return editRecord( dbid, rid, @fvlist )
   end
   nil
end

#uploadFile(dbid, filename, fileAttachmentFieldName, additionalFieldsToSet = nil) ⇒ Object

Upload a file into a new record in a table. Additional field values can optionally be set. e.g. uploadFile( “dhnju5y7”, “contacts.txt”, “Contacts File”, { “Notes” => “#Time.now” }



4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
# File 'lib/QuickBaseClient.rb', line 4567

def uploadFile( dbid, filename, fileAttachmentFieldName, additionalFieldsToSet = nil )
   if dbid and filename and fileAttachmentFieldName
      clearFieldValuePairList
      addFieldValuePair( fileAttachmentFieldName, nil, filename, nil )
      if additionalFieldsToSet and additionalFieldsToSet.is_a?( Hash )
         additionalFieldsToSet.each{ |fieldName,fieldValue|
            addFieldValuePair( fieldName, nil, nil, fieldValue )
         }
      end
      return addRecord( dbid, @fvlist )
   end
   nil
end

#uploadFileContents(dbid, filename, fileContents, fileAttachmentFieldName, additionalFieldsToSet = nil) ⇒ Object

Add a File Attachment into a new record in a table, using a string containing the file contents. Additional field values can optionally be set. e.g. uploadFile( “dhnju5y7”, “contacts.txt”, “fred: 1-222-333-4444”, “Contacts File”, { “Notes” => “#Time.now” }



4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
# File 'lib/QuickBaseClient.rb', line 4584

def uploadFileContents( dbid, filename, fileContents, fileAttachmentFieldName, additionalFieldsToSet = nil )
   if dbid and filename and fileAttachmentFieldName
      clearFieldValuePairList
      addFieldValuePair( fileAttachmentFieldName, nil, filename, fileContents )
      if additionalFieldsToSet and additionalFieldsToSet.is_a?( Hash )
         additionalFieldsToSet.each{ |fieldName,fieldValue|
            addFieldValuePair( fieldName, nil, nil, fieldValue )
         }
      end
      return addRecord( dbid, @fvlist )
   end
   nil
end

#userRoles(dbid) ⇒ Object

API_UserRoles



3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
# File 'lib/QuickBaseClient.rb', line 3059

def userRoles( dbid )
   @dbid = dbid
   
   sendRequest( :userRoles )
   
   @users = getResponseElement( :users )
   return self if @chainAPIcalls
   
   if block_given?
     if @users
       user_list = getResponseElements("qdbapi/users/user")
       user_list.each{|user| yield user}
     else
       yield nil
     end          
   else
     @users        
   end
end

#verifyFieldList(fnames, fids = nil, dbid = @dbid) ⇒ Object

Given an array of field names or field IDs and a table ID, builds an array of valid field IDs and field names. Throws an exception when an invalid name or ID is encountered.



1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
# File 'lib/QuickBaseClient.rb', line 1193

def verifyFieldList( fnames, fids = nil, dbid = @dbid )
  getSchema( dbid )
  @fids = @fnames = nil

  if fids
     if fids.is_a?( Array ) and fids.length > 0
         fids.each { |id|
            fid = lookupField( id )
            if fid
               fname = lookupFieldNameFromID( id )
               @fnames ||= []
               @fnames << fname
            else
               raise "verifyFieldList: '#{id}' is not a valid field ID"
            end
         }
         @fids = fids
      else
         raise "verifyFieldList: fids must be an array of one or more field IDs"
      end
  elsif fnames
     if fnames.is_a?( Array ) and fnames.length > 0
      fnames.each { |name|
         fid = lookupFieldIDByName( name )
         if fid
            @fids ||= []
            @fids << fid
         else
            raise "verifyFieldList: '#{name}' is not a valid field name"
         end
      }
      @fnames = fnames
    else
      raise "verifyFieldList: fnames must be an array of one or more field names"
    end
  else
     raise "verifyFieldList: must specify fids or fnames"
  end
  @fids
end

#verifyQueryOperator(operator, fieldType) ⇒ Object

Returns a valid query operator.



1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# File 'lib/QuickBaseClient.rb', line 1302

def verifyQueryOperator( operator, fieldType )
   queryOperator = ""

   if @queryOperators.nil?
      @queryOperators = {}
      @queryOperatorFieldType = {}

      @queryOperators[ "CT" ]  =  [ "contains", "[]" ]
      @queryOperators[ "XCT" ] = [ "does not contain", "![]" ]

      @queryOperators[ "EX" ]  = [ "is", "==", "eq" ]
      @queryOperators[ "TV" ]  = [ "true value" ]
      @queryOperators[ "XEX" ] = [ "is not", "!=", "ne" ]

      @queryOperators[ "SW" ]  =  [ "starts with" ]
      @queryOperators[ "XSW" ] = [ "does not start with" ]

      @queryOperators[ "BF" ]  = [ "is before", "<" ]
      @queryOperators[ "OBF" ] = [ "is on or before", "<=" ]
      @queryOperators[ "AF" ]  = [ "is after", ">" ]
      @queryOperators[ "OAF" ] = [ "is on or after", ">=" ]

      @queryOperatorFieldType[ "BF" ] = [ "date" ]
      @queryOperatorFieldType[ "OBF" ] = [ "date" ]
      @queryOperatorFieldType[ "ABF" ] = [ "date" ]
      @queryOperatorFieldType[ "OAF" ] = [ "date" ]

      @queryOperators[ "LT" ]  = [ "is less than", "<" ]
      @queryOperators[ "LTE" ]  = [ "is less than or equal to", "<=" ]
      @queryOperators[ "GT" ]  = [ "is greater than", ">" ]
      @queryOperators[ "GTE" ]  = [ "is greater than or equal to", ">=" ]
   end

   upcaseOperator = operator.upcase
   @queryOperators.each { |queryop,aliases|
     if queryop == upcaseOperator
        if @queryOperatorFieldType[ queryop ] and @queryOperatorFieldType[ queryop ].include?( fieldType )
           queryOperator = upcaseOperator
           break
        else
           queryOperator = upcaseOperator
           break
        end
     else
       aliases.each  { |a|
         if a == upcaseOperator
            if @queryOperatorFieldType[ queryop ] and @queryOperatorFieldType[ queryop ].include?( fieldType )
               queryOperator = queryop
               break
            else
               queryOperator = queryop
               break
            end
         end
       }
     end
   }
   queryOperator
end