Class: Files::Site

Inherits:
Object
  • Object
show all
Defined in:
lib/files.com/models/site.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}, options = {}) ⇒ Site

Returns a new instance of Site.



7
8
9
10
# File 'lib/files.com/models/site.rb', line 7

def initialize(attributes = {}, options = {})
  @attributes = attributes || {}
  @options = options || {}
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



5
6
7
# File 'lib/files.com/models/site.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/files.com/models/site.rb', line 5

def options
  @options
end

Class Method Details

.get(params = {}, options = {}) ⇒ Object



582
583
584
585
# File 'lib/files.com/models/site.rb', line 582

def self.get(params = {}, options = {})
  response, options = Api.send_request("/site", :get, params, options)
  Site.new(response.data, options)
end

.get_usage(params = {}, options = {}) ⇒ Object



587
588
589
590
# File 'lib/files.com/models/site.rb', line 587

def self.get_usage(params = {}, options = {})
  response, options = Api.send_request("/site/usage", :get, params, options)
  UsageSnapshot.new(response.data, options)
end

.update(params = {}, options = {}) ⇒ Object

Parameters:

name - string - Site name
subdomain - string - Site subdomain
domain - string - Custom domain
email - string - Main email for this site
reply_to_email - string - Reply-to email for this site
allow_bundle_names - boolean - Are manual Bundle names allowed?
bundle_expiration - int64 - Site-wide Bundle expiration in days
overage_notify - boolean - Notify site email of overages?
welcome_email_enabled - boolean - Will the welcome email be sent to new users?
ask_about_overwrites - boolean - If false, rename conflicting files instead of asking for overwrite confirmation.  Only applies to web interface.
show_request_access_link - boolean - Show request access link for users without access?  Currently unused.
welcome_email_cc - string - Include this email in welcome emails if enabled
welcome_custom_text - string - Custom text send in user welcome email
language - string - Site default language
windows_mode_ftp - boolean - Does FTP user Windows emulation mode?
default_time_zone - string - Site default time zone
desktop_app - boolean - Is the desktop app enabled?
desktop_app_session_ip_pinning - boolean - Is desktop app session IP pinning enabled?
desktop_app_session_lifetime - int64 - Desktop app session lifetime (in hours)
folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.
welcome_screen - string - Does the welcome screen appear?
office_integration_available - boolean - Allow users to use Office for the web?
session_expiry - double - Session expiry in hours
ssl_required - boolean - Is SSL required?  Disabling this is insecure.
tls_disabled - boolean - Is TLS disabled(site setting)?
user_lockout - boolean - Will users be locked out after incorrect login attempts?
user_lockout_tries - int64 - Number of login tries within `user_lockout_within` hours before users are locked out
user_lockout_within - int64 - Number of hours for user lockout window
user_lockout_lock_period - int64 - How many hours to lock user out for failed password?
include_password_in_welcome_email - boolean - Include password in emails to new users?
allowed_countries - string - Comma seperated list of allowed Country codes
allowed_ips - string - List of allowed IP addresses
disallowed_countries - string - Comma seperated list of disallowed Country codes
days_to_retain_backups - int64 - Number of days to keep deleted files
max_prior_passwords - int64 - Number of prior passwords to disallow
password_validity_days - int64 - Number of days password is valid
password_min_length - int64 - Shortest password length for users
password_require_letter - boolean - Require a letter in passwords?
password_require_mixed - boolean - Require lower and upper case letters in passwords?
password_require_special - boolean - Require special characters in password?
password_require_number - boolean - Require a number in passwords?
password_require_unbreached - boolean - Require passwords that have not been previously breached? (see https://haveibeenpwned.com/)
sftp_user_root_enabled - boolean - Use user FTP roots also for SFTP?
disable_password_reset - boolean - Is password reset disabled?
immutable_files - boolean - Are files protected from modification?
session_pinned_by_ip - boolean - Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
bundle_password_required - boolean - Do Bundles require password protection?
bundle_require_share_recipient - boolean - Do Bundles require recipients for sharing?
password_requirements_apply_to_bundles - boolean - Require bundles' passwords, and passwords for other items (inboxes, public shares, etc.) to conform to the same requirements as users' passwords?
opt_out_global - boolean - Use servers in the USA only?
use_provided_modified_at - boolean - Allow uploaders to set `provided_modified_at` for uploaded files?
custom_namespace - boolean - Is this site using a custom namespace for users?
disable_users_from_inactivity_period_days - int64 - If greater than zero, users will unable to login if they do not show activity within this number of days.
non_sso_groups_allowed - boolean - If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
non_sso_users_allowed - boolean - If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.
sharing_enabled - boolean - Allow bundle creation
user_requests_enabled - boolean - Enable User Requests feature
allowed_2fa_method_sms - boolean - Is SMS two factor authentication allowed?
allowed_2fa_method_u2f - boolean - Is U2F two factor authentication allowed?
allowed_2fa_method_totp - boolean - Is TOTP two factor authentication allowed?
allowed_2fa_method_yubi - boolean - Is yubikey two factor authentication allowed?
require_2fa - boolean - Require two-factor authentication for all users?
require_2fa_user_type - string - What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
color2_top - string - Top bar background color
color2_left - string - Page link and button color
color2_link - string - Top bar link color
color2_text - string - Page link and button color
color2_top_text - string - Top bar text color
site_header - string - Custom site header text
site_footer - string - Custom site footer text
login_help_text - string - Login help text
smtp_address - string - SMTP server hostname or IP
smtp_authentication - string - SMTP server authentication type
smtp_from - string - From address to use when mailing through custom SMTP
smtp_username - string - SMTP server username
smtp_port - int64 - SMTP server port
ldap_enabled - boolean - Main LDAP setting: is LDAP enabled?
ldap_type - string - LDAP type
ldap_host - string - LDAP host
ldap_host_2 - string - LDAP backup host
ldap_host_3 - string - LDAP backup host
ldap_port - int64 - LDAP port
ldap_secure - boolean - Use secure LDAP?
ldap_username - string - Username for signing in to LDAP server.
ldap_username_field - string - LDAP username field
ldap_domain - string - Domain name that will be appended to usernames
ldap_user_action - string - Should we sync users from LDAP server?
ldap_group_action - string - Should we sync groups from LDAP server?
ldap_user_include_groups - string - Comma or newline separated list of group names (with optional wildcards) - if provided, only users in these groups will be added or synced.
ldap_group_exclusion - string - Comma or newline separated list of group names (with optional wildcards) to exclude when syncing.
ldap_group_inclusion - string - Comma or newline separated list of group names (with optional wildcards) to include when syncing.
ldap_base_dn - string - Base DN for looking up users in LDAP server
icon16_file - file
icon16_delete - boolean - If true, will delete the file stored in icon16
icon32_file - file
icon32_delete - boolean - If true, will delete the file stored in icon32
icon48_file - file
icon48_delete - boolean - If true, will delete the file stored in icon48
icon128_file - file
icon128_delete - boolean - If true, will delete the file stored in icon128
logo_file - file
logo_delete - boolean - If true, will delete the file stored in logo
disable_2fa_with_delay - boolean - If set to true, we will begin the process of disabling 2FA on this site.
ldap_password_change - string - New LDAP password.
ldap_password_change_confirmation - string - Confirm new LDAP password.
smtp_password - string - Password for SMTP server.


699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
# File 'lib/files.com/models/site.rb', line 699

def self.update(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: subdomain must be an String") if params.dig(:subdomain) and !params.dig(:subdomain).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: domain must be an String") if params.dig(:domain) and !params.dig(:domain).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: email must be an String") if params.dig(:email) and !params.dig(:email).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: reply_to_email must be an String") if params.dig(:reply_to_email) and !params.dig(:reply_to_email).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: bundle_expiration must be an Integer") if params.dig(:bundle_expiration) and !params.dig(:bundle_expiration).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: welcome_email_cc must be an String") if params.dig(:welcome_email_cc) and !params.dig(:welcome_email_cc).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: welcome_custom_text must be an String") if params.dig(:welcome_custom_text) and !params.dig(:welcome_custom_text).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: language must be an String") if params.dig(:language) and !params.dig(:language).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: default_time_zone must be an String") if params.dig(:default_time_zone) and !params.dig(:default_time_zone).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: desktop_app_session_lifetime must be an Integer") if params.dig(:desktop_app_session_lifetime) and !params.dig(:desktop_app_session_lifetime).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: welcome_screen must be an String") if params.dig(:welcome_screen) and !params.dig(:welcome_screen).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: session_expiry must be an Float") if params.dig(:session_expiry) and !params.dig(:session_expiry).is_a?(Float)
  raise InvalidParameterError.new("Bad parameter: user_lockout_tries must be an Integer") if params.dig(:user_lockout_tries) and !params.dig(:user_lockout_tries).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: user_lockout_within must be an Integer") if params.dig(:user_lockout_within) and !params.dig(:user_lockout_within).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: user_lockout_lock_period must be an Integer") if params.dig(:user_lockout_lock_period) and !params.dig(:user_lockout_lock_period).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: allowed_countries must be an String") if params.dig(:allowed_countries) and !params.dig(:allowed_countries).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: allowed_ips must be an String") if params.dig(:allowed_ips) and !params.dig(:allowed_ips).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: disallowed_countries must be an String") if params.dig(:disallowed_countries) and !params.dig(:disallowed_countries).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: days_to_retain_backups must be an Integer") if params.dig(:days_to_retain_backups) and !params.dig(:days_to_retain_backups).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: max_prior_passwords must be an Integer") if params.dig(:max_prior_passwords) and !params.dig(:max_prior_passwords).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: password_validity_days must be an Integer") if params.dig(:password_validity_days) and !params.dig(:password_validity_days).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: password_min_length must be an Integer") if params.dig(:password_min_length) and !params.dig(:password_min_length).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: disable_users_from_inactivity_period_days must be an Integer") if params.dig(:disable_users_from_inactivity_period_days) and !params.dig(:disable_users_from_inactivity_period_days).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: require_2fa_user_type must be an String") if params.dig(:require_2fa_user_type) and !params.dig(:require_2fa_user_type).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: color2_top must be an String") if params.dig(:color2_top) and !params.dig(:color2_top).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: color2_left must be an String") if params.dig(:color2_left) and !params.dig(:color2_left).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: color2_link must be an String") if params.dig(:color2_link) and !params.dig(:color2_link).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: color2_text must be an String") if params.dig(:color2_text) and !params.dig(:color2_text).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: color2_top_text must be an String") if params.dig(:color2_top_text) and !params.dig(:color2_top_text).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: site_header must be an String") if params.dig(:site_header) and !params.dig(:site_header).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: site_footer must be an String") if params.dig(:site_footer) and !params.dig(:site_footer).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: login_help_text must be an String") if params.dig(:login_help_text) and !params.dig(:login_help_text).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_address must be an String") if params.dig(:smtp_address) and !params.dig(:smtp_address).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_authentication must be an String") if params.dig(:smtp_authentication) and !params.dig(:smtp_authentication).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_from must be an String") if params.dig(:smtp_from) and !params.dig(:smtp_from).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_username must be an String") if params.dig(:smtp_username) and !params.dig(:smtp_username).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_port must be an Integer") if params.dig(:smtp_port) and !params.dig(:smtp_port).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: ldap_type must be an String") if params.dig(:ldap_type) and !params.dig(:ldap_type).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_host must be an String") if params.dig(:ldap_host) and !params.dig(:ldap_host).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_host_2 must be an String") if params.dig(:ldap_host_2) and !params.dig(:ldap_host_2).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_host_3 must be an String") if params.dig(:ldap_host_3) and !params.dig(:ldap_host_3).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_port must be an Integer") if params.dig(:ldap_port) and !params.dig(:ldap_port).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: ldap_username must be an String") if params.dig(:ldap_username) and !params.dig(:ldap_username).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_username_field must be an String") if params.dig(:ldap_username_field) and !params.dig(:ldap_username_field).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_domain must be an String") if params.dig(:ldap_domain) and !params.dig(:ldap_domain).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_user_action must be an String") if params.dig(:ldap_user_action) and !params.dig(:ldap_user_action).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_group_action must be an String") if params.dig(:ldap_group_action) and !params.dig(:ldap_group_action).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_user_include_groups must be an String") if params.dig(:ldap_user_include_groups) and !params.dig(:ldap_user_include_groups).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_group_exclusion must be an String") if params.dig(:ldap_group_exclusion) and !params.dig(:ldap_group_exclusion).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_group_inclusion must be an String") if params.dig(:ldap_group_inclusion) and !params.dig(:ldap_group_inclusion).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_base_dn must be an String") if params.dig(:ldap_base_dn) and !params.dig(:ldap_base_dn).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_password_change must be an String") if params.dig(:ldap_password_change) and !params.dig(:ldap_password_change).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: ldap_password_change_confirmation must be an String") if params.dig(:ldap_password_change_confirmation) and !params.dig(:ldap_password_change_confirmation).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: smtp_password must be an String") if params.dig(:smtp_password) and !params.dig(:smtp_password).is_a?(String)

  response, options = Api.send_request("/site", :patch, params, options)
  Site.new(response.data, options)
end

Instance Method Details

#admin_user_idObject

int64 - User ID for the main site administrator



38
39
40
# File 'lib/files.com/models/site.rb', line 38

def admin_user_id
  @attributes[:admin_user_id]
end

#allow_bundle_namesObject

boolean - Are manual Bundle names allowed?



43
44
45
# File 'lib/files.com/models/site.rb', line 43

def allow_bundle_names
  @attributes[:allow_bundle_names]
end

#allowed_2fa_method_smsObject

boolean - Is SMS two factor authentication allowed?



18
19
20
# File 'lib/files.com/models/site.rb', line 18

def allowed_2fa_method_sms
  @attributes[:allowed_2fa_method_sms]
end

#allowed_2fa_method_totpObject

boolean - Is TOTP two factor authentication allowed?



23
24
25
# File 'lib/files.com/models/site.rb', line 23

def allowed_2fa_method_totp
  @attributes[:allowed_2fa_method_totp]
end

#allowed_2fa_method_u2fObject

boolean - Is U2F two factor authentication allowed?



28
29
30
# File 'lib/files.com/models/site.rb', line 28

def allowed_2fa_method_u2f
  @attributes[:allowed_2fa_method_u2f]
end

#allowed_2fa_method_yubiObject

boolean - Is yubikey two factor authentication allowed?



33
34
35
# File 'lib/files.com/models/site.rb', line 33

def allowed_2fa_method_yubi
  @attributes[:allowed_2fa_method_yubi]
end

#allowed_countriesObject

string - Comma seperated list of allowed Country codes



48
49
50
# File 'lib/files.com/models/site.rb', line 48

def allowed_countries
  @attributes[:allowed_countries]
end

#allowed_ipsObject

string - List of allowed IP addresses



53
54
55
# File 'lib/files.com/models/site.rb', line 53

def allowed_ips
  @attributes[:allowed_ips]
end

#ask_about_overwritesObject

boolean - If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface.



58
59
60
# File 'lib/files.com/models/site.rb', line 58

def ask_about_overwrites
  @attributes[:ask_about_overwrites]
end

#bundle_expirationObject

int64 - Site-wide Bundle expiration in days



63
64
65
# File 'lib/files.com/models/site.rb', line 63

def bundle_expiration
  @attributes[:bundle_expiration]
end

#bundle_password_requiredObject

boolean - Do Bundles require password protection?



68
69
70
# File 'lib/files.com/models/site.rb', line 68

def bundle_password_required
  @attributes[:bundle_password_required]
end

#bundle_require_share_recipientObject

boolean - Do Bundles require recipients for sharing?



73
74
75
# File 'lib/files.com/models/site.rb', line 73

def bundle_require_share_recipient
  @attributes[:bundle_require_share_recipient]
end

#color2_leftObject

string - Page link and button color



78
79
80
# File 'lib/files.com/models/site.rb', line 78

def color2_left
  @attributes[:color2_left]
end

string - Top bar link color



83
84
85
# File 'lib/files.com/models/site.rb', line 83

def color2_link
  @attributes[:color2_link]
end

#color2_textObject

string - Page link and button color



88
89
90
# File 'lib/files.com/models/site.rb', line 88

def color2_text
  @attributes[:color2_text]
end

#color2_topObject

string - Top bar background color



93
94
95
# File 'lib/files.com/models/site.rb', line 93

def color2_top
  @attributes[:color2_top]
end

#color2_top_textObject

string - Top bar text color



98
99
100
# File 'lib/files.com/models/site.rb', line 98

def color2_top_text
  @attributes[:color2_top_text]
end

#created_atObject

date-time - Time this site was created



103
104
105
# File 'lib/files.com/models/site.rb', line 103

def created_at
  @attributes[:created_at]
end

#currencyObject

string - Preferred currency



108
109
110
# File 'lib/files.com/models/site.rb', line 108

def currency
  @attributes[:currency]
end

#custom_namespaceObject

boolean - Is this site using a custom namespace for users?



113
114
115
# File 'lib/files.com/models/site.rb', line 113

def custom_namespace
  @attributes[:custom_namespace]
end

#days_to_retain_backupsObject

int64 - Number of days to keep deleted files



118
119
120
# File 'lib/files.com/models/site.rb', line 118

def days_to_retain_backups
  @attributes[:days_to_retain_backups]
end

#default_time_zoneObject

string - Site default time zone



123
124
125
# File 'lib/files.com/models/site.rb', line 123

def default_time_zone
  @attributes[:default_time_zone]
end

#desktop_appObject

boolean - Is the desktop app enabled?



128
129
130
# File 'lib/files.com/models/site.rb', line 128

def desktop_app
  @attributes[:desktop_app]
end

#desktop_app_session_ip_pinningObject

boolean - Is desktop app session IP pinning enabled?



133
134
135
# File 'lib/files.com/models/site.rb', line 133

def desktop_app_session_ip_pinning
  @attributes[:desktop_app_session_ip_pinning]
end

#desktop_app_session_lifetimeObject

int64 - Desktop app session lifetime (in hours)



138
139
140
# File 'lib/files.com/models/site.rb', line 138

def desktop_app_session_lifetime
  @attributes[:desktop_app_session_lifetime]
end

#disable_notificationsObject

boolean - Are notifications disabled?



148
149
150
# File 'lib/files.com/models/site.rb', line 148

def disable_notifications
  @attributes[:disable_notifications]
end

#disable_password_resetObject

boolean - Is password reset disabled?



153
154
155
# File 'lib/files.com/models/site.rb', line 153

def disable_password_reset
  @attributes[:disable_password_reset]
end

#disable_users_from_inactivity_period_daysObject

int64 - If greater than zero, users will unable to login if they do not show activity within this number of days.



578
579
580
# File 'lib/files.com/models/site.rb', line 578

def disable_users_from_inactivity_period_days
  @attributes[:disable_users_from_inactivity_period_days]
end

#disallowed_countriesObject

string - Comma seperated list of disallowed Country codes



143
144
145
# File 'lib/files.com/models/site.rb', line 143

def disallowed_countries
  @attributes[:disallowed_countries]
end

#domainObject

string - Custom domain



158
159
160
# File 'lib/files.com/models/site.rb', line 158

def domain
  @attributes[:domain]
end

#emailObject

email - Main email for this site



163
164
165
# File 'lib/files.com/models/site.rb', line 163

def email
  @attributes[:email]
end

#folder_permissions_groups_onlyObject

boolean - If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.



183
184
185
# File 'lib/files.com/models/site.rb', line 183

def folder_permissions_groups_only
  @attributes[:folder_permissions_groups_only]
end

#hipaaObject

boolean - Is there a signed HIPAA BAA between Files.com and this site?



188
189
190
# File 'lib/files.com/models/site.rb', line 188

def hipaa
  @attributes[:hipaa]
end

#icon128Object

Branded icon 128x128



193
194
195
# File 'lib/files.com/models/site.rb', line 193

def icon128
  @attributes[:icon128]
end

#icon16Object

Branded icon 16x16



198
199
200
# File 'lib/files.com/models/site.rb', line 198

def icon16
  @attributes[:icon16]
end

#icon32Object

Branded icon 32x32



203
204
205
# File 'lib/files.com/models/site.rb', line 203

def icon32
  @attributes[:icon32]
end

#icon48Object

Branded icon 48x48



208
209
210
# File 'lib/files.com/models/site.rb', line 208

def icon48
  @attributes[:icon48]
end

#immutable_files_set_atObject

date-time - Can files be modified?



213
214
215
# File 'lib/files.com/models/site.rb', line 213

def immutable_files_set_at
  @attributes[:immutable_files_set_at]
end

#include_password_in_welcome_emailObject

boolean - Include password in emails to new users?



218
219
220
# File 'lib/files.com/models/site.rb', line 218

def include_password_in_welcome_email
  @attributes[:include_password_in_welcome_email]
end

#languageObject

string - Site default language



223
224
225
# File 'lib/files.com/models/site.rb', line 223

def language
  @attributes[:language]
end

#ldap_base_dnObject

string - Base DN for looking up users in LDAP server



228
229
230
# File 'lib/files.com/models/site.rb', line 228

def ldap_base_dn
  @attributes[:ldap_base_dn]
end

#ldap_domainObject

string - Domain name that will be appended to usernames



233
234
235
# File 'lib/files.com/models/site.rb', line 233

def ldap_domain
  @attributes[:ldap_domain]
end

#ldap_enabledObject

boolean - Main LDAP setting: is LDAP enabled?



238
239
240
# File 'lib/files.com/models/site.rb', line 238

def ldap_enabled
  @attributes[:ldap_enabled]
end

#ldap_group_actionObject

string - Should we sync groups from LDAP server?



243
244
245
# File 'lib/files.com/models/site.rb', line 243

def ldap_group_action
  @attributes[:ldap_group_action]
end

#ldap_group_exclusionObject

string - Comma or newline separated list of group names (with optional wildcards) to exclude when syncing.



248
249
250
# File 'lib/files.com/models/site.rb', line 248

def ldap_group_exclusion
  @attributes[:ldap_group_exclusion]
end

#ldap_group_inclusionObject

string - Comma or newline separated list of group names (with optional wildcards) to include when syncing.



253
254
255
# File 'lib/files.com/models/site.rb', line 253

def ldap_group_inclusion
  @attributes[:ldap_group_inclusion]
end

#ldap_hostObject

string - LDAP host



258
259
260
# File 'lib/files.com/models/site.rb', line 258

def ldap_host
  @attributes[:ldap_host]
end

#ldap_host_2Object

string - LDAP backup host



263
264
265
# File 'lib/files.com/models/site.rb', line 263

def ldap_host_2
  @attributes[:ldap_host_2]
end

#ldap_host_3Object

string - LDAP backup host



268
269
270
# File 'lib/files.com/models/site.rb', line 268

def ldap_host_3
  @attributes[:ldap_host_3]
end

#ldap_portObject

int64 - LDAP port



273
274
275
# File 'lib/files.com/models/site.rb', line 273

def ldap_port
  @attributes[:ldap_port]
end

#ldap_secureObject

boolean - Use secure LDAP?



278
279
280
# File 'lib/files.com/models/site.rb', line 278

def ldap_secure
  @attributes[:ldap_secure]
end

#ldap_typeObject

string - LDAP type



283
284
285
# File 'lib/files.com/models/site.rb', line 283

def ldap_type
  @attributes[:ldap_type]
end

#ldap_user_actionObject

string - Should we sync users from LDAP server?



288
289
290
# File 'lib/files.com/models/site.rb', line 288

def ldap_user_action
  @attributes[:ldap_user_action]
end

#ldap_user_include_groupsObject

string - Comma or newline separated list of group names (with optional wildcards) - if provided, only users in these groups will be added or synced.



293
294
295
# File 'lib/files.com/models/site.rb', line 293

def ldap_user_include_groups
  @attributes[:ldap_user_include_groups]
end

#ldap_usernameObject

string - Username for signing in to LDAP server.



298
299
300
# File 'lib/files.com/models/site.rb', line 298

def ldap_username
  @attributes[:ldap_username]
end

#ldap_username_fieldObject

string - LDAP username field



303
304
305
# File 'lib/files.com/models/site.rb', line 303

def ldap_username_field
  @attributes[:ldap_username_field]
end

#login_help_textObject

string - Login help text



308
309
310
# File 'lib/files.com/models/site.rb', line 308

def 
  @attributes[:login_help_text]
end

#logoObject

Branded logo



313
314
315
# File 'lib/files.com/models/site.rb', line 313

def 
  @attributes[:logo]
end

#max_prior_passwordsObject

int64 - Number of prior passwords to disallow



318
319
320
# File 'lib/files.com/models/site.rb', line 318

def max_prior_passwords
  @attributes[:max_prior_passwords]
end

#nameObject

string - Site name



13
14
15
# File 'lib/files.com/models/site.rb', line 13

def name
  @attributes[:name]
end

#next_billing_amountObject

double - Next billing amount



323
324
325
# File 'lib/files.com/models/site.rb', line 323

def next_billing_amount
  @attributes[:next_billing_amount]
end

#next_billing_dateObject

string - Next billing date



328
329
330
# File 'lib/files.com/models/site.rb', line 328

def next_billing_date
  @attributes[:next_billing_date]
end

#non_sso_groups_allowedObject

boolean - If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.



173
174
175
# File 'lib/files.com/models/site.rb', line 173

def non_sso_groups_allowed
  @attributes[:non_sso_groups_allowed]
end

#non_sso_users_allowedObject

boolean - If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.



178
179
180
# File 'lib/files.com/models/site.rb', line 178

def non_sso_users_allowed
  @attributes[:non_sso_users_allowed]
end

#office_integration_availableObject

boolean - Allow users to use Office for the web?



333
334
335
# File 'lib/files.com/models/site.rb', line 333

def office_integration_available
  @attributes[:office_integration_available]
end

#opt_out_globalObject

boolean - Use servers in the USA only?



338
339
340
# File 'lib/files.com/models/site.rb', line 338

def opt_out_global
  @attributes[:opt_out_global]
end

#overage_notified_atObject

date-time - Last time the site was notified about an overage



343
344
345
# File 'lib/files.com/models/site.rb', line 343

def overage_notified_at
  @attributes[:overage_notified_at]
end

#overage_notifyObject

boolean - Notify site email of overages?



348
349
350
# File 'lib/files.com/models/site.rb', line 348

def overage_notify
  @attributes[:overage_notify]
end

#overdueObject

boolean - Is this site’s billing overdue?



353
354
355
# File 'lib/files.com/models/site.rb', line 353

def overdue
  @attributes[:overdue]
end

#password_min_lengthObject

int64 - Shortest password length for users



358
359
360
# File 'lib/files.com/models/site.rb', line 358

def password_min_length
  @attributes[:password_min_length]
end

#password_require_letterObject

boolean - Require a letter in passwords?



363
364
365
# File 'lib/files.com/models/site.rb', line 363

def password_require_letter
  @attributes[:password_require_letter]
end

#password_require_mixedObject

boolean - Require lower and upper case letters in passwords?



368
369
370
# File 'lib/files.com/models/site.rb', line 368

def password_require_mixed
  @attributes[:password_require_mixed]
end

#password_require_numberObject

boolean - Require a number in passwords?



373
374
375
# File 'lib/files.com/models/site.rb', line 373

def password_require_number
  @attributes[:password_require_number]
end

#password_require_specialObject

boolean - Require special characters in password?



378
379
380
# File 'lib/files.com/models/site.rb', line 378

def password_require_special
  @attributes[:password_require_special]
end

#password_require_unbreachedObject

boolean - Require passwords that have not been previously breached? (see haveibeenpwned.com/)



383
384
385
# File 'lib/files.com/models/site.rb', line 383

def password_require_unbreached
  @attributes[:password_require_unbreached]
end

#password_requirements_apply_to_bundlesObject

boolean - Require bundles’ passwords, and passwords for other items (inboxes, public shares, etc.) to conform to the same requirements as users’ passwords?



388
389
390
# File 'lib/files.com/models/site.rb', line 388

def password_requirements_apply_to_bundles
  @attributes[:password_requirements_apply_to_bundles]
end

#password_validity_daysObject

int64 - Number of days password is valid



393
394
395
# File 'lib/files.com/models/site.rb', line 393

def password_validity_days
  @attributes[:password_validity_days]
end

#phoneObject

string - Site phone number



398
399
400
# File 'lib/files.com/models/site.rb', line 398

def phone
  @attributes[:phone]
end

#reply_to_emailObject

email - Reply-to email for this site



168
169
170
# File 'lib/files.com/models/site.rb', line 168

def reply_to_email
  @attributes[:reply_to_email]
end

#require_2faObject

boolean - Require two-factor authentication for all users?



403
404
405
# File 'lib/files.com/models/site.rb', line 403

def require_2fa
  @attributes[:require_2fa]
end

#require_2fa_stop_timeObject

date-time - If set, requirement for two-factor authentication has been scheduled to end on this date-time.



408
409
410
# File 'lib/files.com/models/site.rb', line 408

def require_2fa_stop_time
  @attributes[:require_2fa_stop_time]
end

#require_2fa_user_typeObject

string - What type of user is required to use two-factor authentication (when require_2fa is set to ‘true` for this site)?



413
414
415
# File 'lib/files.com/models/site.rb', line 413

def require_2fa_user_type
  @attributes[:require_2fa_user_type]
end

#sessionObject

Current session



418
419
420
# File 'lib/files.com/models/site.rb', line 418

def session
  @attributes[:session]
end

#session_expiryObject

double - Session expiry in hours



478
479
480
# File 'lib/files.com/models/site.rb', line 478

def session_expiry
  @attributes[:session_expiry]
end

#session_pinned_by_ipObject

boolean - Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)



423
424
425
# File 'lib/files.com/models/site.rb', line 423

def session_pinned_by_ip
  @attributes[:session_pinned_by_ip]
end

#sftp_user_root_enabledObject

boolean - Use user FTP roots also for SFTP?



428
429
430
# File 'lib/files.com/models/site.rb', line 428

def sftp_user_root_enabled
  @attributes[:sftp_user_root_enabled]
end

#sharing_enabledObject

boolean - Allow bundle creation



433
434
435
# File 'lib/files.com/models/site.rb', line 433

def sharing_enabled
  @attributes[:sharing_enabled]
end

boolean - Show request access link for users without access? Currently unused.



438
439
440
# File 'lib/files.com/models/site.rb', line 438

def show_request_access_link
  @attributes[:show_request_access_link]
end

string - Custom site footer text



443
444
445
# File 'lib/files.com/models/site.rb', line 443

def site_footer
  @attributes[:site_footer]
end

#site_headerObject

string - Custom site header text



448
449
450
# File 'lib/files.com/models/site.rb', line 448

def site_header
  @attributes[:site_header]
end

#smtp_addressObject

string - SMTP server hostname or IP



453
454
455
# File 'lib/files.com/models/site.rb', line 453

def smtp_address
  @attributes[:smtp_address]
end

#smtp_authenticationObject

string - SMTP server authentication type



458
459
460
# File 'lib/files.com/models/site.rb', line 458

def smtp_authentication
  @attributes[:smtp_authentication]
end

#smtp_fromObject

string - From address to use when mailing through custom SMTP



463
464
465
# File 'lib/files.com/models/site.rb', line 463

def smtp_from
  @attributes[:smtp_from]
end

#smtp_portObject

int64 - SMTP server port



468
469
470
# File 'lib/files.com/models/site.rb', line 468

def smtp_port
  @attributes[:smtp_port]
end

#smtp_usernameObject

string - SMTP server username



473
474
475
# File 'lib/files.com/models/site.rb', line 473

def smtp_username
  @attributes[:smtp_username]
end

#ssl_requiredObject

boolean - Is SSL required? Disabling this is insecure.



483
484
485
# File 'lib/files.com/models/site.rb', line 483

def ssl_required
  @attributes[:ssl_required]
end

#subdomainObject

string - Site subdomain



488
489
490
# File 'lib/files.com/models/site.rb', line 488

def subdomain
  @attributes[:subdomain]
end

#switch_to_plan_dateObject

date-time - If switching plans, when does the new plan take effect?



493
494
495
# File 'lib/files.com/models/site.rb', line 493

def switch_to_plan_date
  @attributes[:switch_to_plan_date]
end

#tls_disabledObject

boolean - Is TLS disabled(site setting)?



498
499
500
# File 'lib/files.com/models/site.rb', line 498

def tls_disabled
  @attributes[:tls_disabled]
end

#trial_days_leftObject

int64 - Number of days left in trial



503
504
505
# File 'lib/files.com/models/site.rb', line 503

def trial_days_left
  @attributes[:trial_days_left]
end

#trial_untilObject

date-time - When does this Site trial expire?



508
509
510
# File 'lib/files.com/models/site.rb', line 508

def trial_until
  @attributes[:trial_until]
end

#updated_atObject

date-time - Last time this Site was updated



513
514
515
# File 'lib/files.com/models/site.rb', line 513

def updated_at
  @attributes[:updated_at]
end

#use_provided_modified_atObject

boolean - Allow uploaders to set ‘provided_modified_at` for uploaded files?



518
519
520
# File 'lib/files.com/models/site.rb', line 518

def use_provided_modified_at
  @attributes[:use_provided_modified_at]
end

#userObject

User of current session



523
524
525
# File 'lib/files.com/models/site.rb', line 523

def user
  @attributes[:user]
end

#user_lockoutObject

boolean - Will users be locked out after incorrect login attempts?



528
529
530
# File 'lib/files.com/models/site.rb', line 528

def user_lockout
  @attributes[:user_lockout]
end

#user_lockout_lock_periodObject

int64 - How many hours to lock user out for failed password?



533
534
535
# File 'lib/files.com/models/site.rb', line 533

def user_lockout_lock_period
  @attributes[:user_lockout_lock_period]
end

#user_lockout_triesObject

int64 - Number of login tries within ‘user_lockout_within` hours before users are locked out



538
539
540
# File 'lib/files.com/models/site.rb', line 538

def user_lockout_tries
  @attributes[:user_lockout_tries]
end

#user_lockout_withinObject

int64 - Number of hours for user lockout window



543
544
545
# File 'lib/files.com/models/site.rb', line 543

def user_lockout_within
  @attributes[:user_lockout_within]
end

#user_requests_enabledObject

boolean - Enable User Requests feature



548
549
550
# File 'lib/files.com/models/site.rb', line 548

def user_requests_enabled
  @attributes[:user_requests_enabled]
end

#welcome_custom_textObject

string - Custom text send in user welcome email



553
554
555
# File 'lib/files.com/models/site.rb', line 553

def welcome_custom_text
  @attributes[:welcome_custom_text]
end

#welcome_email_ccObject

email - Include this email in welcome emails if enabled



558
559
560
# File 'lib/files.com/models/site.rb', line 558

def welcome_email_cc
  @attributes[:welcome_email_cc]
end

#welcome_email_enabledObject

boolean - Will the welcome email be sent to new users?



563
564
565
# File 'lib/files.com/models/site.rb', line 563

def welcome_email_enabled
  @attributes[:welcome_email_enabled]
end

#welcome_screenObject

string - Does the welcome screen appear?



568
569
570
# File 'lib/files.com/models/site.rb', line 568

def welcome_screen
  @attributes[:welcome_screen]
end

#windows_mode_ftpObject

boolean - Does FTP user Windows emulation mode?



573
574
575
# File 'lib/files.com/models/site.rb', line 573

def windows_mode_ftp
  @attributes[:windows_mode_ftp]
end