Commit Graph

3108 Commits

Author SHA1 Message Date
Michael Jumper
6dc4adf6c9 GUAC-1364: Implicitly invalidate auth tokens when handling GuacamoleUnauthorizedExceptions within REST services. 2015-10-16 12:35:10 -07:00
Michael Jumper
226f37e7e7 GUAC-1364: Restrict use of reflection API to objects compatible with Java 6. 2015-10-16 11:24:39 -07:00
Michael Jumper
25dff1a322 GUAC-1364: Pull auth token from the parameters of methods which throw a GuacamoleUnauthorizedException. Stub out automatic invalidation of that token. 2015-10-16 11:24:39 -07:00
Michael Jumper
51712f2727 GUAC-1364: GuacamoleCredentialsException should be a GuacamoleUnauthorizedException (not just a generic "security" exception). 2015-10-16 11:24:39 -07:00
James Muehlner
f5e5e90158 Merge pull request #277 from glyptodon/fix-sort-order
GUAC-1193: Fix the history sort order
2015-10-16 09:38:55 -07:00
Michael Jumper
404a9ee77d GUAC-1193: Fix the history sort order - sorting mainly by username for historical records is just silly. 2015-10-15 16:59:53 -07:00
James Muehlner
74121cb796 Merge pull request #276 from glyptodon/GUAC-1193
GUAC-1193: Implement searchable connection history interface
2015-10-15 15:58:40 -07:00
Michael Jumper
e5d1458ef7 GUAC-1193: We're displaying history records, not user sessions. 2015-10-15 15:25:50 -07:00
Michael Jumper
e71d7e3a4f GUAC-1193: Fix year of copyright notice. 2015-10-15 15:24:56 -07:00
Michael Jumper
a24e754c80 GUAC-1193: Fix documentation of historyRecords property. 2015-10-15 15:23:07 -07:00
Michael Jumper
854e7e8196 GUAC-1193: Reword history search instructions. 2015-10-15 14:38:19 -07:00
Michael Jumper
aa2261c282 GUAC-1193: Use actual form and submit button - allow automatic handling of searching via pressing "Enter", etc. 2015-10-15 14:07:26 -07:00
Michael Jumper
83edfb9832 GUAC-1193: Use filter token parser to split search string. 2015-10-15 14:03:14 -07:00
Michael Jumper
fc11926288 GUAC-1193: Add filter placeholder to search input field. 2015-10-15 13:50:49 -07:00
Michael Jumper
e221933e03 GUAC-1193: Remove use of @AuthProviderRESTExposure from history service (not used as of GUAC-1364). 2015-10-15 13:25:19 -07:00
Michael Jumper
cef124e212 Merge branch 'master' into GUAC-1193 2015-10-15 13:24:14 -07:00
James Muehlner
38e62bd28e Merge pull request #275 from glyptodon/remove-auth-provider-rest-exposure
GUAC-1364: Finally remove the @AuthProviderRESTExposure annotation.
2015-10-14 17:33:40 -07:00
Michael Jumper
4b26750a3a GUAC-1364: Finally remove the @AuthProviderRESTExposure annotation. 2015-10-14 17:28:30 -07:00
James Muehlner
fdbc68bb92 GUAC-1193: Implement front end for connection history. 2015-10-13 23:38:55 -07:00
James Muehlner
03c1ac1876 GUAC-1193 Add required connection name property to connection record. 2015-10-13 20:04:24 -07:00
James Muehlner
6979ca8e29 Merge pull request #273 from glyptodon/dialog-overflow
GUAC-1349: Ensure file transfer dialog does not overflow viewport bounds.
2015-10-13 10:39:15 -07:00
James Muehlner
bd249a2a36 Merge pull request #274 from glyptodon/restrict-lang
GUAC-1345: Restrict available languages if explicitly configured
2015-10-12 18:05:42 -07:00
Michael Jumper
fdd23036a2 GUAC-1345: Add 'allowed-languages' property. Restrict loaded languages to keys explicitly listed, if any. 2015-10-12 17:31:59 -07:00
Michael Jumper
35a828bfb6 GUAC-1345: Do not attempt to retrieve translation files for languages which are not explicitly listed as available by the REST API. 2015-10-12 17:11:46 -07:00
Michael Jumper
c57893f5d3 GUAC-1345: Add simple property type which parses to a set of strings. 2015-10-12 17:10:46 -07:00
Michael Jumper
27fea9574b GUAC-1349: Ensure file transfer dialog does not overflow viewport bounds. 2015-10-12 12:52:18 -07:00
Michael Jumper
3c271da9b4 GUAC-1193: Do not use <bind> within <foreach>, as it only substitutes the last bound value for *ALL* usages of the created variable. Do not use LIKE, as we would then have to escape the search term in Java. 2015-10-08 17:56:12 -07:00
Michael Jumper
3cdcb1004f GUAC-1193: Move history record query and permission checks into ConnectionService. 2015-10-08 17:55:14 -07:00
Michael Jumper
9b99fd7323 GUAC-1193: Add searchReadable() query, limited by available permissions. 2015-10-08 17:55:14 -07:00
Michael Jumper
b02fdb673a GUAC-1193: Fix ordering of record search results (OGNL comparison for enums is not string-based). 2015-10-08 14:35:06 -07:00
Michael Jumper
ac71bf553a GUAC-1193: Remove unused import. 2015-10-08 14:00:03 -07:00
Michael Jumper
2ce4fd12ad GUAC-1193: Add PostgreSQL version of history query. 2015-10-08 13:54:01 -07:00
Michael Jumper
ef128b492d GUAC-1193: Fix description of query. 2015-10-08 13:53:49 -07:00
James Muehlner
a631aa803b GUAC-1193: Implement JDBC ConnectionRecordSet. Add MySQL mapping. 2015-10-06 23:06:21 -07:00
James Muehlner
ae9a39edb9 GUAC-1193: Do not search for empty terms. 2015-10-06 23:05:18 -07:00
James Muehlner
1b5663f5c0 GUAC-1193: Document possibility of side effects when using subset functions of ConnectionRecordSet. 2015-10-06 22:47:04 -07:00
James Muehlner
189265165a Merge pull request #272 from glyptodon/new-media-streams
GUAC-1354: Migrate to new streaming mechanism.
2015-10-02 23:27:17 -07:00
Michael Jumper
d4f4ec0fb2 GUAC-1354: Use ArrayBuffer.slice - do not call slice directly on typed arrays (not widely supported). 2015-10-02 16:52:37 -07:00
Michael Jumper
079e3dad8c GUAC-1354: Dynamically split and reassemble audio packets to minimize clicking. 2015-10-02 16:42:24 -07:00
Michael Jumper
a3dd959dc4 GUAC-1354: Do not recalculate max latency using packet duration. Audio packet duration will ALWAYS be roughly the same due to the max blob size. 2015-09-30 17:11:54 -07:00
Michael Jumper
324c800167 GUAC-1354: Use Guacamole.AudioPlayer.getSupportedTypes() to query available audio mimetypes within webapp. 2015-09-30 17:07:14 -07:00
Michael Jumper
572534c6d3 GUAC-1354: Use Web Audio API timestamps directly - no need to convert to milliseconds and back. 2015-09-30 17:06:23 -07:00
Michael Jumper
f0e6da86c9 GUAC-1354: Use Guacamole.AudioPlayer.getInstance(), etc. to abstract away the various implementations. 2015-09-30 17:02:18 -07:00
Michael Jumper
df57eac616 GUAC-1354: Use past audio packet size to determine playback latency threshold for audio. Add missing private annotations. 2015-09-28 13:23:40 -07:00
Michael Jumper
ff5687c01e GUAC-1354: Refactor Guacamole.AudioChannel to Guacamole.AudioPlayer. 2015-09-28 12:37:09 -07:00
Mike Jumper
c54001476d Merge pull request #253 from flangelo/num_keypad_map
GUAC-1314: Added mapping of keycodes for numeric keypad and changed k…
2015-09-24 13:25:52 -07:00
Frode Langelo
ff255ce977 GUAC-1314: Remove is_mac flag 2015-09-24 15:55:54 +00:00
Frode Langelo
005d7897fb GUAC-1314: Remove mapping of Mac's Clear to Num Lock. 2015-09-24 03:21:27 +00:00
Michael Jumper
3c5f72b288 GUAC-1193: Include connection identifier within history records. 2015-09-23 16:02:17 -07:00
Michael Jumper
e1908bf6e8 GUAC-1193: Implement and document historyService - a JavaScript service for accessing the history REST endpoint. 2015-09-23 15:46:38 -07:00