Marcin Łojewski
f2f3a897a5
Unit tests for Crypto package
2018-06-12 21:54:06 +02:00
Marcin Łojewski
97146d6429
New screenshot
2018-06-10 10:07:57 +02:00
Marcin Łojewski
8a50badca4
Hide password
2018-06-10 09:49:50 +02:00
Marcin Łojewski
28f7da0c0d
admin site template
2018-06-10 09:40:18 +02:00
Marcin Łojewski
00db5f79d4
Merge pull request #37 from pedro-nonfree/patch-1
...
update Column Settings for wordpress
2018-06-01 12:09:02 +02:00
pedro-nonfree
8d1e9cddcb
update Column Settings for wordpress
...
fixes #36
2018-06-01 10:58:25 +02:00
Marcin Łojewski
7dce81cc2c
Merge pull request #35 from Ko-/master
...
Fix filename of group_sql.php
2018-05-31 11:09:48 +02:00
Ko-
393bdf97f9
Fix filename of group_sql.php
2018-05-30 13:02:53 +02:00
Marcin Łojewski
7649d23052
Manage limit and offset in usersInGroup function
...
Since user_sql apps don't manage limit and offset in **usersInGroup** function:
`$rows = $this -> helper -> runQuery('getGroupUsers', array('gid' => $gid), false, true);`
The unshareFromGroup function of **Activity** app start a infinity loop :
```
while (!empty($users)) {
$this->addNotificationsForGroupUsers($users, 'unshared_by', $share->getNodeId(), $share->getNodeType(), $share->getTarget(), $share->getId());
$offset += self::USER_BATCH_SIZE;
$users = $group->searchUsers('', self::USER_BATCH_SIZE, $offset);
}
```
to fix that, just add offset and limit params to runQuery :
```
$rows = $this -> helper -> runQuery('getGroupUsers', array('gid' => $gid), false, true, ['limit' => $limit, 'offset' => $offset]);
```
2018-05-11 18:28:37 +02:00
Marcin Łojewski
c1cc89f456
'lib' rewritten.
2018-03-25 20:57:31 +02:00
Marcin Łojewski
ed5ec82479
New hashing algorithms.
2018-03-02 21:56:13 +01:00
Marcin Łojewski
3d901e3fc2
Use hash_equals method to compare the hashes.
2018-02-28 23:53:33 +01:00
Marcin Łojewski
a6a502fe7c
Courier hashes. New traits.
2018-02-28 23:45:28 +01:00
Marcin Łojewski
9c13804638
Singleton pattern trait.
2018-02-28 23:07:35 +01:00
Marcin Łojewski
7872d98dd6
SHA1 and MD5 hash implementation.
2018-02-28 21:43:42 +01:00
Marcin Łojewski
3251067b38
Set to default new logic. Add cleartext password hash implementation.
...
TODO:
- add new implementation of the rest of currently supported hashes
- create update.php changing hash names in the config
2018-02-28 21:31:42 +01:00
Marcin Łojewski
7672c66c75
New interface. This interface must be implemented by all supported hash algorithms.
2018-02-28 21:23:17 +01:00
Marcin Łojewski
936a831e5a
- code formatting (PSR-2)
...
- removed all ownCloud references
- removed update.php as its supported version was never published on the app store
- updated info.xml
2018-02-28 20:09:12 +01:00
Marcin Łojewski
ebcdaa813b
crypt_type 'drupal' for Drupal 7 authentication
2018-02-18 18:53:33 +01:00
Marcin Łojewski
135c1506e2
Update CHANGELOG.md
2018-02-11 18:35:53 +01:00
Marcin Łojewski
e17f521a04
Merge pull request #22 from Nullcaller/master
...
Add options for Courier authlib authentication
2018-02-11 18:33:32 +01:00
Nullcaller
f194c35503
Add new hash options to admin control panel
2018-02-10 04:33:25 +03:00
Nullcaller
b456f6c921
Add options for Courier authlib authentication to user_sql.php
...
Availible options:
courier_md5 – base64-encoded md5
courier_md5raw – hexadecimal md5
courier_sha1 – base64-encoded sha1
courier_sha256 – base64-encoded sha256
2018-02-10 04:21:12 +03:00
Marcin Łojewski
6a9349c02a
Fix URLs
2018-02-07 11:01:54 +01:00
Marcin Łojewski
57c7785a93
Unreleased section in CHANGELOG.me
2018-02-06 22:09:10 +01:00
Marcin Łojewski
743d47f9ac
Add required field "bugs", fields "repository", "screenshot"
2018-02-06 22:03:23 +01:00
Marcin Łojewski
2f14ec7832
Updated CHANGELOG.md, name fix
2018-02-06 21:36:50 +01:00
Marcin Łojewski
9e539de176
Merge pull request #21 from gpgmailencrypt/master
...
code for supervisor mode removed
2018-01-31 19:28:41 +01:00
Horst Knorr
78a0247898
code for supervisor mode removed, because functionality exists in official nextcloud app "impersonate" with better GUI
2018-01-30 19:42:37 +01:00
Marcin Łojewski
bac7236ab2
Merge pull request #20 from gpgmailencrypt/master
...
SHA1 encryption type reactivated
2018-01-30 11:49:58 +01:00
Horst Knorr
cf98f74ba7
code cleanup
2018-01-29 17:52:51 +01:00
Horst Knorr
cda958dc91
bugfix: encryption type sha1 reactivated
2018-01-29 17:50:20 +01:00
Marcin Łojewski
7517dfca27
Merge pull request #19 from gpgmailencrypt/master
...
Nextcloud 13 support
2018-01-29 11:43:05 +01:00
Horst Knorr
02b47f4e67
added image and nextcloud 13 bugfixes for group_sql
2018-01-28 14:48:04 +01:00
Horst Knorr
396c9f0968
bugfixed for Nextcloud 13
2018-01-28 14:41:28 +01:00
Horst Knorr
2e1179e035
added:
...
* Nextcloud 12 & 13 support
* added SALT support for password algorithms "system" and "password_hash"
* added security fix for password length sniffing attacks
* moved files to be more on the standard places
* renamed some files to be more standard like
* source code changes to be more standard like (max 80 characters)
2018-01-28 14:25:04 +01:00
Marcin Łojewski
2797f4ba14
Merge pull request #15 from pauldeng/master
...
Added JHipster in Integration section
2018-01-20 09:23:18 +01:00
Marcin Łojewski
ff49073f50
Merge pull request #16 from nextcloud/NextCloud-Nextcloud
...
NextCloud -> Nextcloud; small fixes
2018-01-20 09:22:34 +01:00
Marius Blüm
e43b8ee4ae
missed one typo
2018-01-03 12:31:07 +01:00
Marius Blüm
f1915df080
typo NextCloud -> Nextcloud
2018-01-03 12:29:52 +01:00
Marius Blüm
5d4f310108
NextCloud -> Nextcloud; small fixes
2018-01-03 12:28:30 +01:00
Paul Peng Deng
2331c740ce
Added JHipster in Integration section
2018-01-03 22:23:41 +11:00
Marcin Łojewski
7009226642
Merge pull request #14 from pauldeng/master
...
Update README.md
2018-01-02 15:10:48 +01:00
Marcin Łojewski
1b1e42709e
Update README.md
2018-01-02 15:10:06 +01:00
Paul Peng Deng
0b733b787e
Update README.md
...
Improved the format and added new sections
2018-01-03 01:06:11 +11:00
Marcin Łojewski
cce53ca00b
Changelog updated
2017-12-30 11:21:47 +01:00
Marcin Łojewski
7440949ecb
Fix issue: Column autocomplete uses wrong table in "Groups Settings"
2017-12-30 11:19:48 +01:00
Marcin Łojewski
105f5b6762
Autocomplete for PostreSQL
2017-12-30 10:23:52 +01:00
Marius Blüm
c6956d24af
update URLs to Nextcloud
2017-12-26 18:45:37 +01:00
Marcin Łojewski
c913d19bb4
Revert appid, update.php. Add changelog file
2017-12-26 16:41:04 +01:00