]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/YammerImport/classes/Yammer_state.php
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / plugins / YammerImport / classes / Yammer_state.php
1 <?php
2 /**
3  * Data class for remembering Yammer import state
4  *
5  * PHP version 5
6  *
7  * @category Data
8  * @package  StatusNet
9  * @author   Brion Vibber <brion@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2010, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 class Yammer_state extends Memcached_DataObject
35 {
36     public $__table = 'yammer_state'; // table name
37     public $id;                       // int  primary_key not_null
38     public $state;                    // import state key
39     public $last_error;               // text of last-encountered error, if any
40     public $oauth_token;              // actual oauth token! clear when import is done?
41     public $oauth_secret;             // actual oauth secret! clear when import is done?
42     public $users_page;               // last page of users we've fetched
43     public $groups_page;              // last page of groups we've fetched
44     public $messages_oldest;          // oldest message ID we've fetched
45     public $messages_newest;          // newest message ID we've imported
46     public $created;                  // datetime
47     public $modified;                 // datetime
48
49     /**
50      * Get an instance by key
51      *
52      * This is a utility method to get a single instance with a given key value.
53      *
54      * @param string $k Key to use to lookup
55      * @param mixed  $v Value to lookup
56      *
57      * @return Yammer_state object found, or null for no hits
58      *
59      */
60
61     function staticGet($k, $v=null)
62     {
63         return Memcached_DataObject::staticGet('Yammer_state', $k, $v);
64     }
65
66     /**
67      * Return schema definition to set this table up in onCheckSchema
68      */
69     static function schemaDef()
70     {
71         return array(new ColumnDef('id', 'int', null,
72                                    false, 'PRI'),
73                      new ColumnDef('state', 'text'),
74                      new ColumnDef('last_error', 'text'),
75                      new ColumnDef('oauth_token', 'text'),
76                      new ColumnDef('oauth_secret', 'text'),
77                      new ColumnDef('users_page', 'int'),
78                      new ColumnDef('groups_page', 'int'),
79                      new ColumnDef('messages_oldest', 'bigint'),
80                      new ColumnDef('messages_newest', 'bigint'),
81                      new ColumnDef('created', 'datetime'),
82                      new ColumnDef('modified', 'datetime'));
83     }
84
85     /**
86      * return table definition for DB_DataObject
87      *
88      * DB_DataObject needs to know something about the table to manipulate
89      * instances. This method provides all the DB_DataObject needs to know.
90      *
91      * @return array array of column definitions
92      */
93
94     function table()
95     {
96         return array('id'              => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
97                      'state'           => DB_DATAOBJECT_STR,
98                      'last_error'      => DB_DATAOBJECT_STR,
99                      'oauth_token'     => DB_DATAOBJECT_STR,
100                      'oauth_secret'    => DB_DATAOBJECT_STR,
101                      'users_page'      => DB_DATAOBJECT_INT,
102                      'groups_page'     => DB_DATAOBJECT_INT,
103                      'messages_oldest' => DB_DATAOBJECT_INT,
104                      'messages_newest' => DB_DATAOBJECT_INT,
105                      'created'         => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
106     }
107
108     /**
109      * return key definitions for DB_DataObject
110      *
111      * DB_DataObject needs to know about keys that the table has, since it
112      * won't appear in StatusNet's own keys list. In most cases, this will
113      * simply reference your keyTypes() function.
114      *
115      * @return array list of key field names
116      */
117
118     function keys()
119     {
120         return array_keys($this->keyTypes());
121     }
122
123     /**
124      * return key definitions for Memcached_DataObject
125      *
126      * Our caching system uses the same key definitions, but uses a different
127      * method to get them. This key information is used to store and clear
128      * cached data, so be sure to list any key that will be used for static
129      * lookups.
130      *
131      * @return array associative array of key definitions, field name to type:
132      *         'K' for primary key: for compound keys, add an entry for each component;
133      *         'U' for unique keys: compound keys are not well supported here.
134      */
135
136     function keyTypes()
137     {
138         return array('id' => 'K');
139     }
140
141     /**
142      * Magic formula for non-autoincrementing integer primary keys
143      *
144      * If a table has a single integer column as its primary key, DB_DataObject
145      * assumes that the column is auto-incrementing and makes a sequence table
146      * to do this incrementation. Since we don't need this for our class, we
147      * overload this method and return the magic formula that DB_DataObject needs.
148      *
149      * @return array magic three-false array that stops auto-incrementing.
150      */
151
152     function sequenceKey()
153     {
154         return array(false, false, false);
155     }
156 }