Is there a way to figure out from code if a user account is actually a mobile account or active directory account or local user account (non-mobile) on Mojave?
Through following code i can distinguish between local user and AD user via attribute
// 'dsAttrTypeStandard:AppleMetaNodeLocation': '/Active Directory/ABCD/abcd.in' for Domain user
func checkForLocalUser(name: String) -> Bool {
var records = [ODRecord]()
let odsession = ODSession.default()
do {
let node = try ODNode.init(session: odsession, type: ODNodeType(kODNodeTypeAuthentication))
let query = try ODQuery.init(node: node, forRecordTypes: kODRecordTypeUsers, attribute: kODAttributeTypeRecordName, matchType: ODMatchType(kODMatchEqualTo), queryValues: name, returnAttributes: kODAttributeTypeAllAttributes, maximumResults: 0)
records = try query.resultsAllowingPartial(false) as! [ODRecord]
} catch {
let errorText = error.localizedDescription
return false
}
let isLocal = records.isEmpty ? false : true
return isLocal
}
Not sure this is the correct way to achieve this. Also, I am not able to figure out whether the user is a mobile account user or not?
Please help.
Distinguishing between local and remote users via the
kODAttributeTypeMetaNodeLocation
property is just fine. The code you posted is a little convoluted though. Pasted in at the end is something a little simpler.
I’m not entirely sure how to distinguish the mobile user case. My general advice on that front is to use
dscl
to dump an example record for all three cases you care about, and then look at the properties for relevant ways to tease them apart.
If you’d like help, please post the three dumps (feel free to elide long properties, like
JPEGPhoto
). For example:
$ dscl
Entering interactive mode... (type "help" for commands)
> read /Search/Users/roboquinn4
…
AppleMetaNodeLocation: /Local/Default
GeneratedUID: DE267A51-B991-4539-9A75-8DE592CD07A7
NFSHomeDirectory: /Users/roboquinn4
Password: ********
PrimaryGroupID: 20
RealName: RoboQuinn4
RecordName: roboquinn4
RecordType: dsRecTypeStandard:Users
UniqueID: 503
UserShell: /bin/bash
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"
func isLocal(username: String) throws -> Bool {
let session = ODSession()
let node = try ODNode(session: session, type: ODNodeType(kODNodeTypeAuthentication))
let record = try node.record(
withRecordType: kODRecordTypeUsers,
name: username,
attributes: [kODAttributeTypeMetaNodeLocation] as NSArray
)
let locationsAny = try record.values(forAttribute: kODAttributeTypeMetaNodeLocation)
guard
let locations = locationsAny as? [String],
let location = locations.first
else {
// … throw an error …
}
return location.hasPrefix("/Local/")
}