Swift
Swift
Outlook -- Create Map of Folder Paths to IDs
See more Outlook Examples
Recursively descends folders and creates a hashtable of folder paths to IDs. This can be done once at the start of your program (or even less if the map is persisted to a file or database).The reason this is necessary is because folder ID's need to be passed to the Outlook API, and an application will typically be working with folder paths.
Note: This example requires Chilkat v9.5.0.67 or greater.
This example applies to: Exchange Online | Office 365 | Hotmail.com | Live.com | MSN.com | Outlook.com | Passport.com
Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
// Our folder path --> ID map will be stored in this hash table.
let folderMap = CkoHashtable()!
// Use your previously obtained access token here:
// See the following examples for getting an access token:
// Get Microsoft Graph OAuth2 Access Token (Azure AD v2.0 Endpoint).
// Get Microsoft Graph OAuth2 Access Token (Azure AD Endpoint).
// Refresh Access Token (Azure AD v2.0 Endpoint).
// Refresh Access Token (Azure AD Endpoint).
http.authToken = "MICROSOFT_GRAPH_ACCESS_TOKEN"
let sbResponse = CkoStringBuilder()!
// Begin by getting the top-level folders.
http.clearUrlVars()
http.setUrlVar(name: "userPrincipalName", value: "chilkatsoft@outlook.com")
success = http.quickGetSb(url: "https://graph.microsoft.com/v1.0/users/{$userPrincipalName}/mailFolders", sbContent: sbResponse)
if (success != true) && (http.lastStatus.intValue == 0) {
print("\(http.lastErrorText!)")
return
}
let json = CkoJsonObject()!
json.loadSb(sb: sbResponse)
json.emitCompact = false
print("Status code = \(http.lastStatus.intValue)")
if http.lastStatus.intValue != 200 {
print("\(json.emit()!)")
print("Failed.")
}
// This is our queue/stack of unprocessed folder ID's
// The recursive nature of this example is that we get the
// child folders for each folder ID in the idQueue, which may
// cause additional ID's to be added. We continue until the idQueue
// is empty.
let idQueue = CkoStringArray()!
let sbFolderPath = CkoStringBuilder()!
let sbQueueEntry = CkoStringBuilder()!
var folderName: String?
var folderPath: String?
var folderId: String?
// Prime the map and idQueue with the top-level folders.
var i: Int = 0
var numFolders: Int = json.size(ofArray: "value").intValue
while i < numFolders {
json.i = i
folderName = json.string(of: "value[i].displayName")
folderId = json.string(of: "value[i].id")
sbFolderPath.setString(value: "/")
sbFolderPath.append(value: folderName)
folderPath = sbFolderPath.getAsString()
folderMap.addStr(key: folderPath, value: folderId)
print("\(folderPath!) --> \(folderId!)")
// Push the folder path + id onto the idQueue.
sbQueueEntry.clear()
sbQueueEntry.setNth(index: 0, value: folderPath, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
sbQueueEntry.setNth(index: 1, value: folderId, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
idQueue.append(str: sbQueueEntry.getAsString())
i = i + 1
}
// Initial output:
// /Archive --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAG8XunwAAAA=
// /Deleted Items --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEKAAAA
// /Drafts --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEPAAAA
// /Inbox --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEMAAAA
// /Junk Email --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEiAAAA
// /Outbox --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgELAAAA
// /Sent Items --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEJAAAA
//
// Process the idQueue until it becomes empty. This is the recursive loop.
var parentFolderPath: String?
var parentFolderId: String?
while idQueue.length.intValue > 0 {
sbQueueEntry.setString(value: idQueue.getString(index: 0))
idQueue.remove(at: 0)
parentFolderPath = sbQueueEntry.getNth(index: 0, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
parentFolderId = sbQueueEntry.getNth(index: 1, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
http.setUrlVar(name: "id", value: parentFolderId)
success = http.quickGetSb(url: "https://graph.microsoft.com/v1.0/users/{$userPrincipalName}/mailFolders/{$id}/childFolders", sbContent: sbResponse)
if (success != true) && (http.lastStatus.intValue == 0) {
print("\(http.lastErrorText!)")
return
}
json.loadSb(sb: sbResponse)
if http.lastStatus.intValue != 200 {
print("Status code = \(http.lastStatus.intValue)")
print("\(json.emit()!)")
print("Failed.")
}
i = 0
numFolders = json.size(ofArray: "value").intValue
while i < numFolders {
json.i = i
folderName = json.string(of: "value[i].displayName")
folderId = json.string(of: "value[i].id")
sbFolderPath.setString(value: parentFolderPath)
sbFolderPath.append(value: "/")
sbFolderPath.append(value: folderName)
folderPath = sbFolderPath.getAsString()
folderMap.addStr(key: folderPath, value: folderId)
print("\(folderPath!) --> \(folderId!)")
// Push the folder path + id onto the idQueue.
sbQueueEntry.clear()
sbQueueEntry.setNth(index: 0, value: folderPath, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
sbQueueEntry.setNth(index: 1, value: folderId, delimiterChar: "|", exceptDoubleQuoted: false, exceptEscaped: false)
idQueue.append(str: sbQueueEntry.getAsString())
i = i + 1
}
}
// The hash table of mail folder paths --> ID's can be persisted to XML and saved to a file or database (or anywhere..)
let sbFolderMapXml = CkoStringBuilder()!
folderMap.toXmlSb(sbXml: sbFolderMapXml)
sbFolderMapXml.writeFile(path: "qa_data/outlook/folderMap.xml", charset: "utf-8", emitBom: false)
// The hash table can be restored from the serialized XML like this:
let ht2 = CkoHashtable()!
let sb2 = CkoStringBuilder()!
sb2.loadFile(path: "qa_data/outlook/folderMap.xml", charset: "utf-8")
ht2.add(fromXmlSb: sb2)
// What's the ID for the folder "/Inbox/abc/subFolderA" ?
print("id for /Inbox/abc/subFolderA = \(ht2.lookupStr(key: "/Inbox/abc/subFolderA")!)")
// Final output:
// /Archive --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAG8XunwAAAA=
// /Deleted Items --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEKAAAA
// /Drafts --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEPAAAA
// /Inbox --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEMAAAA
// /Junk Email --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEiAAAA
// /Outbox --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgELAAAA
// /Sent Items --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAgEJAAAA
// /Inbox/abc --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAL8huv8AAAA=
// /Inbox/xyz --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAL8huwEAAAA=
// /Inbox/abc/subFolderA --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAL8huwAAAQ==
// /Inbox/abc/subFolderB --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAL8huwMAAAA=
// /Inbox/abc/subFolderA/a --> AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgAuAAADsVyfxjDU406Ic4X7ill8xAEA5_vF7TKKdE6bGCRqXyl2PQAAAL8huwIAAAA=
//
// ------------------------------------------------------------------------------------------------------
// This example applies to: Exchange Online | Office 365 | Hotmail.com | Live.com | MSN.com | Outlook.com | Passport.com
//
// The Microsoft Graph Outlook Mail API lets you read, create, and send messages and attachments,
// view and respond to event messages, and manage folders that are secured by Azure Active Directory
// in Office 365. It also provides the same functionality in Microsoft accounts specifically
// in these domains: Hotmail.com, Live.com, MSN.com, Outlook.com, and Passport.com.
}