--- layout: page title: Access Condition System (ACS) --- ## Access Condition System (ACS) ENiGMA½ uses an Access Condition System (ACS) that is both familiar to oldschool BBS operators and has it's own style. With ACS, SysOp's are able to control access to various areas of the system based on various conditions such as group membership, connection type, etc. Various touch points in the system are configured to allow for `acs` checks. In some cases ACS is a simple boolean check while others (via ACS blocks) allow to define what conditions must be true for certain _rights_ such as `read` and `write` (though others exist as well). ## ACS Codes The following are ACS codes available as of this writing: | Code | Condition | |------|-------------| | LC | Connection is local | | AGage | User's age is >= _age_ | | ASstatus, AS[_status_,...] | User's account status is _group_ or one of [_group_,...] | | ECencoding | Terminal encoding is set to _encoding_ where `0` is `CP437` and `1` is `UTF-8` | | GM[_group_,...] | User belongs to one of [_group_,...] | | NNnode, NN[_node_,...] | Current node is _node_ or one of [_node_,...] | | NPposts | User's number of message posts is >= _posts_ | | NCcalls | User's number of calls is >= _calls_ | | SC | Connection is considered secure (SSL, secure WebSockets, etc.) | | THheight | Terminal height is >= _height_ | | TWwidth | Terminal width is >= _width_ | | TM[_themeId_,...] | User's current theme ID is one of [_themeId_,...] (e.g. `luciano_blocktronics`) | | TT[_termType_,...] | User's current terminal type is one of [_termType_,...] (`ANSI-BBS`, `utf8`, `xterm`, etc.) | | IDid, ID[_id_,...] | User's ID is _id_ or oen of [_id_,...] | | WDweekDay, WD[_weekDay_,...] | Current day of week is _weekDay_ or one of [_weekDay_,...] where `0` is Sunday, `1` is Monday, and so on. | | AAdays | Account is >= _days_ old | | BUbytes | User has uploaded >= _bytes_ | | UPuploads | User has uploaded >= _uploads_ files | | BDbytes | User has downloaded >= _bytes_ | | DLdownloads | User has downloaded >= _downloads_ files | | NRratio | User has upload/download count ratio >= _ratio_ | | KRratio | User has a upload/download byte ratio >= _ratio_ | | PCratio | User has a post/call ratio >= _ratio_ | | MMminutes | It is currently >= _minutes_ past midnight (system time) | | ACachievementCount | User has >= _achievementCount_ achievements | | APachievementPoints | User has >= _achievementPoints_ achievement points | | AFauthFactor | User's current *Authentication Factor* is >= _authFactor_. Authentication factor 1 refers to username + password (or PubKey) while factor 2 refers to 2FA such as One-Time-Password authentication. | | ARauthFactorReq | Current user **requires** an Authentication Factor >= _authFactorReq_ | | PV[_name,_value_] | Checks that the property by _name_ for the current user is exactly _value_. This ACS allows arbitrary user property values to be checked. For example, `PV[message_conf,local]` checks that the user is currently in the "local" message conference. ## ACS Strings ACS strings are one or more ACS codes in addition to some basic language semantics. The following logical operators are supported: * `!` NOT * `|` OR * `&` AND (this is the default) ENiGMA½ also supports groupings using `(` and `)`. Lastly, some ACS codes allow for lists of acceptable values using `[` and `]` — for example, `GM[users,sysops]`. ### Example ACS Strings * `NC2`: User must have called two more more times for the check to return true (to pass) * `ID1`: User must be ID 1 (the +op) * `GM[elite,power]`: User must be a member of the `elite` or `power` user group (they could be both) * `ID1|GM[co-op]`: User must be ID 1 (SysOp!) or belong to the `co-op` group * `!TH24`: Terminal height must NOT be 24 ## ACS Blocks Some areas of the system require more than a single ACS string. In these situations an *ACS block* is used to allow for finer grain control. As an example, consider the following file area `acs` block: ```hjson acs: { read: GM[users] write: GM[sysops,co-ops] download: GM[elite-users] } ``` All `users` can read (see) the area, `sysops` and `co-ops` can write (upload), and only members of the `elite-users` group can download. ## ACS Touch Points The following touch points exist in the system. Many more are planned: * [Message conferences and areas](../messageareas/configuring-a-message-area.md) * [File base areas](../filebase/first-file-area.md) and [Uploads](../filebase/uploads.md) * Menus within [Menu HJSON (menu.hjson)](menu-hjson.md) See the specific areas documentation for information on available ACS checks.