2007-12-24 14:57:53 +01:00
|
|
|
/*
|
2014-03-13 12:29:21 +01:00
|
|
|
* ejabberd, Copyright (C) 2002-2014 ProcessOne
|
2007-12-24 14:57:53 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
2009-06-09 12:56:14 +02:00
|
|
|
*
|
2014-02-22 11:27:40 +01:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 14:57:53 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
SET ANSI_NULLS ON
|
|
|
|
GO
|
|
|
|
SET QUOTED_IDENTIFIER ON
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'autoclose', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'bulkcopy', N'true'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'trunc. log', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'torn page detection', N'true'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'read only', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'dbo use', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'single', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'autoshrink', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'ANSI null default', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'recursive triggers', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'ANSI nulls', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'concat null yields null', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'cursor close on commit', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'default to local cursor', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'quoted identifier', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'ANSI warnings', N'false'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'auto create statistics', N'true'
|
|
|
|
GO
|
|
|
|
|
|
|
|
exec sp_dboption N'ejabberd', N'auto update statistics', N'true'
|
|
|
|
GO
|
|
|
|
|
|
|
|
use [ejabberd]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[last]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[last]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[rostergroups]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[rostergroups]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[rosterusers]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[rosterusers]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[spool]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[spool]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[users]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[users]
|
|
|
|
GO
|
|
|
|
|
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[vcard]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[vcard]
|
|
|
|
GO
|
|
|
|
|
2006-11-05 16:51:26 +01:00
|
|
|
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[private_storage]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
|
|
drop table [dbo].[private_storage]
|
|
|
|
GO
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
CREATE TABLE [dbo].[last] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[seconds] [varchar] (50) NOT NULL ,
|
2007-02-19 15:19:27 +01:00
|
|
|
[state] [varchar] (100) NOT NULL ,
|
2006-09-03 17:15:46 +02:00
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[rostergroups] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[jid] [varchar] (250) NOT NULL ,
|
|
|
|
[grp] [varchar] (100) NOT NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[rosterusers] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[jid] [varchar] (250) NOT NULL ,
|
2007-07-09 19:22:09 +02:00
|
|
|
[nick] [varchar] (50) NOT NULL ,
|
2006-09-03 17:15:46 +02:00
|
|
|
[subscription] [char] (1) NOT NULL ,
|
|
|
|
[ask] [char] (1) NOT NULL ,
|
2006-11-04 17:38:05 +01:00
|
|
|
[askmessage] [varchar] (250) NOT NULL ,
|
2006-09-03 17:15:46 +02:00
|
|
|
[server] [char] (1) NOT NULL ,
|
|
|
|
[subscribe] [varchar] (200) NULL ,
|
|
|
|
[type] [varchar] (50) NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[spool] (
|
|
|
|
[id] [numeric](19, 0) IDENTITY (1, 1) NOT NULL ,
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
2007-09-28 15:33:27 +02:00
|
|
|
[xml] [text] NOT NULL ,
|
2006-09-03 17:15:46 +02:00
|
|
|
[notifyprocessed] [bit] NULL ,
|
|
|
|
[created] [datetime] NULL ,
|
|
|
|
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[users] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[password] [varchar] (50) NOT NULL ,
|
|
|
|
[created] [datetime] NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[vcard] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[full_name] [varchar] (250) NULL ,
|
|
|
|
[first_name] [varchar] (50) NULL ,
|
|
|
|
[last_name] [varchar] (50) NULL ,
|
|
|
|
[nick_name] [varchar] (50) NULL ,
|
|
|
|
[url] [varchar] (1024) NULL ,
|
|
|
|
[address1] [varchar] (50) NULL ,
|
|
|
|
[address2] [varchar] (50) NULL ,
|
|
|
|
[locality] [varchar] (50) NULL ,
|
|
|
|
[region] [varchar] (50) NULL ,
|
|
|
|
[pcode] [varchar] (50) NULL ,
|
|
|
|
[country] [varchar] (50) NULL ,
|
|
|
|
[telephone] [varchar] (50) NULL ,
|
|
|
|
[email] [varchar] (250) NULL ,
|
|
|
|
[orgname] [varchar] (50) NULL ,
|
|
|
|
[orgunit] [varchar] (50) NULL ,
|
|
|
|
[title] [varchar] (50) NULL ,
|
|
|
|
[role] [varchar] (50) NULL ,
|
|
|
|
[b_day] [datetime] NULL ,
|
|
|
|
[descr] [varchar] (500) NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-11-05 16:51:26 +01:00
|
|
|
CREATE TABLE [dbo].[private_storage] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[namespace] [varchar] (250) NOT NULL ,
|
|
|
|
[data] [text] NOT NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
CREATE TABLE [dbo].[privacy_default_list] (
|
|
|
|
[username] [varchar] (250) NOT NULL,
|
|
|
|
[name] [varchar] (250) NOT NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[privacy_list] (
|
|
|
|
[username] [varchar] (250) NOT NULL,
|
|
|
|
[name] [varchar] (250) NOT NULL,
|
|
|
|
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE TABLE [dbo].[privacy_list_data] (
|
|
|
|
[id] [bigint] NOT NULL,
|
|
|
|
[t] [character] (1) NOT NULL,
|
|
|
|
[value] [text] NOT NULL,
|
|
|
|
[action] [character] (1) NOT NULL,
|
|
|
|
[ord] [NUMERIC] NOT NULL,
|
|
|
|
[match_all] [boolean] NOT NULL,
|
|
|
|
[match_iq] [boolean] NOT NULL,
|
|
|
|
[match_message] [boolean] NOT NULL,
|
|
|
|
[match_presence_in] [boolean] NOT NULL,
|
|
|
|
[match_presence_out] [boolean] NOT NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
/* Not tested on mssql */
|
|
|
|
CREATE TABLE [dbo].[roster_version] (
|
|
|
|
[username] [varchar] (250) NOT NULL ,
|
|
|
|
[version] [varchar] (64) NOT NULL
|
|
|
|
) ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
/* Constraints to add:
|
|
|
|
- id in privacy_list is a SERIAL autogenerated number
|
|
|
|
- id in privacy_list_data must exist in the table privacy_list */
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
ALTER TABLE [dbo].[last] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_last] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[rostergroups] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_rostergroups] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username],
|
|
|
|
[jid],
|
|
|
|
[grp]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[spool] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_spool] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username],
|
|
|
|
[id]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[users] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_users] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
ALTER TABLE [dbo].[roster_version] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_roster_version] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
ALTER TABLE [dbo].[vcard] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_vcard] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
CREATE CLUSTERED INDEX [IX_rosterusers_user] ON [dbo].[rosterusers]([username]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
2006-09-03 17:15:46 +02:00
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[last] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [DF_last_updated] DEFAULT (getdate()) FOR [Modify_Date]
|
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[spool] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [DF_spool_notifyprocessed] DEFAULT (0) FOR [notifyprocessed],
|
|
|
|
CONSTRAINT [DF_spool_created] DEFAULT (getdate()) FOR [created],
|
|
|
|
CONSTRAINT [DF_spool_MustDelete] DEFAULT (0) FOR [MustDelete]
|
|
|
|
GO
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[users] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [DF_users_created] DEFAULT (getdate()) FOR [created]
|
|
|
|
GO
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
ALTER TABLE [dbo].[privacy_default_list] WITH NOCHECK ADD
|
|
|
|
CONSTRAINT [PK_privacy_defaut_list] PRIMARY KEY CLUSTERED
|
|
|
|
(
|
|
|
|
[username]
|
|
|
|
) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
CREATE INDEX [IX_rostergroups_jid] ON [dbo].[rostergroups]([jid]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IX_rostergroups_user] ON [dbo].[rostergroups]([username]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IX_rosterusers_jid] ON [dbo].[rosterusers]([username], [jid]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IX_spool_user] ON [dbo].[spool]([username]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IX_spool_process] ON [dbo].[spool]([created], [notifyprocessed]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IK_Spool_Del] ON [dbo].[spool]([MustDelete]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IK_Spool_Created] ON [dbo].[spool]([created]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-11-05 16:51:26 +01:00
|
|
|
CREATE INDEX [IX_private_user] ON [dbo].[private_storage]([username]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
2006-11-20 14:20:47 +01:00
|
|
|
|
2006-11-05 16:51:26 +01:00
|
|
|
CREATE INDEX [IX_private_user_ns] ON [dbo].[private_storage]([username], [namespace]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
CREATE INDEX [IX_privacy_list_username] ON [dbo].[privacy_list]([username]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
|
|
|
|
|
|
|
CREATE INDEX [IX_privacy_list_username_name] ON [dbo].[privacy_list]([username], [name]) WITH FILLFACTOR = 90 ON [PRIMARY]
|
|
|
|
GO
|
2006-11-05 16:51:26 +01:00
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
/*********************************************************/
|
|
|
|
/** These store procedures are for use with ejabberd **/
|
|
|
|
/** 1.1 and Microsoft Sql Server 2000 **/
|
|
|
|
/** **/
|
|
|
|
/** The stored procedures reduce the need to sql **/
|
|
|
|
/** compilation of the database and also allow for also **/
|
2006-11-20 14:20:47 +01:00
|
|
|
/** provide each of database integration. The stored **/
|
2006-09-03 17:15:46 +02:00
|
|
|
/** procedure have been optimized to increase database **/
|
|
|
|
/** performance and a reduction of 80% in CPU was **/
|
2006-11-20 14:20:47 +01:00
|
|
|
/** achieved over the use of standard sql. **/
|
2006-09-03 17:15:46 +02:00
|
|
|
/*********************************************************/
|
|
|
|
|
|
|
|
/****** Object: StoredProcedure [dbo].[add_roster] ******/
|
|
|
|
/** Add or update user entries in the roster **/
|
|
|
|
/*********************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[add_roster]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250),
|
|
|
|
@Nick varchar(50),
|
|
|
|
@Subscription char(1),
|
|
|
|
@Ask char(1),
|
|
|
|
@AskMessage varchar(250),
|
|
|
|
@Server char(1),
|
|
|
|
@Subscribe varchar(200),
|
|
|
|
@Type varchar(50),
|
|
|
|
@Grp varchar(100)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
BEGIN TRANSACTION
|
|
|
|
--- Update Roster if user exist else add roster item
|
|
|
|
IF EXISTS (SELECT username FROM rosterusers WITH (NOLOCK) WHERE rosterusers.username=@Username AND rosterusers.jid=@JID)
|
|
|
|
BEGIN
|
|
|
|
UPDATE rosterusers
|
|
|
|
SET rosterusers.username=@Username,
|
|
|
|
rosterusers.jid=@JID,
|
|
|
|
rosterusers.nick=@Nick,
|
|
|
|
rosterusers.subscription=@Subscription,
|
|
|
|
rosterusers.ask=@Ask,
|
|
|
|
rosterusers.askmessage=@AskMessage,
|
|
|
|
rosterusers.server=@Server,
|
|
|
|
rosterusers.subscribe=@Subscribe,
|
|
|
|
rosterusers.type=@Type
|
|
|
|
WHERE (rosterusers.username=@Username) AND (rosterusers.jid=@JID);
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO rosterusers
|
|
|
|
( rosterusers.username,
|
|
|
|
rosterusers.jid,
|
|
|
|
rosterusers.nick,
|
|
|
|
rosterusers.subscription,
|
|
|
|
rosterusers.ask,
|
|
|
|
rosterusers.askmessage,
|
|
|
|
rosterusers.server,
|
|
|
|
rosterusers.subscribe,
|
|
|
|
rosterusers.type
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@JID,
|
|
|
|
@Nick,
|
|
|
|
@Subscription,
|
|
|
|
@Ask,
|
|
|
|
@AskMessage,
|
|
|
|
@Server,
|
|
|
|
@Subscribe,
|
|
|
|
@Type
|
|
|
|
);
|
|
|
|
END
|
|
|
|
|
|
|
|
--- Update Roster Groups if exist else add group entry
|
|
|
|
IF NOT EXISTS (SELECT username FROM rostergroups WITH (NOLOCK) WHERE rostergroups.username=@Username AND rostergroups.jid=@JID AND rostergroups.grp=@Grp)
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO rostergroups
|
|
|
|
( rostergroups.username,
|
|
|
|
rostergroups.jid,
|
|
|
|
rostergroups.grp
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@JID,
|
|
|
|
@Grp
|
|
|
|
);
|
|
|
|
END
|
|
|
|
|
|
|
|
COMMIT
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[add_roster_group] ******/
|
|
|
|
/** Add or update user group entries in the roster groups **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[add_roster_group]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250),
|
|
|
|
@Grp varchar(100)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
--- Update Roster Groups if exist else add group
|
|
|
|
IF NOT EXISTS (SELECT username FROM rostergroups WHERE rostergroups.username=@Username AND rostergroups.jid=@JID AND rostergroups.grp=@Grp)
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO rostergroups
|
|
|
|
( rostergroups.username,
|
|
|
|
rostergroups.jid,
|
|
|
|
rostergroups.grp
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@JID,
|
|
|
|
@Grp
|
|
|
|
)
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[add_roster_user] ******/
|
|
|
|
/** Add or update user entries in the roster **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[add_roster_user]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250),
|
|
|
|
@Nick varchar(50),
|
|
|
|
@Subscription char(1),
|
|
|
|
@Ask char(1),
|
|
|
|
@AskMessage varchar(250),
|
|
|
|
@Server char(1),
|
|
|
|
@Subscribe varchar(200),
|
|
|
|
@Type varchar(50),
|
|
|
|
@Grp varchar(100) = Null
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
BEGIN TRANSACTION
|
|
|
|
--- Update Roster Users if exist of add new user
|
|
|
|
IF EXISTS (SELECT username FROM rosterusers WHERE rosterusers.username=@Username AND rosterusers.jid=@JID)
|
|
|
|
BEGIN
|
|
|
|
UPDATE rosterusers
|
|
|
|
SET rosterusers.username=@Username,
|
|
|
|
rosterusers.jid=@JID,
|
|
|
|
rosterusers.nick=@Nick,
|
|
|
|
rosterusers.subscription=@Subscription,
|
|
|
|
rosterusers.ask=@Ask,
|
|
|
|
rosterusers.askmessage=@AskMessage,
|
|
|
|
rosterusers.server=@Server,
|
|
|
|
rosterusers.subscribe=@Subscribe,
|
|
|
|
rosterusers.type=@Type
|
|
|
|
WHERE (rosterusers.username=@Username) AND (rosterusers.jid=@JID);
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO rosterusers
|
|
|
|
( rosterusers.username,
|
|
|
|
rosterusers.jid,
|
|
|
|
rosterusers.nick,
|
|
|
|
rosterusers.subscription,
|
|
|
|
rosterusers.ask,
|
|
|
|
rosterusers.askmessage,
|
|
|
|
rosterusers.server,
|
|
|
|
rosterusers.subscribe,
|
|
|
|
rosterusers.type
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@JID,
|
|
|
|
@Nick,
|
|
|
|
@Subscription,
|
|
|
|
@Ask,
|
|
|
|
@AskMessage,
|
|
|
|
@Server,
|
|
|
|
@Subscribe,
|
|
|
|
@Type
|
|
|
|
);
|
|
|
|
END
|
|
|
|
|
|
|
|
--- Update Roster Group if exist of add new group
|
|
|
|
IF @Grp IS NOT NULL
|
|
|
|
EXECUTE [dbo].[add_roster_group] @Username, @JID, @Grp
|
|
|
|
|
|
|
|
COMMIT
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_roster_groups] ******/
|
|
|
|
/** Remove user group entries from the roster groups table **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_roster_groups]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM rostergroups
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE (rostergroups.username = @Username) AND (rostergroups.jid = @JID);
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[add_spool] ******/
|
|
|
|
/** Add a entry to the spool table **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[add_spool]
|
|
|
|
@Username varchar(250),
|
|
|
|
@XML varchar(8000)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO spool
|
|
|
|
( spool.username,
|
|
|
|
spool.xml
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@XML
|
|
|
|
)
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[add_user] ******/
|
|
|
|
/** Add or update user entries to jabber **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[add_user]
|
|
|
|
@Username varchar(200),
|
|
|
|
@Password varchar(50)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO users
|
2006-11-20 14:20:47 +01:00
|
|
|
( [username],
|
2006-09-03 17:15:46 +02:00
|
|
|
[password]
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@Password
|
|
|
|
);
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[set_password] **/
|
|
|
|
/** Update users password **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[set_password]
|
|
|
|
@Username varchar(200),
|
|
|
|
@Password varchar(50)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM users WITH (NOLOCK) WHERE username=@Username)
|
|
|
|
BEGIN
|
|
|
|
UPDATE users SET username=@Username, password=@Password WHERE username=@Username;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO users (username, password) VALUES (@Username, @Password);
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
2006-11-05 16:51:26 +01:00
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_password] **/
|
|
|
|
/** Retrive the user password **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_password]
|
|
|
|
@Username varchar(200)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
SELECT users.password as password
|
|
|
|
FROM users WITH (NOLOCK)
|
|
|
|
WHERE username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
2011-04-14 23:11:37 +02:00
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[set_roster_version] **/
|
|
|
|
/** Update users roster_version **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[set_roster_version]
|
|
|
|
@Username varchar(200),
|
|
|
|
@Version varchar(50)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM roster_version WITH (NOLOCK) WHERE username=@Username)
|
|
|
|
BEGIN
|
|
|
|
UPDATE roster_version SET username=@Username, version=@Version WHERE username=@Username;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO roster_version (username, version) VALUES (@Username, @Version);
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_roster_version] **/
|
|
|
|
/** Retrive the user roster_version **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_roster_version]
|
|
|
|
@Username varchar(200)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
SELECT roster_version.version as version
|
|
|
|
FROM roster_version WITH (NOLOCK)
|
|
|
|
WHERE username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
2006-09-03 17:15:46 +02:00
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[clean_spool_msg] ******/
|
|
|
|
/** Delete messages older that 3 days from spool **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[clean_spool_msg]
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@dt datetime,
|
|
|
|
@myRowCount int
|
|
|
|
BEGIN
|
|
|
|
-- Delete small amounts because if locks the database table
|
|
|
|
SET ROWCOUNT 500
|
|
|
|
SET @myRowCount = 1
|
|
|
|
|
|
|
|
WHILE (@myRowCount) > 0
|
|
|
|
BEGIN
|
|
|
|
BEGIN TRANSACTION
|
|
|
|
SELECT @dt = DATEADD(d, -3, GETDATE())
|
|
|
|
DELETE FROM spool
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE (MustDelete=1) OR (Created < @dt);
|
|
|
|
|
|
|
|
SET @myRowCount = @@RowCount
|
|
|
|
COMMIT
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_last] ******/
|
|
|
|
/** Delete an entry from the last table **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_last]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM [last]
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE [last].username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_roster] ******/
|
|
|
|
/** Delete an entry from the roster **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_roster]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
BEGIN TRANSACTION
|
|
|
|
DELETE FROM rosterusers
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE (rosterusers.username = @Username) AND (rosterusers.jid = @JID);
|
|
|
|
|
|
|
|
DELETE FROM rostergroups
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE (rostergroups.username = @Username) AND (rostergroups.jid = @JID);
|
|
|
|
COMMIT
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_spool_msg] ******/
|
|
|
|
/** Delete an entry from the spool table **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_spool_msg]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM spool
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE spool.username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_user] ******/
|
|
|
|
/** Delete an entry from the user table **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_user]
|
|
|
|
@Username varchar(200)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM users
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_user_return_password]**/
|
|
|
|
/** Delete an entry from the user table and return user password **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_user_return_password]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@Pwd varchar(50)
|
|
|
|
BEGIN
|
|
|
|
EXECUTE @Pwd = dbo.get_password @Username
|
|
|
|
DELETE FROM users
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE username=@Username
|
|
|
|
|
|
|
|
SELECT @Pwd;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_user_roster] **/
|
|
|
|
/** Delete the users roster **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_user_roster]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
BEGIN TRANSACTION
|
|
|
|
DELETE FROM rosterusers
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE rosterusers.username = @Username;
|
|
|
|
|
|
|
|
DELETE FROM rostergroups
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE rostergroups.username = @Username;
|
|
|
|
COMMIT
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_and_del_spool_msg] **/
|
|
|
|
/** Fetch and delete the users offline messages **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_and_del_spool_msg]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vSpool table( username varchar(1),
|
|
|
|
xml varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM spool with (nolock) WHERE spool.username=@Username)
|
|
|
|
BEGIN
|
|
|
|
SELECT spool.username AS username,
|
|
|
|
spool.xml AS xml
|
|
|
|
FROM spool WITH (NOLOCK)
|
|
|
|
WHERE spool.username=@Username;
|
|
|
|
|
|
|
|
DELETE spool
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE spool.username=@Username
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vSpool;
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_last] **/
|
|
|
|
/** Retrive the last user login **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_last]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
SELECT last.seconds AS seconds,
|
|
|
|
last.state AS state
|
|
|
|
FROM last WITH (NOLOCK)
|
|
|
|
WHERE last.username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_roster] **/
|
|
|
|
/** Retrive the user roster **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_roster]
|
2006-11-05 16:51:26 +01:00
|
|
|
@Username varchar(250)
|
2006-09-03 17:15:46 +02:00
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vRosterusers table( username varchar(1),
|
|
|
|
jid varchar(1),
|
|
|
|
nick varchar(1),
|
|
|
|
subscription varchar(1),
|
|
|
|
ask varchar(1),
|
|
|
|
askmessage varchar(1),
|
|
|
|
server varchar(1),
|
|
|
|
subscribe varchar(1),
|
|
|
|
type varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rosterusers with (nolock) WHERE rosterusers.username = @Username)
|
|
|
|
BEGIN
|
|
|
|
SELECT rosterusers.username AS username,
|
|
|
|
rosterusers.jid AS jid,
|
|
|
|
rosterusers.nick AS nick,
|
|
|
|
rosterusers.subscription AS subscription,
|
|
|
|
rosterusers.ask AS ask,
|
|
|
|
rosterusers.askmessage AS askmessage,
|
|
|
|
rosterusers.server AS server,
|
|
|
|
rosterusers.subscribe AS subscribe,
|
|
|
|
rosterusers.type AS type
|
|
|
|
FROM rosterusers WITH (NOLOCK)
|
|
|
|
WHERE rosterusers.username = @Username;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vRosterusers
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_roster_by_jid] **/
|
|
|
|
/** Retrive the user roster via JID **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_roster_by_jid]
|
|
|
|
@Username varchar(200),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vRosterusers table( username varchar(1),
|
|
|
|
jid varchar(1),
|
|
|
|
nick varchar(1),
|
|
|
|
subscription varchar(1),
|
|
|
|
ask varchar(1),
|
|
|
|
askmessage varchar(1),
|
|
|
|
server varchar(1),
|
|
|
|
subscribe varchar(1),
|
|
|
|
type varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rosterusers with (nolock) WHERE (rosterusers.username = @Username) AND (rosterusers.jid = @JID))
|
|
|
|
BEGIN
|
|
|
|
SELECT rosterusers.username AS username,
|
|
|
|
rosterusers.jid AS jid,
|
|
|
|
rosterusers.nick AS nick,
|
|
|
|
rosterusers.subscription AS subscription,
|
|
|
|
rosterusers.ask AS ask,
|
|
|
|
rosterusers.askmessage AS askmessage,
|
|
|
|
rosterusers.server AS server,
|
|
|
|
rosterusers.subscribe AS subscribe,
|
|
|
|
rosterusers.type AS type
|
|
|
|
FROM rosterusers WITH (NOLOCK)
|
|
|
|
WHERE (rosterusers.username = @Username) AND (rosterusers.jid = @JID);
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vRosterusers
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_roster_jid_groups] **/
|
|
|
|
/** Retrieve the user roster groups **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_roster_jid_groups]
|
|
|
|
@Username varchar(200)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vrostergroups table( jid varchar(1),
|
|
|
|
grp varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rostergroups with (nolock) WHERE rostergroups.username = @Username)
|
|
|
|
BEGIN
|
|
|
|
SELECT rostergroups.jid AS jid,
|
|
|
|
rostergroups.grp AS grp
|
|
|
|
FROM rostergroups WITH (NOLOCK)
|
|
|
|
WHERE rostergroups.username = @Username;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vrostergroups
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_roster_groups] **/
|
|
|
|
/** Retrive the user roster groups **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_roster_groups]
|
|
|
|
@Username varchar(200),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vrostergroups table( grp varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rostergroups with (nolock) WHERE rostergroups.username = @Username)
|
|
|
|
BEGIN
|
|
|
|
SELECT rostergroups.grp AS grp
|
|
|
|
FROM rostergroups WITH (NOLOCK)
|
|
|
|
WHERE (rostergroups.username = @Username) AND (rostergroups.jid = @JID);
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vrostergroups
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_rostergroup_by_jid] **/
|
|
|
|
/** Retrive the user roster groups via JID **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_rostergroup_by_jid]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vrostergroups table(grp varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rostergroups with (nolock) WHERE rostergroups.username=@Username AND rostergroups.jid=@JID)
|
|
|
|
BEGIN
|
|
|
|
SELECT rostergroups.grp AS grp
|
|
|
|
FROM rostergroups WITH (NOLOCK)
|
|
|
|
WHERE rostergroups.username=@Username AND rostergroups.jid=@JID;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vrostergroups
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_subscription] **/
|
|
|
|
/** Retrive the user subscription requests **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_subscription]
|
|
|
|
@Username varchar(250),
|
|
|
|
@JID varchar(250)
|
|
|
|
AS
|
|
|
|
DECLARE
|
|
|
|
@vrosterusers table( subscription varchar(1))
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM rosterusers with (nolock) WHERE rosterusers.username=@Username AND rosterusers.jid=@JID)
|
|
|
|
BEGIN
|
|
|
|
SELECT rosterusers.subscription AS subscription
|
|
|
|
FROM rosterusers WITH (NOLOCK)
|
|
|
|
WHERE rosterusers.username=@Username AND rosterusers.jid=@JID;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
SELECT * FROM @vrosterusers
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[list_users] **/
|
2006-11-05 16:51:26 +01:00
|
|
|
/** Retrieve a list of all users **/
|
2006-09-03 17:15:46 +02:00
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[list_users]
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
SELECT users.username AS username FROM users WITH (NOLOCK);
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[set_last] **/
|
|
|
|
/** Update users last login status **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[set_last]
|
|
|
|
@Username varchar(250),
|
|
|
|
@Seconds varchar(50),
|
|
|
|
@State varchar(100)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM [last] WITH (NOLOCK) WHERE username=@Username)
|
|
|
|
BEGIN
|
|
|
|
UPDATE [last]
|
|
|
|
SET [last].username = @Username,
|
|
|
|
[last].seconds = @Seconds,
|
|
|
|
[last].state = @State
|
|
|
|
WHERE last.username=@Username;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO [last]
|
|
|
|
( [last].username,
|
|
|
|
[last].seconds,
|
|
|
|
[last].state
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@Seconds,
|
|
|
|
@State
|
|
|
|
)
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
2006-11-05 16:51:26 +01:00
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[set_private_data] **/
|
|
|
|
/** store user private data by namespace **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[set_private_data]
|
|
|
|
@Username varchar(250),
|
|
|
|
@Namespace varchar(250),
|
|
|
|
@Data varchar(8000)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
IF EXISTS (SELECT username FROM private_storage with (nolock) WHERE private_storage.username = @Username AND private_storage.namespace = @Namespace)
|
|
|
|
BEGIN
|
|
|
|
UPDATE [private_storage]
|
|
|
|
SET [private_storage].username = @Username,
|
|
|
|
[private_storage].namespace = @Namespace,
|
|
|
|
[private_storage].data = @Data
|
|
|
|
WHERE private_storage.username = @Username AND private_storage.namespace = @Namespace;
|
|
|
|
END
|
|
|
|
ELSE
|
|
|
|
BEGIN
|
|
|
|
INSERT INTO [private_storage]
|
|
|
|
( [private_storage].username,
|
|
|
|
[private_storage].namespace,
|
|
|
|
[private_storage].data
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
( @Username,
|
|
|
|
@Namespace,
|
|
|
|
@Data
|
|
|
|
)
|
|
|
|
END
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[get_private_data] **/
|
|
|
|
/** Retrieve user private data by namespace **/
|
|
|
|
/******************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[get_private_data]
|
|
|
|
@Username varchar(250),
|
|
|
|
@Namespace varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
SELECT private_storage.data AS data
|
|
|
|
FROM private_storage WITH (NOLOCK)
|
|
|
|
WHERE username=@Username and namespace=@Namespace;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/****** Object: StoredProcedure [dbo].[del_user_storage] ******/
|
|
|
|
/** Delete private storage area for a given user **/
|
|
|
|
/***************************************************************/
|
|
|
|
CREATE PROCEDURE [dbo].[del_user_storage]
|
|
|
|
@Username varchar(250)
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM [private_storage]
|
|
|
|
WITH (ROWLOCK)
|
|
|
|
WHERE [private_storage].username=@Username;
|
|
|
|
END
|
|
|
|
GO
|
|
|
|
|
2006-11-20 14:20:47 +01:00
|
|
|
|
|
|
|
|