Skip to content

Commit 984e43f

Browse files
Merge pull request #28 from stevenmaguire/sm-add-custom-fields
Add custom fields support
2 parents 18e4a44 + 233b953 commit 984e43f

File tree

4 files changed

+135
-0
lines changed

4 files changed

+135
-0
lines changed

API-GUIDE.md

+39
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,13 @@ $result = $client->updateBoardLabelNameRed($boardId, $attributes);
255255
```php
256256
$result = $client->updateBoardLabelNameYellow($boardId, $attributes);
257257
```
258+
259+
#### Get board custom fields
260+
261+
```php
262+
$result = $client->getBoardCustomFields($boardId);
263+
```
264+
258265
#### Get board labels
259266

260267
```php
@@ -600,6 +607,13 @@ $result = $client->addCardChecklist($cardId, $attributes);
600607
```php
601608
$result = $client->deleteCardChecklist($cardId, $checklistId);
602609
```
610+
611+
#### Update card custom field
612+
613+
```php
614+
$result = $client->updateCardCustomField($cardId, $customFieldId, $attributes);
615+
```
616+
603617
#### Update card closed
604618

605619
```php
@@ -828,6 +842,31 @@ $result = $client->updateChecklistName($checklistId, $attributes);
828842
```php
829843
$result = $client->updateChecklistPos($checklistId, $attributes);
830844
```
845+
### CustomFields
846+
847+
#### Create custom field
848+
849+
```php
850+
$result = $client->addCustomField($attributes);
851+
```
852+
853+
#### Add option to a custom field
854+
855+
```php
856+
$result = $client->addCustomFieldOption($customFieldId, $attributes);
857+
```
858+
859+
#### Update custom field option
860+
861+
```php
862+
$result = $client->updateCustomFieldOption($customFieldId, $optionId, $attributes);
863+
```
864+
865+
#### Delete custom field
866+
867+
```php
868+
$result = $client->deleteCustomField($customFieldId);
869+
```
831870

832871
### Labels
833872

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
#Changelog
2+
23
All Notable changes to `trello-php` will be documented in this file
34

5+
## 0.5.0 - 2018-03-23
6+
7+
### Added
8+
- Added support for custom fields - https://developers.trello.com/docs/getting-started-custom-fields
9+
10+
### Deprecated
11+
- Nothing
12+
13+
### Fixed
14+
- Nothing
15+
16+
### Removed
17+
- Nothing
18+
19+
### Security
20+
- Nothing
21+
422
## 0.4.1 - 2017-03-22
523

624
### Added

src/Traits/ApiMethodsTrait.php

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ trait ApiMethodsTrait
5858
'updateBoardLabelNamePurple' => ['put', 'boards/%s/labelNames/purple'],
5959
'updateBoardLabelNameRed' => ['put', 'boards/%s/labelNames/red'],
6060
'updateBoardLabelNameYellow' => ['put', 'boards/%s/labelNames/yellow'],
61+
'getBoardCustomFields' => ['get', 'boards/%s/customFields'],
6162
'getBoardLabels' => ['get', 'boards/%s/labels'],
6263
'addBoardLabel' => ['post', 'boards/%s/labels'],
6364
'getBoardLabel' => ['get', 'boards/%s/labels/%s'],
@@ -139,6 +140,7 @@ trait ApiMethodsTrait
139140
'addCardLabel' => ['post', 'cards/%s/labels'],
140141
'updateCardLabel' => ['put', 'cards/%s/labels'],
141142
'deleteCardLabel' => ['delete', 'cards/%s/labels/%s'],
143+
'updateCardCustomField' => ['put', 'cards/%s/customField/%s'],
142144
'getCardList' => ['get', 'cards/%s/list'],
143145
'getCardListField' => ['get', 'cards/%s/list/%s'],
144146
'addCardMarkAssociatedNotificationsRead' => ['post', 'cards/%s/markAssociatedNotificationsRead'],
@@ -170,6 +172,10 @@ trait ApiMethodsTrait
170172
'updateChecklistIdCard' => ['put', 'checklists/%s/idCard'],
171173
'updateChecklistName' => ['put', 'checklists/%s/name'],
172174
'updateChecklistPos' => ['put', 'checklists/%s/pos'],
175+
'addCustomField' => ['post', 'customFields'],
176+
'addCustomFieldOption' => ['post', 'customField/%s/options'],
177+
'updateCustomFieldOption' => ['put', 'customField/%s/options/%s'],
178+
'deleteCustomField' => ['delete', 'customField/%s'],
173179
'addLabel' => ['post', 'labels'],
174180
'deleteLabel' => ['delete', 'labels/%s'],
175181
'getLabel' => ['get', 'labels/%s'],

tests/ApiTestTrait.php

+72
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,17 @@ public function testUpdateBoardLabelNameYellow()
608608
$this->assertExpectedEqualsResult($payload, $result);
609609
}
610610

611+
public function testGetBoardCustomFields()
612+
{
613+
$boardId = $this->getTestString();
614+
$payload = $this->getSuccessPayload();
615+
$this->prepareFor("GET", sprintf("/boards/%s/customFields", $boardId), "", $payload);
616+
617+
$result = $this->client->getBoardCustomFields($boardId);
618+
619+
$this->assertExpectedEqualsResult($payload, $result);
620+
}
621+
611622
public function testGetBoardLabels()
612623
{
613624
$boardId = $this->getTestString();
@@ -1308,6 +1319,19 @@ public function testDeleteCardChecklistCheckItem()
13081319
$this->assertExpectedEqualsResult($payload, $result);
13091320
}
13101321

1322+
public function testUpdateCardCustomField()
1323+
{
1324+
$cardId = $this->getTestString();
1325+
$customFieldId = $this->getTestString();
1326+
$attributes = $this->getTestAttributes();
1327+
$payload = $this->getSuccessPayload();
1328+
$this->prepareFor("PUT", sprintf("/cards/%s/customField/%s", $cardId, $customFieldId), "", $payload);
1329+
1330+
$result = $this->client->updateCardCustomField($cardId, $customFieldId, $attributes);
1331+
1332+
$this->assertExpectedEqualsResult($payload, $result);
1333+
}
1334+
13111335
public function testUpdateCardChecklistCheckItem()
13121336
{
13131337
$cardId = $this->getTestString();
@@ -1944,6 +1968,54 @@ public function testUpdateChecklistPos()
19441968
$this->assertExpectedEqualsResult($payload, $result);
19451969
}
19461970

1971+
public function testAddCustomField()
1972+
{
1973+
$attributes = $this->getTestAttributes();
1974+
$payload = $this->getSuccessPayload();
1975+
$this->prepareFor("POST", "/customFields", "", $payload);
1976+
1977+
$result = $this->client->addCustomField($attributes);
1978+
1979+
$this->assertExpectedEqualsResult($payload, $result);
1980+
}
1981+
1982+
public function testAddCustomFieldOption()
1983+
{
1984+
$customFieldId = $this->getTestString();
1985+
$attributes = $this->getTestAttributes();
1986+
$payload = $this->getSuccessPayload();
1987+
$this->prepareFor("POST", sprintf("/customField/%s/options", $customFieldId), "", $payload);
1988+
1989+
$result = $this->client->addCustomFieldOption($customFieldId, $attributes);
1990+
1991+
$this->assertExpectedEqualsResult($payload, $result);
1992+
}
1993+
1994+
public function testUpdateCustomFieldOption()
1995+
{
1996+
$customFieldId = $this->getTestString();
1997+
$optionId = $this->getTestString();
1998+
$attributes = $this->getTestAttributes();
1999+
$payload = $this->getSuccessPayload();
2000+
$this->prepareFor("PUT", sprintf("/customField/%s/options/%s", $customFieldId, $optionId), "", $payload);
2001+
2002+
$result = $this->client->updateCustomFieldOption($customFieldId, $optionId, $attributes);
2003+
2004+
$this->assertExpectedEqualsResult($payload, $result);
2005+
}
2006+
2007+
public function testDeleteCustomFieldOption()
2008+
{
2009+
$customFieldId = $this->getTestString();
2010+
$attributes = $this->getTestAttributes();
2011+
$payload = $this->getSuccessPayload();
2012+
$this->prepareFor("DELETE", sprintf("/customField/%s", $customFieldId), "", $payload);
2013+
2014+
$result = $this->client->deleteCustomField($customFieldId);
2015+
2016+
$this->assertExpectedEqualsResult($payload, $result);
2017+
}
2018+
19472019
public function testAddLabel()
19482020
{
19492021
$attributes = $this->getTestAttributes();

0 commit comments

Comments
 (0)