Afaque Hussain
3b2aed16c9
Moving code off channel
...
Summary: Deleted code which used channel. Created PhabricatorChatLogChannelQuery.php
Test Plan: By manually checking in the chatlog application.
Reviewers: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D5010
2013-02-22 07:00:50 -08:00
epriestley
4f2aa99248
Add "serviceName" and "serviceType" to bot and chat logger
...
Summary:
Make each adapter provide a "serviceType" (campfire, flowdock, IRC) and "serviceName" (irc network / chat server) so that we can disambiguate between, e.g., "#phabricator on EFNet" and "#phabricator on FreeNode".
Make the chatlog handler ship them over Conduit.
Also fix some "policy can not be null" bugs with chatlog recording.
Test Plan:
Verified data inserted correctly:
mysql> select * from chatlog_channel;
+----+------------------+-------------+--------------+------------+------------+-------------+--------------+
| id | serviceName | serviceType | channelName | viewPolicy | editPolicy | dateCreated | dateModified |
+----+------------------+-------------+--------------+------------+------------+-------------+--------------+
| 1 | irc.freenode.net | IRC | #phabricator | users | users | 1361201689 | 1361201689 |
+----+------------------+-------------+--------------+------------+------------+-------------+--------------+
1 row in set (0.00 sec)
mysql> select * from chatlog_event where channelID = 1;
+----+--------------+------------+------------+------+---------------+--------------------------------+-----------+
| id | channel | epoch | author | type | message | loggedByPHID | channelID |
+----+--------------+------------+------------+------+---------------+--------------------------------+-----------+
| 45 | #phabricator | 1361201689 | epriestley | mesg | blip blip | PHID-USER-5bt2phfepag4cdvjtzg5 | 1 |
| 46 | #phabricator | 1361201700 | epriestley | mesg | boop boop bip | PHID-USER-5bt2phfepag4cdvjtzg5 | 1 |
+----+--------------+------------+------------+------+---------------+--------------------------------+-----------+
2 rows in set (0.00 sec)
Reviewers: Afaque_Hussain, indiefan
Reviewed By: Afaque_Hussain
CC: aran
Maniphest Tasks: T837
Differential Revision: https://secure.phabricator.com/D4996
2013-02-18 07:50:41 -08:00
Afaque Hussain
6c1043cf58
Populating Channel Id's
...
Summary: Modified the conduitAPI_chatlog_record method to populate channel Id's
Test Plan: Check if the new chatlog channel table is getting populated with entries
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D4979
2013-02-15 16:01:06 -08:00
Afaque Hussain
73991bb262
Added channel ID to events
...
Summary: Added a column channelID column to phabricator_chatlog.chatlog_event
Test Plan: Checked through mysql to see if table is updated
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D4956
2013-02-14 12:27:18 -08:00
vrana
2cc7f82ece
Move Conduit methods inside applications
...
Test Plan:
/conduit/
/conduit/method/arcanist.projectinfo/
Call method
$ echo '{}' | arc call-conduit user.whoami
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin
Differential Revision: https://secure.phabricator.com/D4268
2012-12-21 12:21:59 -08:00