Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F905109
clients_controller.rb
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Aug 29, 9:11 PM
Size
838 B
Mime Type
text/x-ruby
Expires
Sun, Aug 31, 9:11 PM (9 h, 12 m)
Engine
blob
Format
Raw Data
Handle
252468
Attached To
rARCHIVING archiving
clients_controller.rb
View Options
class
ClientsController
<
ApplicationController
before_action
:set_client
,
only
:
:show
before_action
:fetch_logs
# GET /clients
def
index
@client_ids
=
Client
.
for_user
(
current_user
.
id
)
.
pluck
(
:ClientId
)
@clients
=
Client
.
where
(
ClientId
:
@client_ids
)
.
includes
(
:jobs
)
@active_jobs
=
Job
.
running
.
where
(
ClientId
:
@client_ids
)
.
group
(
:ClientId
)
.
count
@hosts
=
current_user
.
hosts
.
not_baculized
get_charts
end
# GET /clients/1
def
show
@client_ids
=
[
@client
.
id
]
get_charts
end
private
def
set_client
@client
=
Client
.
for_user
(
current_user
.
id
)
.
find
(
params
[
:id
]
)
end
def
get_charts
days_ago
=
params
.
fetch
(
:days_back
,
7
)
.
to_i
rescue
7
@job_status
=
ChartGenerator
.
job_statuses
(
@client_ids
,
days_ago
)
@job_stats
=
ChartGenerator
.
job_stats
(
@client_ids
,
days_ago
-
1
)
end
end
Event Timeline
Log In to Comment